├── benchoff-400-300.bin ├── benchoff-400-300.png ├── convert.py ├── datasheets ├── 1P137-00_01_E2417ES053_20160906.pdf ├── ApplicationNote_EPD420_Spectra_with_OTP_v01_160927.pdf ├── NODEMCU_DEVKIT_SCH_BIG.png ├── NodeMCU_Pinout.png ├── SLMD481H08L_nov16.pdf ├── e-paper-pinout.pdf ├── e-paper-pinout.png ├── e-paper-timing.pdf ├── esp32_datasheet_en.pdf ├── esp32_technical_reference_manual_en.pdf ├── esp_wroom_32_datasheet_en.pdf └── ltc3106f.pdf ├── firmware ├── Makefile └── main │ ├── Kconfig.projbuild │ ├── component.mk │ ├── epd.c │ ├── epd.h │ └── wifi-epaper.c ├── frank-buss-400-300.bin ├── frank-buss-400-300.png ├── frank-buss.bin ├── frank-buss.png ├── init.lua ├── init2.lua ├── nodemcu_float_master_20170414-2230.bin ├── pins.ods ├── solar-cell.ods ├── stm32L433-test ├── cube │ └── test │ │ ├── .mxproject │ │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── DSP_Lib │ │ │ │ └── Source │ │ │ │ │ ├── BasicMathFunctions │ │ │ │ │ ├── arm_abs_f32.c │ │ │ │ │ ├── arm_abs_q15.c │ │ │ │ │ ├── arm_abs_q31.c │ │ │ │ │ ├── arm_abs_q7.c │ │ │ │ │ ├── arm_add_f32.c │ │ │ │ │ ├── arm_add_q15.c │ │ │ │ │ ├── arm_add_q31.c │ │ │ │ │ ├── arm_add_q7.c │ │ │ │ │ ├── arm_dot_prod_f32.c │ │ │ │ │ ├── arm_dot_prod_q15.c │ │ │ │ │ ├── arm_dot_prod_q31.c │ │ │ │ │ ├── arm_dot_prod_q7.c │ │ │ │ │ ├── arm_mult_f32.c │ │ │ │ │ ├── arm_mult_q15.c │ │ │ │ │ ├── arm_mult_q31.c │ │ │ │ │ ├── arm_mult_q7.c │ │ │ │ │ ├── arm_negate_f32.c │ │ │ │ │ ├── arm_negate_q15.c │ │ │ │ │ ├── arm_negate_q31.c │ │ │ │ │ ├── arm_negate_q7.c │ │ │ │ │ ├── arm_offset_f32.c │ │ │ │ │ ├── arm_offset_q15.c │ │ │ │ │ ├── arm_offset_q31.c │ │ │ │ │ ├── arm_offset_q7.c │ │ │ │ │ ├── arm_scale_f32.c │ │ │ │ │ ├── arm_scale_q15.c │ │ │ │ │ ├── arm_scale_q31.c │ │ │ │ │ ├── arm_scale_q7.c │ │ │ │ │ ├── arm_shift_q15.c │ │ │ │ │ ├── arm_shift_q31.c │ │ │ │ │ ├── arm_shift_q7.c │ │ │ │ │ ├── arm_sub_f32.c │ │ │ │ │ ├── arm_sub_q15.c │ │ │ │ │ ├── arm_sub_q31.c │ │ │ │ │ └── arm_sub_q7.c │ │ │ │ │ ├── CommonTables │ │ │ │ │ ├── arm_common_tables.c │ │ │ │ │ └── arm_const_structs.c │ │ │ │ │ ├── ComplexMathFunctions │ │ │ │ │ ├── arm_cmplx_conj_f32.c │ │ │ │ │ ├── arm_cmplx_conj_q15.c │ │ │ │ │ ├── arm_cmplx_conj_q31.c │ │ │ │ │ ├── arm_cmplx_dot_prod_f32.c │ │ │ │ │ ├── arm_cmplx_dot_prod_q15.c │ │ │ │ │ ├── arm_cmplx_dot_prod_q31.c │ │ │ │ │ ├── arm_cmplx_mag_f32.c │ │ │ │ │ ├── arm_cmplx_mag_q15.c │ │ │ │ │ ├── arm_cmplx_mag_q31.c │ │ │ │ │ ├── arm_cmplx_mag_squared_f32.c │ │ │ │ │ ├── arm_cmplx_mag_squared_q15.c │ │ │ │ │ ├── arm_cmplx_mag_squared_q31.c │ │ │ │ │ ├── arm_cmplx_mult_cmplx_f32.c │ │ │ │ │ ├── arm_cmplx_mult_cmplx_q15.c │ │ │ │ │ ├── arm_cmplx_mult_cmplx_q31.c │ │ │ │ │ ├── arm_cmplx_mult_real_f32.c │ │ │ │ │ ├── arm_cmplx_mult_real_q15.c │ │ │ │ │ └── arm_cmplx_mult_real_q31.c │ │ │ │ │ ├── ControllerFunctions │ │ │ │ │ ├── arm_pid_init_f32.c │ │ │ │ │ ├── arm_pid_init_q15.c │ │ │ │ │ ├── arm_pid_init_q31.c │ │ │ │ │ ├── arm_pid_reset_f32.c │ │ │ │ │ ├── arm_pid_reset_q15.c │ │ │ │ │ ├── arm_pid_reset_q31.c │ │ │ │ │ ├── arm_sin_cos_f32.c │ │ │ │ │ └── arm_sin_cos_q31.c │ │ │ │ │ ├── FastMathFunctions │ │ │ │ │ ├── arm_cos_f32.c │ │ │ │ │ ├── arm_cos_q15.c │ │ │ │ │ ├── arm_cos_q31.c │ │ │ │ │ ├── arm_sin_f32.c │ │ │ │ │ ├── arm_sin_q15.c │ │ │ │ │ ├── arm_sin_q31.c │ │ │ │ │ ├── arm_sqrt_q15.c │ │ │ │ │ └── arm_sqrt_q31.c │ │ │ │ │ ├── FilteringFunctions │ │ │ │ │ ├── arm_biquad_cascade_df1_32x64_init_q31.c │ │ │ │ │ ├── arm_biquad_cascade_df1_32x64_q31.c │ │ │ │ │ ├── arm_biquad_cascade_df1_f32.c │ │ │ │ │ ├── arm_biquad_cascade_df1_fast_q15.c │ │ │ │ │ ├── arm_biquad_cascade_df1_fast_q31.c │ │ │ │ │ ├── arm_biquad_cascade_df1_init_f32.c │ │ │ │ │ ├── arm_biquad_cascade_df1_init_q15.c │ │ │ │ │ ├── arm_biquad_cascade_df1_init_q31.c │ │ │ │ │ ├── arm_biquad_cascade_df1_q15.c │ │ │ │ │ ├── arm_biquad_cascade_df1_q31.c │ │ │ │ │ ├── arm_biquad_cascade_df2T_f32.c │ │ │ │ │ ├── arm_biquad_cascade_df2T_f64.c │ │ │ │ │ ├── arm_biquad_cascade_df2T_init_f32.c │ │ │ │ │ ├── arm_biquad_cascade_df2T_init_f64.c │ │ │ │ │ ├── arm_biquad_cascade_stereo_df2T_f32.c │ │ │ │ │ ├── arm_biquad_cascade_stereo_df2T_init_f32.c │ │ │ │ │ ├── arm_conv_f32.c │ │ │ │ │ ├── arm_conv_fast_opt_q15.c │ │ │ │ │ ├── arm_conv_fast_q15.c │ │ │ │ │ ├── arm_conv_fast_q31.c │ │ │ │ │ ├── arm_conv_opt_q15.c │ │ │ │ │ ├── arm_conv_opt_q7.c │ │ │ │ │ ├── arm_conv_partial_f32.c │ │ │ │ │ ├── arm_conv_partial_fast_opt_q15.c │ │ │ │ │ ├── arm_conv_partial_fast_q15.c │ │ │ │ │ ├── arm_conv_partial_fast_q31.c │ │ │ │ │ ├── arm_conv_partial_opt_q15.c │ │ │ │ │ ├── arm_conv_partial_opt_q7.c │ │ │ │ │ ├── arm_conv_partial_q15.c │ │ │ │ │ ├── arm_conv_partial_q31.c │ │ │ │ │ ├── arm_conv_partial_q7.c │ │ │ │ │ ├── arm_conv_q15.c │ │ │ │ │ ├── arm_conv_q31.c │ │ │ │ │ ├── arm_conv_q7.c │ │ │ │ │ ├── arm_correlate_f32.c │ │ │ │ │ ├── arm_correlate_fast_opt_q15.c │ │ │ │ │ ├── arm_correlate_fast_q15.c │ │ │ │ │ ├── arm_correlate_fast_q31.c │ │ │ │ │ ├── arm_correlate_opt_q15.c │ │ │ │ │ ├── arm_correlate_opt_q7.c │ │ │ │ │ ├── arm_correlate_q15.c │ │ │ │ │ ├── arm_correlate_q31.c │ │ │ │ │ ├── arm_correlate_q7.c │ │ │ │ │ ├── arm_fir_decimate_f32.c │ │ │ │ │ ├── arm_fir_decimate_fast_q15.c │ │ │ │ │ ├── arm_fir_decimate_fast_q31.c │ │ │ │ │ ├── arm_fir_decimate_init_f32.c │ │ │ │ │ ├── arm_fir_decimate_init_q15.c │ │ │ │ │ ├── arm_fir_decimate_init_q31.c │ │ │ │ │ ├── arm_fir_decimate_q15.c │ │ │ │ │ ├── arm_fir_decimate_q31.c │ │ │ │ │ ├── arm_fir_f32.c │ │ │ │ │ ├── arm_fir_fast_q15.c │ │ │ │ │ ├── arm_fir_fast_q31.c │ │ │ │ │ ├── arm_fir_init_f32.c │ │ │ │ │ ├── arm_fir_init_q15.c │ │ │ │ │ ├── arm_fir_init_q31.c │ │ │ │ │ ├── arm_fir_init_q7.c │ │ │ │ │ ├── arm_fir_interpolate_f32.c │ │ │ │ │ ├── arm_fir_interpolate_init_f32.c │ │ │ │ │ ├── arm_fir_interpolate_init_q15.c │ │ │ │ │ ├── arm_fir_interpolate_init_q31.c │ │ │ │ │ ├── arm_fir_interpolate_q15.c │ │ │ │ │ ├── arm_fir_interpolate_q31.c │ │ │ │ │ ├── arm_fir_lattice_f32.c │ │ │ │ │ ├── arm_fir_lattice_init_f32.c │ │ │ │ │ ├── arm_fir_lattice_init_q15.c │ │ │ │ │ ├── arm_fir_lattice_init_q31.c │ │ │ │ │ ├── arm_fir_lattice_q15.c │ │ │ │ │ ├── arm_fir_lattice_q31.c │ │ │ │ │ ├── arm_fir_q15.c │ │ │ │ │ ├── arm_fir_q31.c │ │ │ │ │ ├── arm_fir_q7.c │ │ │ │ │ ├── arm_fir_sparse_f32.c │ │ │ │ │ ├── arm_fir_sparse_init_f32.c │ │ │ │ │ ├── arm_fir_sparse_init_q15.c │ │ │ │ │ ├── arm_fir_sparse_init_q31.c │ │ │ │ │ ├── arm_fir_sparse_init_q7.c │ │ │ │ │ ├── arm_fir_sparse_q15.c │ │ │ │ │ ├── arm_fir_sparse_q31.c │ │ │ │ │ ├── arm_fir_sparse_q7.c │ │ │ │ │ ├── arm_iir_lattice_f32.c │ │ │ │ │ ├── arm_iir_lattice_init_f32.c │ │ │ │ │ ├── arm_iir_lattice_init_q15.c │ │ │ │ │ ├── arm_iir_lattice_init_q31.c │ │ │ │ │ ├── arm_iir_lattice_q15.c │ │ │ │ │ ├── arm_iir_lattice_q31.c │ │ │ │ │ ├── arm_lms_f32.c │ │ │ │ │ ├── arm_lms_init_f32.c │ │ │ │ │ ├── arm_lms_init_q15.c │ │ │ │ │ ├── arm_lms_init_q31.c │ │ │ │ │ ├── arm_lms_norm_f32.c │ │ │ │ │ ├── arm_lms_norm_init_f32.c │ │ │ │ │ ├── arm_lms_norm_init_q15.c │ │ │ │ │ ├── arm_lms_norm_init_q31.c │ │ │ │ │ ├── arm_lms_norm_q15.c │ │ │ │ │ ├── arm_lms_norm_q31.c │ │ │ │ │ ├── arm_lms_q15.c │ │ │ │ │ └── arm_lms_q31.c │ │ │ │ │ ├── MatrixFunctions │ │ │ │ │ ├── arm_mat_add_f32.c │ │ │ │ │ ├── arm_mat_add_q15.c │ │ │ │ │ ├── arm_mat_add_q31.c │ │ │ │ │ ├── arm_mat_cmplx_mult_f32.c │ │ │ │ │ ├── arm_mat_cmplx_mult_q15.c │ │ │ │ │ ├── arm_mat_cmplx_mult_q31.c │ │ │ │ │ ├── arm_mat_init_f32.c │ │ │ │ │ ├── arm_mat_init_q15.c │ │ │ │ │ ├── arm_mat_init_q31.c │ │ │ │ │ ├── arm_mat_inverse_f32.c │ │ │ │ │ ├── arm_mat_inverse_f64.c │ │ │ │ │ ├── arm_mat_mult_f32.c │ │ │ │ │ ├── arm_mat_mult_fast_q15.c │ │ │ │ │ ├── arm_mat_mult_fast_q31.c │ │ │ │ │ ├── arm_mat_mult_q15.c │ │ │ │ │ ├── arm_mat_mult_q31.c │ │ │ │ │ ├── arm_mat_scale_f32.c │ │ │ │ │ ├── arm_mat_scale_q15.c │ │ │ │ │ ├── arm_mat_scale_q31.c │ │ │ │ │ ├── arm_mat_sub_f32.c │ │ │ │ │ ├── arm_mat_sub_q15.c │ │ │ │ │ ├── arm_mat_sub_q31.c │ │ │ │ │ ├── arm_mat_trans_f32.c │ │ │ │ │ ├── arm_mat_trans_q15.c │ │ │ │ │ └── arm_mat_trans_q31.c │ │ │ │ │ ├── StatisticsFunctions │ │ │ │ │ ├── arm_max_f32.c │ │ │ │ │ ├── arm_max_q15.c │ │ │ │ │ ├── arm_max_q31.c │ │ │ │ │ ├── arm_max_q7.c │ │ │ │ │ ├── arm_mean_f32.c │ │ │ │ │ ├── arm_mean_q15.c │ │ │ │ │ ├── arm_mean_q31.c │ │ │ │ │ ├── arm_mean_q7.c │ │ │ │ │ ├── arm_min_f32.c │ │ │ │ │ ├── arm_min_q15.c │ │ │ │ │ ├── arm_min_q31.c │ │ │ │ │ ├── arm_min_q7.c │ │ │ │ │ ├── arm_power_f32.c │ │ │ │ │ ├── arm_power_q15.c │ │ │ │ │ ├── arm_power_q31.c │ │ │ │ │ ├── arm_power_q7.c │ │ │ │ │ ├── arm_rms_f32.c │ │ │ │ │ ├── arm_rms_q15.c │ │ │ │ │ ├── arm_rms_q31.c │ │ │ │ │ ├── arm_std_f32.c │ │ │ │ │ ├── arm_std_q15.c │ │ │ │ │ ├── arm_std_q31.c │ │ │ │ │ ├── arm_var_f32.c │ │ │ │ │ ├── arm_var_q15.c │ │ │ │ │ └── arm_var_q31.c │ │ │ │ │ ├── SupportFunctions │ │ │ │ │ ├── arm_copy_f32.c │ │ │ │ │ ├── arm_copy_q15.c │ │ │ │ │ ├── arm_copy_q31.c │ │ │ │ │ ├── arm_copy_q7.c │ │ │ │ │ ├── arm_fill_f32.c │ │ │ │ │ ├── arm_fill_q15.c │ │ │ │ │ ├── arm_fill_q31.c │ │ │ │ │ ├── arm_fill_q7.c │ │ │ │ │ ├── arm_float_to_q15.c │ │ │ │ │ ├── arm_float_to_q31.c │ │ │ │ │ ├── arm_float_to_q7.c │ │ │ │ │ ├── arm_q15_to_float.c │ │ │ │ │ ├── arm_q15_to_q31.c │ │ │ │ │ ├── arm_q15_to_q7.c │ │ │ │ │ ├── arm_q31_to_float.c │ │ │ │ │ ├── arm_q31_to_q15.c │ │ │ │ │ ├── arm_q31_to_q7.c │ │ │ │ │ ├── arm_q7_to_float.c │ │ │ │ │ ├── arm_q7_to_q15.c │ │ │ │ │ └── arm_q7_to_q31.c │ │ │ │ │ └── TransformFunctions │ │ │ │ │ ├── arm_bitreversal.c │ │ │ │ │ ├── arm_cfft_f32.c │ │ │ │ │ ├── arm_cfft_q15.c │ │ │ │ │ ├── arm_cfft_q31.c │ │ │ │ │ ├── arm_cfft_radix2_f32.c │ │ │ │ │ ├── arm_cfft_radix2_init_f32.c │ │ │ │ │ ├── arm_cfft_radix2_init_q15.c │ │ │ │ │ ├── arm_cfft_radix2_init_q31.c │ │ │ │ │ ├── arm_cfft_radix2_q15.c │ │ │ │ │ ├── arm_cfft_radix2_q31.c │ │ │ │ │ ├── arm_cfft_radix4_f32.c │ │ │ │ │ ├── arm_cfft_radix4_init_f32.c │ │ │ │ │ ├── arm_cfft_radix4_init_q15.c │ │ │ │ │ ├── arm_cfft_radix4_init_q31.c │ │ │ │ │ ├── arm_cfft_radix4_q15.c │ │ │ │ │ ├── arm_cfft_radix4_q31.c │ │ │ │ │ ├── arm_cfft_radix8_f32.c │ │ │ │ │ ├── arm_dct4_f32.c │ │ │ │ │ ├── arm_dct4_init_f32.c │ │ │ │ │ ├── arm_dct4_init_q15.c │ │ │ │ │ ├── arm_dct4_init_q31.c │ │ │ │ │ ├── arm_dct4_q15.c │ │ │ │ │ ├── arm_dct4_q31.c │ │ │ │ │ ├── arm_rfft_f32.c │ │ │ │ │ ├── arm_rfft_fast_f32.c │ │ │ │ │ ├── arm_rfft_fast_init_f32.c │ │ │ │ │ ├── arm_rfft_init_f32.c │ │ │ │ │ ├── arm_rfft_init_q15.c │ │ │ │ │ ├── arm_rfft_init_q31.c │ │ │ │ │ ├── arm_rfft_q15.c │ │ │ │ │ └── arm_rfft_q31.c │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32L4xx │ │ │ │ │ ├── Include │ │ │ │ │ ├── stm32l431xx.h │ │ │ │ │ ├── stm32l432xx.h │ │ │ │ │ ├── stm32l433xx.h │ │ │ │ │ ├── stm32l442xx.h │ │ │ │ │ ├── stm32l443xx.h │ │ │ │ │ ├── stm32l451xx.h │ │ │ │ │ ├── stm32l452xx.h │ │ │ │ │ ├── stm32l462xx.h │ │ │ │ │ ├── stm32l471xx.h │ │ │ │ │ ├── stm32l475xx.h │ │ │ │ │ ├── stm32l476xx.h │ │ │ │ │ ├── stm32l485xx.h │ │ │ │ │ ├── stm32l486xx.h │ │ │ │ │ ├── stm32l4xx.h │ │ │ │ │ └── system_stm32l4xx.h │ │ │ │ │ └── Source │ │ │ │ │ └── Templates │ │ │ │ │ ├── arm │ │ │ │ │ ├── startup_stm32l431xx.s │ │ │ │ │ ├── startup_stm32l432xx.s │ │ │ │ │ ├── startup_stm32l433xx.s │ │ │ │ │ ├── startup_stm32l442xx.s │ │ │ │ │ ├── startup_stm32l443xx.s │ │ │ │ │ ├── startup_stm32l451xx.s │ │ │ │ │ ├── startup_stm32l452xx.s │ │ │ │ │ ├── startup_stm32l462xx.s │ │ │ │ │ ├── startup_stm32l471xx.s │ │ │ │ │ ├── startup_stm32l475xx.s │ │ │ │ │ ├── startup_stm32l476xx.s │ │ │ │ │ ├── startup_stm32l485xx.s │ │ │ │ │ └── startup_stm32l486xx.s │ │ │ │ │ ├── gcc │ │ │ │ │ ├── startup_stm32l431xx.s │ │ │ │ │ ├── startup_stm32l432xx.s │ │ │ │ │ ├── startup_stm32l433xx.s │ │ │ │ │ ├── startup_stm32l442xx.s │ │ │ │ │ ├── startup_stm32l443xx.s │ │ │ │ │ ├── startup_stm32l451xx.s │ │ │ │ │ ├── startup_stm32l452xx.s │ │ │ │ │ ├── startup_stm32l462xx.s │ │ │ │ │ ├── startup_stm32l471xx.s │ │ │ │ │ ├── startup_stm32l475xx.s │ │ │ │ │ ├── startup_stm32l476xx.s │ │ │ │ │ ├── startup_stm32l485xx.s │ │ │ │ │ └── startup_stm32l486xx.s │ │ │ │ │ ├── iar │ │ │ │ │ ├── linker │ │ │ │ │ │ ├── stm32l431xx_flash.icf │ │ │ │ │ │ ├── stm32l431xx_sram.icf │ │ │ │ │ │ ├── stm32l432xx_flash.icf │ │ │ │ │ │ ├── stm32l432xx_sram.icf │ │ │ │ │ │ ├── stm32l433xx_flash.icf │ │ │ │ │ │ ├── stm32l433xx_sram.icf │ │ │ │ │ │ ├── stm32l442xx_flash.icf │ │ │ │ │ │ ├── stm32l442xx_sram.icf │ │ │ │ │ │ ├── stm32l443xx_flash.icf │ │ │ │ │ │ ├── stm32l443xx_sram.icf │ │ │ │ │ │ ├── stm32l451xx_flash.icf │ │ │ │ │ │ ├── stm32l451xx_sram.icf │ │ │ │ │ │ ├── stm32l452xx_flash.icf │ │ │ │ │ │ ├── stm32l452xx_sram.icf │ │ │ │ │ │ ├── stm32l462xx_flash.icf │ │ │ │ │ │ ├── stm32l462xx_sram.icf │ │ │ │ │ │ ├── stm32l471xx_flash.icf │ │ │ │ │ │ ├── stm32l471xx_sram.icf │ │ │ │ │ │ ├── stm32l475xx_flash.icf │ │ │ │ │ │ ├── stm32l475xx_sram.icf │ │ │ │ │ │ ├── stm32l476xx_flash.icf │ │ │ │ │ │ ├── stm32l476xx_sram.icf │ │ │ │ │ │ ├── stm32l485xx_flash.icf │ │ │ │ │ │ ├── stm32l485xx_sram.icf │ │ │ │ │ │ ├── stm32l486xx_flash.icf │ │ │ │ │ │ └── stm32l486xx_sram.icf │ │ │ │ │ ├── startup_stm32l431xx.s │ │ │ │ │ ├── startup_stm32l432xx.s │ │ │ │ │ ├── startup_stm32l433xx.s │ │ │ │ │ ├── startup_stm32l442xx.s │ │ │ │ │ ├── startup_stm32l443xx.s │ │ │ │ │ ├── startup_stm32l451xx.s │ │ │ │ │ ├── startup_stm32l452xx.s │ │ │ │ │ ├── startup_stm32l462xx.s │ │ │ │ │ ├── startup_stm32l471xx.s │ │ │ │ │ ├── startup_stm32l475xx.s │ │ │ │ │ ├── startup_stm32l476xx.s │ │ │ │ │ ├── startup_stm32l485xx.s │ │ │ │ │ └── startup_stm32l486xx.s │ │ │ │ │ └── system_stm32l4xx.c │ │ │ ├── Include │ │ │ │ ├── arm_common_tables.h │ │ │ │ ├── arm_const_structs.h │ │ │ │ ├── arm_math.h │ │ │ │ ├── cmsis_armcc.h │ │ │ │ ├── cmsis_armcc_V6.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm7.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ ├── core_cmInstr.h │ │ │ │ ├── core_cmSimd.h │ │ │ │ ├── core_sc000.h │ │ │ │ └── core_sc300.h │ │ │ └── RTOS │ │ │ │ └── Template │ │ │ │ └── cmsis_os.h │ │ └── STM32L4xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32_assert_template.h │ │ │ ├── stm32l4xx_hal.h │ │ │ ├── stm32l4xx_hal_adc.h │ │ │ ├── stm32l4xx_hal_adc_ex.h │ │ │ ├── stm32l4xx_hal_can.h │ │ │ ├── stm32l4xx_hal_comp.h │ │ │ ├── stm32l4xx_hal_conf_template.h │ │ │ ├── stm32l4xx_hal_cortex.h │ │ │ ├── stm32l4xx_hal_crc.h │ │ │ ├── stm32l4xx_hal_crc_ex.h │ │ │ ├── stm32l4xx_hal_cryp.h │ │ │ ├── stm32l4xx_hal_cryp_ex.h │ │ │ ├── stm32l4xx_hal_dac.h │ │ │ ├── stm32l4xx_hal_dac_ex.h │ │ │ ├── stm32l4xx_hal_def.h │ │ │ ├── stm32l4xx_hal_dfsdm.h │ │ │ ├── stm32l4xx_hal_dma.h │ │ │ ├── stm32l4xx_hal_firewall.h │ │ │ ├── stm32l4xx_hal_flash.h │ │ │ ├── stm32l4xx_hal_flash_ex.h │ │ │ ├── stm32l4xx_hal_flash_ramfunc.h │ │ │ ├── stm32l4xx_hal_gpio.h │ │ │ ├── stm32l4xx_hal_gpio_ex.h │ │ │ ├── stm32l4xx_hal_hcd.h │ │ │ ├── stm32l4xx_hal_i2c.h │ │ │ ├── stm32l4xx_hal_i2c_ex.h │ │ │ ├── stm32l4xx_hal_irda.h │ │ │ ├── stm32l4xx_hal_irda_ex.h │ │ │ ├── stm32l4xx_hal_iwdg.h │ │ │ ├── stm32l4xx_hal_lcd.h │ │ │ ├── stm32l4xx_hal_lptim.h │ │ │ ├── stm32l4xx_hal_nand.h │ │ │ ├── stm32l4xx_hal_nor.h │ │ │ ├── stm32l4xx_hal_opamp.h │ │ │ ├── stm32l4xx_hal_opamp_ex.h │ │ │ ├── stm32l4xx_hal_pcd.h │ │ │ ├── stm32l4xx_hal_pcd_ex.h │ │ │ ├── stm32l4xx_hal_pwr.h │ │ │ ├── stm32l4xx_hal_pwr_ex.h │ │ │ ├── stm32l4xx_hal_qspi.h │ │ │ ├── stm32l4xx_hal_rcc.h │ │ │ ├── stm32l4xx_hal_rcc_ex.h │ │ │ ├── stm32l4xx_hal_rng.h │ │ │ ├── stm32l4xx_hal_rtc.h │ │ │ ├── stm32l4xx_hal_rtc_ex.h │ │ │ ├── stm32l4xx_hal_sai.h │ │ │ ├── stm32l4xx_hal_sd.h │ │ │ ├── stm32l4xx_hal_smartcard.h │ │ │ ├── stm32l4xx_hal_smartcard_ex.h │ │ │ ├── stm32l4xx_hal_smbus.h │ │ │ ├── stm32l4xx_hal_spi.h │ │ │ ├── stm32l4xx_hal_spi_ex.h │ │ │ ├── stm32l4xx_hal_sram.h │ │ │ ├── stm32l4xx_hal_swpmi.h │ │ │ ├── stm32l4xx_hal_tim.h │ │ │ ├── stm32l4xx_hal_tim_ex.h │ │ │ ├── stm32l4xx_hal_tsc.h │ │ │ ├── stm32l4xx_hal_uart.h │ │ │ ├── stm32l4xx_hal_uart_ex.h │ │ │ ├── stm32l4xx_hal_usart.h │ │ │ ├── stm32l4xx_hal_usart_ex.h │ │ │ ├── stm32l4xx_hal_wwdg.h │ │ │ ├── stm32l4xx_ll_adc.h │ │ │ ├── stm32l4xx_ll_bus.h │ │ │ ├── stm32l4xx_ll_comp.h │ │ │ ├── stm32l4xx_ll_cortex.h │ │ │ ├── stm32l4xx_ll_crc.h │ │ │ ├── stm32l4xx_ll_crs.h │ │ │ ├── stm32l4xx_ll_dac.h │ │ │ ├── stm32l4xx_ll_dma.h │ │ │ ├── stm32l4xx_ll_exti.h │ │ │ ├── stm32l4xx_ll_fmc.h │ │ │ ├── stm32l4xx_ll_gpio.h │ │ │ ├── stm32l4xx_ll_i2c.h │ │ │ ├── stm32l4xx_ll_iwdg.h │ │ │ ├── stm32l4xx_ll_lptim.h │ │ │ ├── stm32l4xx_ll_lpuart.h │ │ │ ├── stm32l4xx_ll_opamp.h │ │ │ ├── stm32l4xx_ll_pwr.h │ │ │ ├── stm32l4xx_ll_rcc.h │ │ │ ├── stm32l4xx_ll_rng.h │ │ │ ├── stm32l4xx_ll_rtc.h │ │ │ ├── stm32l4xx_ll_sdmmc.h │ │ │ ├── stm32l4xx_ll_spi.h │ │ │ ├── stm32l4xx_ll_swpmi.h │ │ │ ├── stm32l4xx_ll_system.h │ │ │ ├── stm32l4xx_ll_tim.h │ │ │ ├── stm32l4xx_ll_usart.h │ │ │ ├── stm32l4xx_ll_usb.h │ │ │ ├── stm32l4xx_ll_utils.h │ │ │ └── stm32l4xx_ll_wwdg.h │ │ │ └── Src │ │ │ ├── stm32l4xx_hal.c │ │ │ ├── stm32l4xx_hal_adc.c │ │ │ ├── stm32l4xx_hal_adc_ex.c │ │ │ ├── stm32l4xx_hal_can.c │ │ │ ├── stm32l4xx_hal_comp.c │ │ │ ├── stm32l4xx_hal_cortex.c │ │ │ ├── stm32l4xx_hal_crc.c │ │ │ ├── stm32l4xx_hal_crc_ex.c │ │ │ ├── stm32l4xx_hal_cryp.c │ │ │ ├── stm32l4xx_hal_cryp_ex.c │ │ │ ├── stm32l4xx_hal_dac.c │ │ │ ├── stm32l4xx_hal_dac_ex.c │ │ │ ├── stm32l4xx_hal_dfsdm.c │ │ │ ├── stm32l4xx_hal_dma.c │ │ │ ├── stm32l4xx_hal_firewall.c │ │ │ ├── stm32l4xx_hal_flash.c │ │ │ ├── stm32l4xx_hal_flash_ex.c │ │ │ ├── stm32l4xx_hal_flash_ramfunc.c │ │ │ ├── stm32l4xx_hal_gpio.c │ │ │ ├── stm32l4xx_hal_hcd.c │ │ │ ├── stm32l4xx_hal_i2c.c │ │ │ ├── stm32l4xx_hal_i2c_ex.c │ │ │ ├── stm32l4xx_hal_irda.c │ │ │ ├── stm32l4xx_hal_iwdg.c │ │ │ ├── stm32l4xx_hal_lcd.c │ │ │ ├── stm32l4xx_hal_lptim.c │ │ │ ├── stm32l4xx_hal_msp_template.c │ │ │ ├── stm32l4xx_hal_nand.c │ │ │ ├── stm32l4xx_hal_nor.c │ │ │ ├── stm32l4xx_hal_opamp.c │ │ │ ├── stm32l4xx_hal_opamp_ex.c │ │ │ ├── stm32l4xx_hal_pcd.c │ │ │ ├── stm32l4xx_hal_pcd_ex.c │ │ │ ├── stm32l4xx_hal_pwr.c │ │ │ ├── stm32l4xx_hal_pwr_ex.c │ │ │ ├── stm32l4xx_hal_qspi.c │ │ │ ├── stm32l4xx_hal_rcc.c │ │ │ ├── stm32l4xx_hal_rcc_ex.c │ │ │ ├── stm32l4xx_hal_rng.c │ │ │ ├── stm32l4xx_hal_rtc.c │ │ │ ├── stm32l4xx_hal_rtc_ex.c │ │ │ ├── stm32l4xx_hal_sai.c │ │ │ ├── stm32l4xx_hal_sd.c │ │ │ ├── stm32l4xx_hal_smartcard.c │ │ │ ├── stm32l4xx_hal_smartcard_ex.c │ │ │ ├── stm32l4xx_hal_smbus.c │ │ │ ├── stm32l4xx_hal_spi.c │ │ │ ├── stm32l4xx_hal_spi_ex.c │ │ │ ├── stm32l4xx_hal_sram.c │ │ │ ├── stm32l4xx_hal_swpmi.c │ │ │ ├── stm32l4xx_hal_tim.c │ │ │ ├── stm32l4xx_hal_tim_ex.c │ │ │ ├── stm32l4xx_hal_timebase_tim_template.c │ │ │ ├── stm32l4xx_hal_tsc.c │ │ │ ├── stm32l4xx_hal_uart.c │ │ │ ├── stm32l4xx_hal_uart_ex.c │ │ │ ├── stm32l4xx_hal_usart.c │ │ │ ├── stm32l4xx_hal_wwdg.c │ │ │ ├── stm32l4xx_ll_adc.c │ │ │ ├── stm32l4xx_ll_comp.c │ │ │ ├── stm32l4xx_ll_crc.c │ │ │ ├── stm32l4xx_ll_crs.c │ │ │ ├── stm32l4xx_ll_dac.c │ │ │ ├── stm32l4xx_ll_dma.c │ │ │ ├── stm32l4xx_ll_exti.c │ │ │ ├── stm32l4xx_ll_fmc.c │ │ │ ├── stm32l4xx_ll_gpio.c │ │ │ ├── stm32l4xx_ll_i2c.c │ │ │ ├── stm32l4xx_ll_lptim.c │ │ │ ├── stm32l4xx_ll_lpuart.c │ │ │ ├── stm32l4xx_ll_opamp.c │ │ │ ├── stm32l4xx_ll_pwr.c │ │ │ ├── stm32l4xx_ll_rcc.c │ │ │ ├── stm32l4xx_ll_rng.c │ │ │ ├── stm32l4xx_ll_rtc.c │ │ │ ├── stm32l4xx_ll_sdmmc.c │ │ │ ├── stm32l4xx_ll_spi.c │ │ │ ├── stm32l4xx_ll_swpmi.c │ │ │ ├── stm32l4xx_ll_tim.c │ │ │ ├── stm32l4xx_ll_usart.c │ │ │ ├── stm32l4xx_ll_usb.c │ │ │ └── stm32l4xx_ll_utils.c │ │ ├── Inc │ │ ├── main.h │ │ ├── stm32l4xx_hal_conf.h │ │ └── stm32l4xx_it.h │ │ ├── MDK-ARM │ │ ├── EventRecorderStub.scvd │ │ ├── RTE │ │ │ └── _test │ │ │ │ └── RTE_Components.h │ │ ├── startup_stm32l433xx.lst │ │ ├── startup_stm32l433xx.s │ │ ├── test.uvguix.frank │ │ ├── test.uvoptx │ │ ├── test.uvprojx │ │ └── test │ │ │ ├── ExtDll.iex │ │ │ ├── cfap128296d00290.crf │ │ │ ├── cfap128296d00290.d │ │ │ ├── cfap128296d00290.o │ │ │ ├── epaper_cfap128296d00290.crf │ │ │ ├── epaper_cfap128296d00290.d │ │ │ ├── epaper_cfap128296d00290.o │ │ │ ├── main.crf │ │ │ ├── main.d │ │ │ ├── main.o │ │ │ ├── startup_stm32l433xx.d │ │ │ ├── startup_stm32l433xx.o │ │ │ ├── stm32l4xx_hal.crf │ │ │ ├── stm32l4xx_hal.d │ │ │ ├── stm32l4xx_hal.o │ │ │ ├── stm32l4xx_hal_cortex.crf │ │ │ ├── stm32l4xx_hal_cortex.d │ │ │ ├── stm32l4xx_hal_cortex.o │ │ │ ├── stm32l4xx_hal_dma.crf │ │ │ ├── stm32l4xx_hal_dma.d │ │ │ ├── stm32l4xx_hal_dma.o │ │ │ ├── stm32l4xx_hal_flash.crf │ │ │ ├── stm32l4xx_hal_flash.d │ │ │ ├── stm32l4xx_hal_flash.o │ │ │ ├── stm32l4xx_hal_flash_ex.crf │ │ │ ├── stm32l4xx_hal_flash_ex.d │ │ │ ├── stm32l4xx_hal_flash_ex.o │ │ │ ├── stm32l4xx_hal_flash_ramfunc.crf │ │ │ ├── stm32l4xx_hal_flash_ramfunc.d │ │ │ ├── stm32l4xx_hal_flash_ramfunc.o │ │ │ ├── stm32l4xx_hal_gpio.crf │ │ │ ├── stm32l4xx_hal_gpio.d │ │ │ ├── stm32l4xx_hal_gpio.o │ │ │ ├── stm32l4xx_hal_i2c.crf │ │ │ ├── stm32l4xx_hal_i2c.d │ │ │ ├── stm32l4xx_hal_i2c.o │ │ │ ├── stm32l4xx_hal_i2c_ex.crf │ │ │ ├── stm32l4xx_hal_i2c_ex.d │ │ │ ├── stm32l4xx_hal_i2c_ex.o │ │ │ ├── stm32l4xx_hal_msp.crf │ │ │ ├── stm32l4xx_hal_msp.d │ │ │ ├── stm32l4xx_hal_msp.o │ │ │ ├── stm32l4xx_hal_pcd.crf │ │ │ ├── stm32l4xx_hal_pcd.d │ │ │ ├── stm32l4xx_hal_pcd.o │ │ │ ├── stm32l4xx_hal_pcd_ex.crf │ │ │ ├── stm32l4xx_hal_pcd_ex.d │ │ │ ├── stm32l4xx_hal_pcd_ex.o │ │ │ ├── stm32l4xx_hal_pwr.crf │ │ │ ├── stm32l4xx_hal_pwr.d │ │ │ ├── stm32l4xx_hal_pwr.o │ │ │ ├── stm32l4xx_hal_pwr_ex.crf │ │ │ ├── stm32l4xx_hal_pwr_ex.d │ │ │ ├── stm32l4xx_hal_pwr_ex.o │ │ │ ├── stm32l4xx_hal_rcc.crf │ │ │ ├── stm32l4xx_hal_rcc.d │ │ │ ├── stm32l4xx_hal_rcc.o │ │ │ ├── stm32l4xx_hal_rcc_ex.crf │ │ │ ├── stm32l4xx_hal_rcc_ex.d │ │ │ ├── stm32l4xx_hal_rcc_ex.o │ │ │ ├── stm32l4xx_hal_rtc.crf │ │ │ ├── stm32l4xx_hal_rtc.d │ │ │ ├── stm32l4xx_hal_rtc.o │ │ │ ├── stm32l4xx_hal_rtc_ex.crf │ │ │ ├── stm32l4xx_hal_rtc_ex.d │ │ │ ├── stm32l4xx_hal_rtc_ex.o │ │ │ ├── stm32l4xx_hal_spi.crf │ │ │ ├── stm32l4xx_hal_spi.d │ │ │ ├── stm32l4xx_hal_spi.o │ │ │ ├── stm32l4xx_hal_spi_ex.crf │ │ │ ├── stm32l4xx_hal_spi_ex.d │ │ │ ├── stm32l4xx_hal_spi_ex.o │ │ │ ├── stm32l4xx_hal_tim.crf │ │ │ ├── stm32l4xx_hal_tim.d │ │ │ ├── stm32l4xx_hal_tim.o │ │ │ ├── stm32l4xx_hal_tim_ex.crf │ │ │ ├── stm32l4xx_hal_tim_ex.d │ │ │ ├── stm32l4xx_hal_tim_ex.o │ │ │ ├── stm32l4xx_hal_uart.crf │ │ │ ├── stm32l4xx_hal_uart.d │ │ │ ├── stm32l4xx_hal_uart.o │ │ │ ├── stm32l4xx_hal_uart_ex.crf │ │ │ ├── stm32l4xx_hal_uart_ex.d │ │ │ ├── stm32l4xx_hal_uart_ex.o │ │ │ ├── stm32l4xx_it.crf │ │ │ ├── stm32l4xx_it.d │ │ │ ├── stm32l4xx_it.o │ │ │ ├── stm32l4xx_ll_usb.crf │ │ │ ├── stm32l4xx_ll_usb.d │ │ │ ├── stm32l4xx_ll_usb.o │ │ │ ├── system_stm32l4xx.crf │ │ │ ├── system_stm32l4xx.d │ │ │ ├── system_stm32l4xx.o │ │ │ ├── test.axf │ │ │ ├── test.build_log.htm │ │ │ ├── test.htm │ │ │ ├── test.lnp │ │ │ ├── test.map │ │ │ ├── test.sct │ │ │ └── test_test.dep │ │ ├── Src │ │ ├── CFAP128296D00290.c │ │ ├── Images_for_CFAP128296D00290.h │ │ ├── LUTs_for_CFAP128296D00290.h │ │ ├── ePaper_CFAP128296D00290.c │ │ ├── ePaper_CFAP128296D00290.h │ │ ├── main.c │ │ ├── stm32l4xx_hal_msp.c │ │ ├── stm32l4xx_it.c │ │ └── system_stm32l4xx.c │ │ └── test.ioc ├── kicad │ ├── NRF51822-04.pretty │ │ └── NRF51822-04.kicad_mod │ ├── abs07-120-crystal.pretty │ │ └── crystal.kicad_mod │ ├── fp-lib-table │ ├── gerber.zip │ ├── gerber │ │ ├── st32l433test-B.Cu.gbr │ │ ├── st32l433test-B.SilkS.gbr │ │ ├── st32l433test-Edge.Cuts.gbr │ │ ├── st32l433test-F.Cu.gbr │ │ ├── st32l433test-F.SilkS.gbr │ │ └── st32l433test.drl │ ├── osh.pretty │ │ └── oshw.kicad_mod │ ├── oshw.kicad_mod │ ├── st32l433test-cache.lib │ ├── st32l433test.bak │ ├── st32l433test.bin │ ├── st32l433test.dsn │ ├── st32l433test.kicad_pcb │ ├── st32l433test.kicad_pcb-bak │ ├── st32l433test.net │ ├── st32l433test.pro │ ├── st32l433test.rules │ ├── st32l433test.sch │ ├── st32l433test.ses │ ├── stm32L433.bak │ ├── stm32L433.bck │ ├── stm32L433.dcm │ ├── stm32L433.lib │ ├── wireless-modules.bak │ ├── wireless-modules.bck │ ├── wireless-modules.dcm │ └── wireless-modules.lib ├── microcontroller-pinout.png ├── pwm-24mhz.png ├── setup.jpg ├── setup.txt ├── st-link-connector.png └── st-link-pins.png ├── white-400-300.bin ├── white-400-300.png ├── white.bin ├── white.png ├── wifi-epaper-400-300.bin ├── wifi-epaper-400-300.png ├── wifi-epaper.bin └── wifi-epaper.png /benchoff-400-300.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/benchoff-400-300.bin -------------------------------------------------------------------------------- /benchoff-400-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/benchoff-400-300.png -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | from PIL import Image 4 | import sys 5 | 6 | if len(sys.argv) != 3: 7 | print("usage: convert inputfile.png outputfile.bin") 8 | sys.exit(1) 9 | 10 | im = Image.open(sys.argv[1]) 11 | im = im.convert('RGB') 12 | width, height = im.size 13 | print("width: " + str(width) + ", height: " + str(height)) 14 | data = bytearray(width * height / 8 * 2) 15 | counter = 0 16 | 17 | def createBits(cmp): 18 | global counter 19 | bits = 0 20 | bitCounter = 0 21 | byteCounter = 0 22 | for y in range(height): 23 | for x in range(width): 24 | bits <<= 1 25 | r, g, b = im.getpixel((x, y)) 26 | if cmp(r, g, b): 27 | bits |= 1 28 | bitCounter += 1 29 | if bitCounter == 8: 30 | # sys.stdout.write(format(bits, '#04x') + ", ") 31 | data[counter] = bits 32 | counter += 1 33 | bitCounter = 0 34 | bits = 0 35 | byteCounter += 1 36 | if byteCounter == 33: 37 | byteCounter = 0 38 | # sys.stdout.write('\n') 39 | 40 | def black(r, g, b): 41 | return r == 0 and g == 0 and b == 0 42 | 43 | def red(r, g, b): 44 | return r == 255 and g == 0 and b == 0 45 | 46 | createBits(black) 47 | createBits(red) 48 | 49 | sys.stdout.flush() 50 | 51 | 52 | with open(sys.argv[2], "wb") as file: 53 | file.write(data) 54 | -------------------------------------------------------------------------------- /datasheets/1P137-00_01_E2417ES053_20160906.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/datasheets/1P137-00_01_E2417ES053_20160906.pdf -------------------------------------------------------------------------------- /datasheets/ApplicationNote_EPD420_Spectra_with_OTP_v01_160927.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/datasheets/ApplicationNote_EPD420_Spectra_with_OTP_v01_160927.pdf -------------------------------------------------------------------------------- /datasheets/NODEMCU_DEVKIT_SCH_BIG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/datasheets/NODEMCU_DEVKIT_SCH_BIG.png -------------------------------------------------------------------------------- /datasheets/NodeMCU_Pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/datasheets/NodeMCU_Pinout.png -------------------------------------------------------------------------------- /datasheets/SLMD481H08L_nov16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/datasheets/SLMD481H08L_nov16.pdf -------------------------------------------------------------------------------- /datasheets/e-paper-pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/datasheets/e-paper-pinout.pdf -------------------------------------------------------------------------------- /datasheets/e-paper-pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/datasheets/e-paper-pinout.png -------------------------------------------------------------------------------- /datasheets/e-paper-timing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/datasheets/e-paper-timing.pdf -------------------------------------------------------------------------------- /datasheets/esp32_datasheet_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/datasheets/esp32_datasheet_en.pdf -------------------------------------------------------------------------------- /datasheets/esp32_technical_reference_manual_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/datasheets/esp32_technical_reference_manual_en.pdf -------------------------------------------------------------------------------- /datasheets/esp_wroom_32_datasheet_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/datasheets/esp_wroom_32_datasheet_en.pdf -------------------------------------------------------------------------------- /datasheets/ltc3106f.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/datasheets/ltc3106f.pdf -------------------------------------------------------------------------------- /firmware/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # This is a project Makefile. It is assumed the directory this Makefile resides in is a 3 | # project subdirectory. 4 | # 5 | 6 | PROJECT_NAME := wifi-epaper 7 | 8 | include $(IDF_PATH)/make/project.mk 9 | 10 | -------------------------------------------------------------------------------- /firmware/main/Kconfig.projbuild: -------------------------------------------------------------------------------- 1 | menu "Example Configuration" 2 | 3 | config WIFI_SSID 4 | string "WiFi SSID" 5 | default "myssid" 6 | help 7 | SSID (network name) for the example to connect to. 8 | 9 | config WIFI_PASSWORD 10 | string "WiFi Password" 11 | default "myssid" 12 | help 13 | WiFi password (WPA or WPA2) for the example to use. 14 | 15 | Can be left blank if the network has no security set. 16 | 17 | endmenu -------------------------------------------------------------------------------- /firmware/main/component.mk: -------------------------------------------------------------------------------- 1 | # 2 | # "main" pseudo-component makefile. 3 | # 4 | # (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.) 5 | -------------------------------------------------------------------------------- /firmware/main/epd.h: -------------------------------------------------------------------------------- 1 | #ifndef EPD_H 2 | #define EPD_h 3 | 4 | #include 5 | 6 | void epdInitHardware(void); 7 | 8 | void epdShowImage(const uint8_t* newImage); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /frank-buss-400-300.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/frank-buss-400-300.bin -------------------------------------------------------------------------------- /frank-buss-400-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/frank-buss-400-300.png -------------------------------------------------------------------------------- /frank-buss.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/frank-buss.bin -------------------------------------------------------------------------------- /frank-buss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/frank-buss.png -------------------------------------------------------------------------------- /init.lua: -------------------------------------------------------------------------------- 1 | collectgarbage("setmemlimit", 64) 2 | 3 | -- initialize all display pins 4 | pins = { 0, 1, 2, 5, 6, 7, 8 } 5 | for k,pin in pairs(pins) do 6 | gpio.mode(pin, gpio.OUTPUT) 7 | gpio.write(pin, gpio.LOW) 8 | end 9 | 10 | function executeString(s) 11 | local fun = loadstring(s) 12 | fun() 13 | end 14 | 15 | function stripHeader(s) 16 | local pos = string.find(s, "\r\n\r\n") 17 | return s:sub(pos + 4) 18 | end 19 | 20 | function runScript(host, url) 21 | receivedPage = "" 22 | conn = net.createConnection(net.TCP, 0) 23 | conn:on("receive", function(conn, data) receivedPage = receivedPage .. data end) 24 | conn:on("disconnection", function(conn, data) pcall(function() executeString(stripHeader(receivedPage)) end) end) 25 | conn:connect(80, host) 26 | conn:send("GET /" .. url .. " HTTP/1.1\r\nHost: " .. host .. "\r\nConnection: close\r\n\r\n") 27 | end 28 | 29 | wifi.setphymode(wifi.PHYMODE_N) 30 | wifi.setmode(wifi.STATION) 31 | wifi.sta.config("SSID","PASSWORD") 32 | wifi.sta.eventMonReg(wifi.STA_IDLE, function() print("IDLE") end) 33 | wifi.sta.eventMonReg(wifi.STA_CONNECTING, function() print("CONNECTING...") end) 34 | wifi.sta.eventMonReg(wifi.STA_WRONGPWD, function() print("WRONG PASSWORD!!!") end) 35 | wifi.sta.eventMonReg(wifi.STA_APNOTFOUND, function() print("NO SUCH SSID FOUND") end) 36 | wifi.sta.eventMonReg(wifi.STA_FAIL, function() print("FAILED TO CONNECT") end) 37 | wifi.sta.eventMonReg(wifi.STA_GOTIP, function() runScript("192.168.11.27","init2.lua") end) 38 | wifi.sta.eventMonStart() 39 | -------------------------------------------------------------------------------- /init2.lua: -------------------------------------------------------------------------------- 1 | -- increase default limit of 4 kB to 64 kB for strings 2 | collectgarbage("setmemlimit", 64) 3 | 4 | -- callback function to show an image 5 | function showImage(image) 6 | epd.image(image) 7 | end 8 | 9 | -- web load functions 10 | 11 | function trim(s) 12 | return s:match "^%s*(.-)%s*$" 13 | end 14 | 15 | function stripHeader(s) 16 | local pos = string.find(s, "\r\n\r\n") 17 | return s:sub(pos + 4) 18 | end 19 | 20 | function getImage(host, filename) 21 | receivedPage = "" 22 | conn = net.createConnection(net.TCP, 0) 23 | conn:on("receive", function(conn, data) receivedPage = receivedPage .. data end) 24 | conn:on("disconnection", function(conn, data) showImage(trim(stripHeader(receivedPage))) end) 25 | conn:connect(80, host) 26 | conn:send("GET /" .. filename .. " HTTP/1.1\r\nHost: " .. host .. "\r\nConnection: close\r\n\r\n") 27 | end 28 | 29 | -- local host, connected over WiFi 30 | host = "192.168.11.27" 31 | 32 | -- clear display 33 | getImage(host, "white.bin") 34 | 35 | -- init mqtt client without logins, keepalive timer 120s 36 | m = mqtt.Client("clientid", 120) 37 | 38 | -- on publish message receive event 39 | m:on("message", function(client, topic, data) 40 | if data ~= nil then 41 | print(topic .. ": " .. data) 42 | getImage(host, data) 43 | end 44 | end) 45 | 46 | m:connect(host, 1883, 0, function(client) 47 | print("connected") 48 | -- subscribe "display" with qos = 0 49 | m:subscribe("display",0, function(client) print("subscribe success") end) 50 | end, function(client, reason) print("failed reason: "..reason) end) 51 | 52 | print("init2.lua loaded") 53 | -------------------------------------------------------------------------------- /nodemcu_float_master_20170414-2230.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/nodemcu_float_master_20170414-2230.bin -------------------------------------------------------------------------------- /pins.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/pins.ods -------------------------------------------------------------------------------- /solar-cell.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/solar-cell.ods -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_reset_f32.c: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------------------------------- 2 | * Copyright (C) 2010-2014 ARM Limited. All rights reserved. 3 | * 4 | * $Date: 19. March 2015 5 | * $Revision: V.1.4.5 6 | * 7 | * Project: CMSIS DSP Library 8 | * Title: arm_pid_reset_f32.c 9 | * 10 | * Description: Floating-point PID Control reset function 11 | * 12 | * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 13 | * 14 | * Redistribution and use in source and binary forms, with or without 15 | * modification, are permitted provided that the following conditions 16 | * are met: 17 | * - Redistributions of source code must retain the above copyright 18 | * notice, this list of conditions and the following disclaimer. 19 | * - Redistributions in binary form must reproduce the above copyright 20 | * notice, this list of conditions and the following disclaimer in 21 | * the documentation and/or other materials provided with the 22 | * distribution. 23 | * - Neither the name of ARM LIMITED nor the names of its contributors 24 | * may be used to endorse or promote products derived from this 25 | * software without specific prior written permission. 26 | * 27 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 28 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 29 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 30 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 31 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 32 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 33 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 34 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 35 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 36 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 37 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 38 | * POSSIBILITY OF SUCH DAMAGE. 39 | * ------------------------------------------------------------------- */ 40 | 41 | #include "arm_math.h" 42 | 43 | /** 44 | * @addtogroup PID 45 | * @{ 46 | */ 47 | 48 | /** 49 | * @brief Reset function for the floating-point PID Control. 50 | * @param[in] *S Instance pointer of PID control data structure. 51 | * @return none. 52 | * \par Description: 53 | * The function resets the state buffer to zeros. 54 | */ 55 | void arm_pid_reset_f32( 56 | arm_pid_instance_f32 * S) 57 | { 58 | 59 | /* Clear the state buffer. The size will be always 3 samples */ 60 | memset(S->state, 0, 3u * sizeof(float32_t)); 61 | } 62 | 63 | /** 64 | * @} end of PID group 65 | */ 66 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_reset_q15.c: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------------------------------- 2 | * Copyright (C) 2010-2014 ARM Limited. All rights reserved. 3 | * 4 | * $Date: 19. March 2015 5 | * $Revision: V.1.4.5 6 | * 7 | * Project: CMSIS DSP Library 8 | * Title: arm_pid_reset_q15.c 9 | * 10 | * Description: Q15 PID Control reset function 11 | * 12 | * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 13 | * 14 | * Redistribution and use in source and binary forms, with or without 15 | * modification, are permitted provided that the following conditions 16 | * are met: 17 | * - Redistributions of source code must retain the above copyright 18 | * notice, this list of conditions and the following disclaimer. 19 | * - Redistributions in binary form must reproduce the above copyright 20 | * notice, this list of conditions and the following disclaimer in 21 | * the documentation and/or other materials provided with the 22 | * distribution. 23 | * - Neither the name of ARM LIMITED nor the names of its contributors 24 | * may be used to endorse or promote products derived from this 25 | * software without specific prior written permission. 26 | * 27 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 28 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 29 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 30 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 31 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 32 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 33 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 34 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 35 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 36 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 37 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 38 | * POSSIBILITY OF SUCH DAMAGE. 39 | * -------------------------------------------------------------------- */ 40 | 41 | #include "arm_math.h" 42 | 43 | /** 44 | * @addtogroup PID 45 | * @{ 46 | */ 47 | 48 | /** 49 | * @brief Reset function for the Q15 PID Control. 50 | * @param[in] *S Instance pointer of PID control data structure. 51 | * @return none. 52 | * \par Description: 53 | * The function resets the state buffer to zeros. 54 | */ 55 | void arm_pid_reset_q15( 56 | arm_pid_instance_q15 * S) 57 | { 58 | /* Reset state to zero, The size will be always 3 samples */ 59 | memset(S->state, 0, 3u * sizeof(q15_t)); 60 | } 61 | 62 | /** 63 | * @} end of PID group 64 | */ 65 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_reset_q31.c: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------------------------------- 2 | * Copyright (C) 2010-2014 ARM Limited. All rights reserved. 3 | * 4 | * $Date: 19. March 2015 5 | * $Revision: V.1.4.5 6 | * 7 | * Project: CMSIS DSP Library 8 | * Title: arm_pid_reset_q31.c 9 | * 10 | * Description: Q31 PID Control reset function 11 | * 12 | * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 13 | * 14 | * Redistribution and use in source and binary forms, with or without 15 | * modification, are permitted provided that the following conditions 16 | * are met: 17 | * - Redistributions of source code must retain the above copyright 18 | * notice, this list of conditions and the following disclaimer. 19 | * - Redistributions in binary form must reproduce the above copyright 20 | * notice, this list of conditions and the following disclaimer in 21 | * the documentation and/or other materials provided with the 22 | * distribution. 23 | * - Neither the name of ARM LIMITED nor the names of its contributors 24 | * may be used to endorse or promote products derived from this 25 | * software without specific prior written permission. 26 | * 27 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 28 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 29 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 30 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 31 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 32 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 33 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 34 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 35 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 36 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 37 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 38 | * POSSIBILITY OF SUCH DAMAGE. 39 | * ------------------------------------------------------------------- */ 40 | 41 | #include "arm_math.h" 42 | 43 | /** 44 | * @addtogroup PID 45 | * @{ 46 | */ 47 | 48 | /** 49 | * @brief Reset function for the Q31 PID Control. 50 | * @param[in] *S Instance pointer of PID control data structure. 51 | * @return none. 52 | * \par Description: 53 | * The function resets the state buffer to zeros. 54 | */ 55 | void arm_pid_reset_q31( 56 | arm_pid_instance_q31 * S) 57 | { 58 | 59 | /* Clear the state buffer. The size will be always 3 samples */ 60 | memset(S->state, 0, 3u * sizeof(q31_t)); 61 | } 62 | 63 | /** 64 | * @} end of PID group 65 | */ 66 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_init_f32.c: -------------------------------------------------------------------------------- 1 | /*----------------------------------------------------------------------------- 2 | * Copyright (C) 2010-2014 ARM Limited. All rights reserved. 3 | * 4 | * $Date: 19. March 2015 5 | * $Revision: V.1.4.5 6 | * 7 | * Project: CMSIS DSP Library 8 | * Title: arm_fir_lattice_init_f32.c 9 | * 10 | * Description: Floating-point FIR Lattice filter initialization function. 11 | * 12 | * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 13 | * 14 | * Redistribution and use in source and binary forms, with or without 15 | * modification, are permitted provided that the following conditions 16 | * are met: 17 | * - Redistributions of source code must retain the above copyright 18 | * notice, this list of conditions and the following disclaimer. 19 | * - Redistributions in binary form must reproduce the above copyright 20 | * notice, this list of conditions and the following disclaimer in 21 | * the documentation and/or other materials provided with the 22 | * distribution. 23 | * - Neither the name of ARM LIMITED nor the names of its contributors 24 | * may be used to endorse or promote products derived from this 25 | * software without specific prior written permission. 26 | * 27 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 28 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 29 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 30 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 31 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 32 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 33 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 34 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 35 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 36 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 37 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 38 | * POSSIBILITY OF SUCH DAMAGE. 39 | * ---------------------------------------------------------------------------*/ 40 | 41 | #include "arm_math.h" 42 | 43 | /** 44 | * @ingroup groupFilters 45 | */ 46 | 47 | /** 48 | * @addtogroup FIR_Lattice 49 | * @{ 50 | */ 51 | 52 | /** 53 | * @brief Initialization function for the floating-point FIR lattice filter. 54 | * @param[in] *S points to an instance of the floating-point FIR lattice structure. 55 | * @param[in] numStages number of filter stages. 56 | * @param[in] *pCoeffs points to the coefficient buffer. The array is of length numStages. 57 | * @param[in] *pState points to the state buffer. The array is of length numStages. 58 | * @return none. 59 | */ 60 | 61 | void arm_fir_lattice_init_f32( 62 | arm_fir_lattice_instance_f32 * S, 63 | uint16_t numStages, 64 | float32_t * pCoeffs, 65 | float32_t * pState) 66 | { 67 | /* Assign filter taps */ 68 | S->numStages = numStages; 69 | 70 | /* Assign coefficient pointer */ 71 | S->pCoeffs = pCoeffs; 72 | 73 | /* Clear state buffer and size is always numStages */ 74 | memset(pState, 0, (numStages) * sizeof(float32_t)); 75 | 76 | /* Assign state pointer */ 77 | S->pState = pState; 78 | 79 | } 80 | 81 | /** 82 | * @} end of FIR_Lattice group 83 | */ 84 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_init_q15.c: -------------------------------------------------------------------------------- 1 | /*----------------------------------------------------------------------------- 2 | * Copyright (C) 2010-2014 ARM Limited. All rights reserved. 3 | * 4 | * $Date: 19. March 2015 5 | * $Revision: V.1.4.5 6 | * 7 | * Project: CMSIS DSP Library 8 | * Title: arm_fir_lattice_init_q15.c 9 | * 10 | * Description: Q15 FIR Lattice filter initialization function. 11 | * 12 | * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 13 | * 14 | * Redistribution and use in source and binary forms, with or without 15 | * modification, are permitted provided that the following conditions 16 | * are met: 17 | * - Redistributions of source code must retain the above copyright 18 | * notice, this list of conditions and the following disclaimer. 19 | * - Redistributions in binary form must reproduce the above copyright 20 | * notice, this list of conditions and the following disclaimer in 21 | * the documentation and/or other materials provided with the 22 | * distribution. 23 | * - Neither the name of ARM LIMITED nor the names of its contributors 24 | * may be used to endorse or promote products derived from this 25 | * software without specific prior written permission. 26 | * 27 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 28 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 29 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 30 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 31 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 32 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 33 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 34 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 35 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 36 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 37 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 38 | * POSSIBILITY OF SUCH DAMAGE. 39 | * ---------------------------------------------------------------------------*/ 40 | 41 | #include "arm_math.h" 42 | 43 | /** 44 | * @ingroup groupFilters 45 | */ 46 | 47 | /** 48 | * @addtogroup FIR_Lattice 49 | * @{ 50 | */ 51 | 52 | /** 53 | * @brief Initialization function for the Q15 FIR lattice filter. 54 | * @param[in] *S points to an instance of the Q15 FIR lattice structure. 55 | * @param[in] numStages number of filter stages. 56 | * @param[in] *pCoeffs points to the coefficient buffer. The array is of length numStages. 57 | * @param[in] *pState points to the state buffer. The array is of length numStages. 58 | * @return none. 59 | */ 60 | 61 | void arm_fir_lattice_init_q15( 62 | arm_fir_lattice_instance_q15 * S, 63 | uint16_t numStages, 64 | q15_t * pCoeffs, 65 | q15_t * pState) 66 | { 67 | /* Assign filter taps */ 68 | S->numStages = numStages; 69 | 70 | /* Assign coefficient pointer */ 71 | S->pCoeffs = pCoeffs; 72 | 73 | /* Clear state buffer and size is always numStages */ 74 | memset(pState, 0, (numStages) * sizeof(q15_t)); 75 | 76 | /* Assign state pointer */ 77 | S->pState = pState; 78 | 79 | } 80 | 81 | /** 82 | * @} end of FIR_Lattice group 83 | */ 84 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_init_q31.c: -------------------------------------------------------------------------------- 1 | /*----------------------------------------------------------------------------- 2 | * Copyright (C) 2010-2014 ARM Limited. All rights reserved. 3 | * 4 | * $Date: 19. March 2015 5 | * $Revision: V.1.4.5 6 | * 7 | * Project: CMSIS DSP Library 8 | * Title: arm_fir_lattice_init_q31.c 9 | * 10 | * Description: Q31 FIR lattice filter initialization function. 11 | * 12 | * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 13 | * 14 | * Redistribution and use in source and binary forms, with or without 15 | * modification, are permitted provided that the following conditions 16 | * are met: 17 | * - Redistributions of source code must retain the above copyright 18 | * notice, this list of conditions and the following disclaimer. 19 | * - Redistributions in binary form must reproduce the above copyright 20 | * notice, this list of conditions and the following disclaimer in 21 | * the documentation and/or other materials provided with the 22 | * distribution. 23 | * - Neither the name of ARM LIMITED nor the names of its contributors 24 | * may be used to endorse or promote products derived from this 25 | * software without specific prior written permission. 26 | * 27 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 28 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 29 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 30 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 31 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 32 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 33 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 34 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 35 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 36 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 37 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 38 | * POSSIBILITY OF SUCH DAMAGE. 39 | * ---------------------------------------------------------------------------*/ 40 | 41 | #include "arm_math.h" 42 | 43 | /** 44 | * @ingroup groupFilters 45 | */ 46 | 47 | /** 48 | * @addtogroup FIR_Lattice 49 | * @{ 50 | */ 51 | 52 | /** 53 | * @brief Initialization function for the Q31 FIR lattice filter. 54 | * @param[in] *S points to an instance of the Q31 FIR lattice structure. 55 | * @param[in] numStages number of filter stages. 56 | * @param[in] *pCoeffs points to the coefficient buffer. The array is of length numStages. 57 | * @param[in] *pState points to the state buffer. The array is of length numStages. 58 | * @return none. 59 | */ 60 | 61 | void arm_fir_lattice_init_q31( 62 | arm_fir_lattice_instance_q31 * S, 63 | uint16_t numStages, 64 | q31_t * pCoeffs, 65 | q31_t * pState) 66 | { 67 | /* Assign filter taps */ 68 | S->numStages = numStages; 69 | 70 | /* Assign coefficient pointer */ 71 | S->pCoeffs = pCoeffs; 72 | 73 | /* Clear state buffer and size is always numStages */ 74 | memset(pState, 0, (numStages) * sizeof(q31_t)); 75 | 76 | /* Assign state pointer */ 77 | S->pState = pState; 78 | 79 | } 80 | 81 | /** 82 | * @} end of FIR_Lattice group 83 | */ 84 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_init_q15.c: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------------------------------- 2 | * Copyright (C) 2010-2014 ARM Limited. All rights reserved. 3 | * 4 | * $Date: 19. March 2015 5 | * $Revision: V.1.4.5 6 | * 7 | * Project: CMSIS DSP Library 8 | * Title: arm_mat_init_q15.c 9 | * 10 | * Description: Q15 matrix initialization. 11 | * 12 | * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 13 | * 14 | * Redistribution and use in source and binary forms, with or without 15 | * modification, are permitted provided that the following conditions 16 | * are met: 17 | * - Redistributions of source code must retain the above copyright 18 | * notice, this list of conditions and the following disclaimer. 19 | * - Redistributions in binary form must reproduce the above copyright 20 | * notice, this list of conditions and the following disclaimer in 21 | * the documentation and/or other materials provided with the 22 | * distribution. 23 | * - Neither the name of ARM LIMITED nor the names of its contributors 24 | * may be used to endorse or promote products derived from this 25 | * software without specific prior written permission. 26 | * 27 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 28 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 29 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 30 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 31 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 32 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 33 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 34 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 35 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 36 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 37 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 38 | * POSSIBILITY OF SUCH DAMAGE. 39 | * -------------------------------------------------------------------------- */ 40 | 41 | 42 | #include "arm_math.h" 43 | 44 | /** 45 | * @ingroup groupMatrix 46 | */ 47 | 48 | /** 49 | * @addtogroup MatrixInit 50 | * @{ 51 | */ 52 | 53 | /** 54 | * @brief Q15 matrix initialization. 55 | * @param[in,out] *S points to an instance of the floating-point matrix structure. 56 | * @param[in] nRows number of rows in the matrix. 57 | * @param[in] nColumns number of columns in the matrix. 58 | * @param[in] *pData points to the matrix data array. 59 | * @return none 60 | */ 61 | 62 | void arm_mat_init_q15( 63 | arm_matrix_instance_q15 * S, 64 | uint16_t nRows, 65 | uint16_t nColumns, 66 | q15_t * pData) 67 | { 68 | /* Assign Number of Rows */ 69 | S->numRows = nRows; 70 | 71 | /* Assign Number of Columns */ 72 | S->numCols = nColumns; 73 | 74 | /* Assign Data pointer */ 75 | S->pData = pData; 76 | } 77 | 78 | /** 79 | * @} end of MatrixInit group 80 | */ 81 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_init_q31.c: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------------------------------- 2 | * Copyright (C) 2010-2014 ARM Limited. All rights reserved. 3 | * 4 | * $Date: 19. March 2015 5 | * $Revision: V.1.4.5 6 | * 7 | * Project: CMSIS DSP Library 8 | * Title: arm_mat_init_q31.c 9 | * 10 | * Description: Q31 matrix initialization. 11 | * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 12 | * 13 | * Redistribution and use in source and binary forms, with or without 14 | * modification, are permitted provided that the following conditions 15 | * are met: 16 | * - Redistributions of source code must retain the above copyright 17 | * notice, this list of conditions and the following disclaimer. 18 | * - Redistributions in binary form must reproduce the above copyright 19 | * notice, this list of conditions and the following disclaimer in 20 | * the documentation and/or other materials provided with the 21 | * distribution. 22 | * - Neither the name of ARM LIMITED nor the names of its contributors 23 | * may be used to endorse or promote products derived from this 24 | * software without specific prior written permission. 25 | * 26 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 27 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 28 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 29 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 30 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 31 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 32 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 33 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 34 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 35 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 36 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 37 | * POSSIBILITY OF SUCH DAMAGE. 38 | * -------------------------------------------------------------------------- */ 39 | 40 | 41 | #include "arm_math.h" 42 | 43 | /** 44 | * @ingroup groupMatrix 45 | */ 46 | 47 | /** 48 | * @defgroup MatrixInit Matrix Initialization 49 | * 50 | */ 51 | 52 | /** 53 | * @addtogroup MatrixInit 54 | * @{ 55 | */ 56 | 57 | /** 58 | * @brief Q31 matrix initialization. 59 | * @param[in,out] *S points to an instance of the floating-point matrix structure. 60 | * @param[in] nRows number of rows in the matrix. 61 | * @param[in] nColumns number of columns in the matrix. 62 | * @param[in] *pData points to the matrix data array. 63 | * @return none 64 | */ 65 | 66 | void arm_mat_init_q31( 67 | arm_matrix_instance_q31 * S, 68 | uint16_t nRows, 69 | uint16_t nColumns, 70 | q31_t * pData) 71 | { 72 | /* Assign Number of Rows */ 73 | S->numRows = nRows; 74 | 75 | /* Assign Number of Columns */ 76 | S->numCols = nColumns; 77 | 78 | /* Assign Data pointer */ 79 | S->pData = pData; 80 | } 81 | 82 | /** 83 | * @} end of MatrixInit group 84 | */ 85 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l431xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l431xx.h -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l432xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l432xx.h -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l442xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l442xx.h -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l443xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l443xx.h -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l451xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l451xx.h -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l452xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l452xx.h -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l462xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l462xx.h -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l471xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l471xx.h -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l475xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l475xx.h -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l485xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l485xx.h -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l486xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l486xx.h -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l431xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0803FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2000BFFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10003FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; 37 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l431xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20007FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20008000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2000BFFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10003FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l432xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0803FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2000BFFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10003FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; 37 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l432xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20007FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20008000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2000BFFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10003FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l433xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0803FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2000BFFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10003FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; 37 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l433xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20007FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20008000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2000BFFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10003FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l442xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0803FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2000BFFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10003FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; 37 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l442xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20007FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20008000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2000BFFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10003FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l443xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0803FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2000BFFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10003FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; 37 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l443xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20007FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20008000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2000BFFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10003FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l451xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0807FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; 37 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l451xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20015FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20016000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l452xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0807FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; 37 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l452xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20015FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20016000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l462xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0807FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; 37 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l462xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20015FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20016000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l471xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x080FFFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20017FFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; 37 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l471xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x2000FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20010000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20017FFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | 26 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 27 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 28 | 29 | initialize by copy { readwrite }; 30 | do not initialize { section .noinit }; 31 | 32 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 33 | 34 | place in ROM_region { readonly }; 35 | place in RAM_region { readwrite, 36 | block CSTACK, block HEAP }; 37 | place in SRAM2_region { }; -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l475xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x080FFFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20017FFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; 37 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l475xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x2000FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20010000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20017FFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | 26 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 27 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 28 | 29 | initialize by copy { readwrite }; 30 | do not initialize { section .noinit }; 31 | 32 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 33 | 34 | place in ROM_region { readonly }; 35 | place in RAM_region { readwrite, 36 | block CSTACK, block HEAP }; 37 | place in SRAM2_region { }; -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l476xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x080FFFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20017FFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; 37 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l476xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x2000FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20010000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20017FFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | 26 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 27 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 28 | 29 | initialize by copy { readwrite }; 30 | do not initialize { section .noinit }; 31 | 32 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 33 | 34 | place in ROM_region { readonly }; 35 | place in RAM_region { readwrite, 36 | block CSTACK, block HEAP }; 37 | place in SRAM2_region { }; -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l485xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x080FFFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20017FFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; 37 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l485xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x2000FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20010000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20017FFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | 26 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 27 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 28 | 29 | initialize by copy { readwrite }; 30 | do not initialize { section .noinit }; 31 | 32 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 33 | 34 | place in ROM_region { readonly }; 35 | place in RAM_region { readwrite, 36 | block CSTACK, block HEAP }; 37 | place in SRAM2_region { }; -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l486xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x080FFFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20017FFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in SRAM2_region { }; 37 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/linker/stm32l486xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x2000FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20010000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20017FFF; 11 | define symbol __ICFEDIT_region_SRAM2_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_SRAM2_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region SRAM2_region = mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__]; 24 | 25 | 26 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 27 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 28 | 29 | initialize by copy { readwrite }; 30 | do not initialize { section .noinit }; 31 | 32 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 33 | 34 | place in ROM_region { readonly }; 35 | place in RAM_region { readwrite, 36 | block CSTACK, block HEAP }; 37 | place in SRAM2_region { }; -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_swpmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_swpmi.c -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Inc/main.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * File Name : main.h 4 | * Description : This file contains the common defines of the application 5 | ****************************************************************************** 6 | * 7 | * COPYRIGHT(c) 2017 STMicroelectronics 8 | * 9 | * Redistribution and use in source and binary forms, with or without modification, 10 | * are permitted provided that the following conditions are met: 11 | * 1. Redistributions of source code must retain the above copyright notice, 12 | * this list of conditions and the following disclaimer. 13 | * 2. Redistributions in binary form must reproduce the above copyright notice, 14 | * this list of conditions and the following disclaimer in the documentation 15 | * and/or other materials provided with the distribution. 16 | * 3. Neither the name of STMicroelectronics nor the names of its contributors 17 | * may be used to endorse or promote products derived from this software 18 | * without specific prior written permission. 19 | * 20 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 23 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 24 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 26 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 27 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 28 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 | * 31 | ****************************************************************************** 32 | */ 33 | /* Define to prevent recursive inclusion -------------------------------------*/ 34 | #ifndef __MAIN_H 35 | #define __MAIN_H 36 | /* Includes ------------------------------------------------------------------*/ 37 | 38 | /* USER CODE BEGIN Includes */ 39 | 40 | /* USER CODE END Includes */ 41 | 42 | /* Private define ------------------------------------------------------------*/ 43 | 44 | /* USER CODE BEGIN Private defines */ 45 | 46 | /* USER CODE END Private defines */ 47 | 48 | /** 49 | * @} 50 | */ 51 | 52 | /** 53 | * @} 54 | */ 55 | 56 | #endif /* __MAIN_H */ 57 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ 58 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Inc/stm32l4xx_it.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32l4xx_it.h 4 | * @brief This file contains the headers of the interrupt handlers. 5 | ****************************************************************************** 6 | * 7 | * COPYRIGHT(c) 2017 STMicroelectronics 8 | * 9 | * Redistribution and use in source and binary forms, with or without modification, 10 | * are permitted provided that the following conditions are met: 11 | * 1. Redistributions of source code must retain the above copyright notice, 12 | * this list of conditions and the following disclaimer. 13 | * 2. Redistributions in binary form must reproduce the above copyright notice, 14 | * this list of conditions and the following disclaimer in the documentation 15 | * and/or other materials provided with the distribution. 16 | * 3. Neither the name of STMicroelectronics nor the names of its contributors 17 | * may be used to endorse or promote products derived from this software 18 | * without specific prior written permission. 19 | * 20 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 23 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 24 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 26 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 27 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 28 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 | * 31 | ****************************************************************************** 32 | */ 33 | 34 | /* Define to prevent recursive inclusion -------------------------------------*/ 35 | #ifndef __STM32L4xx_IT_H 36 | #define __STM32L4xx_IT_H 37 | 38 | #ifdef __cplusplus 39 | extern "C" { 40 | #endif 41 | 42 | /* Includes ------------------------------------------------------------------*/ 43 | /* Exported types ------------------------------------------------------------*/ 44 | /* Exported constants --------------------------------------------------------*/ 45 | /* Exported macro ------------------------------------------------------------*/ 46 | /* Exported functions ------------------------------------------------------- */ 47 | 48 | void NMI_Handler(void); 49 | void HardFault_Handler(void); 50 | void MemManage_Handler(void); 51 | void BusFault_Handler(void); 52 | void UsageFault_Handler(void); 53 | void SVC_Handler(void); 54 | void DebugMon_Handler(void); 55 | void PendSV_Handler(void); 56 | void SysTick_Handler(void); 57 | 58 | #ifdef __cplusplus 59 | } 60 | #endif 61 | 62 | #endif /* __STM32L4xx_IT_H */ 63 | 64 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ 65 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/EventRecorderStub.scvd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/RTE/_test/RTE_Components.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Auto generated Run-Time-Environment Component Configuration File 4 | * *** Do not modify ! *** 5 | * 6 | * Project: 'test' 7 | * Target: 'test' 8 | */ 9 | 10 | #ifndef RTE_COMPONENTS_H 11 | #define RTE_COMPONENTS_H 12 | 13 | 14 | /* 15 | * Define the Device Header File: 16 | */ 17 | #define CMSIS_device_header "stm32l4xx.h" 18 | 19 | 20 | #endif /* RTE_COMPONENTS_H */ 21 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/ExtDll.iex: -------------------------------------------------------------------------------- 1 | [EXTDLL] 2 | Count=0 3 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/cfap128296d00290.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/cfap128296d00290.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/cfap128296d00290.d: -------------------------------------------------------------------------------- 1 | test\cfap128296d00290.o: ..\Src\CFAP128296D00290.c 2 | test\cfap128296d00290.o: ..\Src\ePaper_CFAP128296D00290.h 3 | test\cfap128296d00290.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 4 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 5 | test\cfap128296d00290.o: ../Inc/stm32l4xx_hal_conf.h 6 | test\cfap128296d00290.o: ../Inc/main.h 7 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 8 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 9 | test\cfap128296d00290.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 10 | test\cfap128296d00290.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 11 | test\cfap128296d00290.o: ../Drivers/CMSIS/Include/core_cm4.h 12 | test\cfap128296d00290.o: ../Drivers/CMSIS/Include/core_cmInstr.h 13 | test\cfap128296d00290.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 14 | test\cfap128296d00290.o: ../Drivers/CMSIS/Include/core_cmFunc.h 15 | test\cfap128296d00290.o: ../Drivers/CMSIS/Include/core_cmSimd.h 16 | test\cfap128296d00290.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 17 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 18 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 19 | test\cfap128296d00290.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 20 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 21 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 22 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 23 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 24 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 25 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 26 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 27 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 28 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 29 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 30 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 31 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 32 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 33 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 34 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 35 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 36 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 37 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 38 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 39 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 40 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 41 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 42 | test\cfap128296d00290.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 43 | test\cfap128296d00290.o: ..\Src\Images_for_CFAP128296D00290.h 44 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/cfap128296d00290.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/cfap128296d00290.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/epaper_cfap128296d00290.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/epaper_cfap128296d00290.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/epaper_cfap128296d00290.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/epaper_cfap128296d00290.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/main.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/main.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/main.d: -------------------------------------------------------------------------------- 1 | test\main.o: ../Src/main.c 2 | test\main.o: ../Inc/main.h 3 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 4 | test\main.o: ../Inc/stm32l4xx_hal_conf.h 5 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\main.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\main.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\main.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\main.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\main.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\main.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\main.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\main.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\main.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\main.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/main.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/startup_stm32l433xx.d: -------------------------------------------------------------------------------- 1 | test\startup_stm32l433xx.o: startup_stm32l433xx.s 2 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/startup_stm32l433xx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/startup_stm32l433xx.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal.c 2 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_hal.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_hal.o: ../Inc/main.h 5 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_hal.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_hal.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_hal.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_hal.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_hal.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_hal.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_hal.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_hal.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_hal.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_hal.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_hal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_cortex.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_cortex.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_cortex.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_cortex.c 2 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_hal_cortex.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_hal_cortex.o: ../Inc/main.h 5 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_hal_cortex.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_hal_cortex.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_hal_cortex.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_hal_cortex.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_hal_cortex.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_hal_cortex.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_hal_cortex.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_hal_cortex.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_hal_cortex.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_hal_cortex.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_hal_cortex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_cortex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_cortex.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_dma.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_dma.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_dma.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dma.c 2 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_hal_dma.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_hal_dma.o: ../Inc/main.h 5 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_hal_dma.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_hal_dma.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_hal_dma.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_hal_dma.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_hal_dma.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_hal_dma.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_hal_dma.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_hal_dma.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_hal_dma.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_hal_dma.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_hal_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_dma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_dma.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_flash.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_flash.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_flash.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_flash.c 2 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_hal_flash.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_hal_flash.o: ../Inc/main.h 5 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_hal_flash.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_hal_flash.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_hal_flash.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_hal_flash.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_hal_flash.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_hal_flash.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_hal_flash.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_hal_flash.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_hal_flash.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_hal_flash.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_hal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_flash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_flash.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_flash_ex.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_flash_ex.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_flash_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_flash_ex.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_flash_ramfunc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_flash_ramfunc.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_flash_ramfunc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_flash_ramfunc.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_gpio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_gpio.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_gpio.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_gpio.c 2 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_hal_gpio.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_hal_gpio.o: ../Inc/main.h 5 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_hal_gpio.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_hal_gpio.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_hal_gpio.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_hal_gpio.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_hal_gpio.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_hal_gpio.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_hal_gpio.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_hal_gpio.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_hal_gpio.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_hal_gpio.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_hal_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_gpio.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_i2c.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_i2c.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_i2c.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_i2c.c 2 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_hal_i2c.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_hal_i2c.o: ../Inc/main.h 5 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_hal_i2c.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_hal_i2c.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_hal_i2c.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_hal_i2c.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_hal_i2c.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_hal_i2c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_hal_i2c.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_hal_i2c.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_hal_i2c.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_hal_i2c.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_hal_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_i2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_i2c.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_i2c_ex.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_i2c_ex.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_i2c_ex.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_i2c_ex.c 2 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_hal_i2c_ex.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_hal_i2c_ex.o: ../Inc/main.h 5 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_hal_i2c_ex.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_hal_i2c_ex.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_hal_i2c_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_i2c_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_i2c_ex.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_msp.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_msp.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_msp.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_hal_msp.o: ../Src/stm32l4xx_hal_msp.c 2 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_hal_msp.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_hal_msp.o: ../Inc/main.h 5 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_hal_msp.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_hal_msp.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_hal_msp.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_hal_msp.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_hal_msp.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_hal_msp.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_hal_msp.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_hal_msp.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_hal_msp.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_hal_msp.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_hal_msp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_msp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_msp.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pcd.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pcd.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pcd.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pcd.c 2 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_hal_pcd.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_hal_pcd.o: ../Inc/main.h 5 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_hal_pcd.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_hal_pcd.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_hal_pcd.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_hal_pcd.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_hal_pcd.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_hal_pcd.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_hal_pcd.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_hal_pcd.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_hal_pcd.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_hal_pcd.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_hal_pcd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pcd.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pcd_ex.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pcd_ex.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pcd_ex.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pcd_ex.c 2 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_hal_pcd_ex.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_hal_pcd_ex.o: ../Inc/main.h 5 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_hal_pcd_ex.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_hal_pcd_ex.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_hal_pcd_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pcd_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pcd_ex.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pwr.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pwr.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pwr.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pwr.c 2 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_hal_pwr.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_hal_pwr.o: ../Inc/main.h 5 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_hal_pwr.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_hal_pwr.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_hal_pwr.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_hal_pwr.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_hal_pwr.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_hal_pwr.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_hal_pwr.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_hal_pwr.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_hal_pwr.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_hal_pwr.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_hal_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pwr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pwr.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pwr_ex.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pwr_ex.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pwr_ex.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pwr_ex.c 2 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_hal_pwr_ex.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_hal_pwr_ex.o: ../Inc/main.h 5 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_hal_pwr_ex.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_hal_pwr_ex.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_hal_pwr_ex.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pwr_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_pwr_ex.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rcc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rcc.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rcc.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rcc.c 2 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_hal_rcc.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_hal_rcc.o: ../Inc/main.h 5 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_hal_rcc.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_hal_rcc.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_hal_rcc.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_hal_rcc.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_hal_rcc.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_hal_rcc.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_hal_rcc.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_hal_rcc.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_hal_rcc.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_hal_rcc.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_hal_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rcc.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rcc_ex.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rcc_ex.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rcc_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rcc_ex.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rtc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rtc.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rtc.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rtc.c 2 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_hal_rtc.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_hal_rtc.o: ../Inc/main.h 5 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_hal_rtc.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_hal_rtc.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_hal_rtc.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_hal_rtc.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_hal_rtc.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_hal_rtc.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_hal_rtc.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_hal_rtc.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_hal_rtc.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_hal_rtc.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_hal_rtc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rtc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rtc.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rtc_ex.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rtc_ex.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rtc_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_rtc_ex.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_spi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_spi.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_spi.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_spi.c 2 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_hal_spi.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_hal_spi.o: ../Inc/main.h 5 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_hal_spi.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_hal_spi.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_hal_spi.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_hal_spi.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_hal_spi.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_hal_spi.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_hal_spi.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_hal_spi.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_hal_spi.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_hal_spi.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_hal_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_spi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_spi.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_spi_ex.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_spi_ex.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_spi_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_spi_ex.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_tim.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_tim.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_tim.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_tim.c 2 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_hal_tim.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_hal_tim.o: ../Inc/main.h 5 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_hal_tim.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_hal_tim.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_hal_tim.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_hal_tim.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_hal_tim.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_hal_tim.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_hal_tim.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_hal_tim.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_hal_tim.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_hal_tim.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_hal_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_tim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_tim.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_tim_ex.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_tim_ex.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_tim_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_tim_ex.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_uart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_uart.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_uart.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_uart.c 2 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_hal_uart.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_hal_uart.o: ../Inc/main.h 5 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_hal_uart.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_hal_uart.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_hal_uart.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_hal_uart.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_hal_uart.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_hal_uart.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_hal_uart.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_hal_uart.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_hal_uart.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_hal_uart.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_hal_uart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_uart.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_uart_ex.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_uart_ex.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_uart_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_hal_uart_ex.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_it.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_it.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_it.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_it.o: ../Src/stm32l4xx_it.c 2 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_it.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_it.o: ../Inc/main.h 5 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_it.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_it.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_it.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_it.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_it.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_it.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_it.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_it.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_it.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_it.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | test\stm32l4xx_it.o: ../Inc/stm32l4xx_it.h 43 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_it.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_it.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_ll_usb.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_ll_usb.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_ll_usb.d: -------------------------------------------------------------------------------- 1 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_usb.c 2 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 3 | test\stm32l4xx_ll_usb.o: ../Inc/stm32l4xx_hal_conf.h 4 | test\stm32l4xx_ll_usb.o: ../Inc/main.h 5 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 6 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 7 | test\stm32l4xx_ll_usb.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 8 | test\stm32l4xx_ll_usb.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 9 | test\stm32l4xx_ll_usb.o: ../Drivers/CMSIS/Include/core_cm4.h 10 | test\stm32l4xx_ll_usb.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 11 | test\stm32l4xx_ll_usb.o: ../Drivers/CMSIS/Include/core_cmInstr.h 12 | test\stm32l4xx_ll_usb.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 13 | test\stm32l4xx_ll_usb.o: ../Drivers/CMSIS/Include/core_cmFunc.h 14 | test\stm32l4xx_ll_usb.o: ../Drivers/CMSIS/Include/core_cmSimd.h 15 | test\stm32l4xx_ll_usb.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 16 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 17 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\stm32l4xx_ll_usb.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\stm32l4xx_ll_usb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_ll_usb.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/stm32l4xx_ll_usb.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/system_stm32l4xx.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/system_stm32l4xx.crf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/system_stm32l4xx.d: -------------------------------------------------------------------------------- 1 | test\system_stm32l4xx.o: ../Src/system_stm32l4xx.c 2 | test\system_stm32l4xx.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 3 | test\system_stm32l4xx.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h 4 | test\system_stm32l4xx.o: ../Drivers/CMSIS/Include/core_cm4.h 5 | test\system_stm32l4xx.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | test\system_stm32l4xx.o: ../Drivers/CMSIS/Include/core_cmInstr.h 7 | test\system_stm32l4xx.o: ../Drivers/CMSIS/Include/cmsis_armcc.h 8 | test\system_stm32l4xx.o: ../Drivers/CMSIS/Include/core_cmFunc.h 9 | test\system_stm32l4xx.o: ../Drivers/CMSIS/Include/core_cmSimd.h 10 | test\system_stm32l4xx.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h 11 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h 12 | test\system_stm32l4xx.o: ../Inc/stm32l4xx_hal_conf.h 13 | test\system_stm32l4xx.o: ../Inc/main.h 14 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h 15 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h 16 | test\system_stm32l4xx.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h 17 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 18 | test\system_stm32l4xx.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 19 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h 20 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h 21 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio_ex.h 22 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h 23 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h 24 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h 25 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ex.h 26 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash_ramfunc.h 27 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h 28 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h 29 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h 30 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h 31 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h 32 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h 33 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h 34 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h 35 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h 36 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h 37 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h 38 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart_ex.h 39 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h 40 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h 41 | test\system_stm32l4xx.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h 42 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/system_stm32l4xx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/system_stm32l4xx.o -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/test.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/test.axf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/test.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/cube/test/MDK-ARM/test/test.build_log.htm -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/test.lnp: -------------------------------------------------------------------------------- 1 | --cpu=Cortex-M4.fp --branchpatch=sdcomp-29491-629360 2 | "test\startup_stm32l433xx.o" 3 | "test\system_stm32l4xx.o" 4 | "test\main.o" 5 | "test\stm32l4xx_it.o" 6 | "test\stm32l4xx_hal_msp.o" 7 | "test\cfap128296d00290.o" 8 | "test\epaper_cfap128296d00290.o" 9 | "test\stm32l4xx_hal_flash.o" 10 | "test\stm32l4xx_hal_i2c_ex.o" 11 | "test\stm32l4xx_hal_tim.o" 12 | "test\stm32l4xx_hal_rcc.o" 13 | "test\stm32l4xx_hal_rcc_ex.o" 14 | "test\stm32l4xx_hal_flash_ex.o" 15 | "test\stm32l4xx_hal_i2c.o" 16 | "test\stm32l4xx_hal_tim_ex.o" 17 | "test\stm32l4xx_hal_pwr.o" 18 | "test\stm32l4xx_hal_flash_ramfunc.o" 19 | "test\stm32l4xx_hal_dma.o" 20 | "test\stm32l4xx_hal_cortex.o" 21 | "test\stm32l4xx_hal.o" 22 | "test\stm32l4xx_hal_gpio.o" 23 | "test\stm32l4xx_hal_pwr_ex.o" 24 | "test\stm32l4xx_hal_uart_ex.o" 25 | "test\stm32l4xx_hal_spi.o" 26 | "test\stm32l4xx_hal_rtc.o" 27 | "test\stm32l4xx_hal_uart.o" 28 | "test\stm32l4xx_hal_rtc_ex.o" 29 | "test\stm32l4xx_hal_spi_ex.o" 30 | "test\stm32l4xx_ll_usb.o" 31 | "test\stm32l4xx_hal_pcd_ex.o" 32 | "test\stm32l4xx_hal_pcd.o" 33 | --library_type=microlib --strict --scatter "test\test.sct" 34 | --diag_suppress=L6329 --summary_stderr --info summarysizes --map --xref --callgraph --symbols 35 | --info sizes --info totals --info unused --info veneers 36 | --list "test.map" -o test\test.axf -------------------------------------------------------------------------------- /stm32L433-test/cube/test/MDK-ARM/test/test.sct: -------------------------------------------------------------------------------- 1 | ; ************************************************************* 2 | ; *** Scatter-Loading Description File generated by uVision *** 3 | ; ************************************************************* 4 | 5 | LR_IROM1 0x08000000 0x00040000 { ; load region size_region 6 | ER_IROM1 0x08000000 0x00040000 { ; load address = execution address 7 | *.o (RESET, +First) 8 | *(InRoot$$Sections) 9 | .ANY (+RO) 10 | } 11 | RW_IRAM1 0x20000000 0x0000C000 { ; RW data 12 | .ANY (+RW +ZI) 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Src/LUTs_for_CFAP128296D00290.h: -------------------------------------------------------------------------------- 1 | #ifndef __LUTS_FOR_CFAP128296D00290_H__ 2 | #define __LUTS_FOR_CFAP128296D00290_H__ 3 | //============================================================================= 4 | // "Arduino" example program for Crystalfontz ePaper. 5 | // 6 | // This project is for the CFAP128296D0-0290 : 7 | // 8 | // https://www.crystalfontz.com/product/cfap128296d00290 9 | //============================================================================= 10 | // Formatted to work with WriteCMD_StringFlash(), first byte is command, 11 | // remainder are data 12 | const unsigned char VCOM_LUT_LUTC[16] = 13 | {0x20,0x14,0x01,0x01,0x05,0x07,0x05,0x0C,0x0C,0x0A,0x04,0x04,0x0A,0x05,0x07,0x05}; 14 | const unsigned char W2W_LUT_LUTWW[16] = 15 | {0x21,0x14,0x01,0x01,0x45,0x07,0x05,0x8C,0x4C,0x0A,0x84,0x44,0x0A,0x85,0x07,0x05}; 16 | const unsigned char B2W_LUT_LUTBW_LUTR[16] = 17 | {0x22,0x14,0x01,0x01,0x05,0x87,0x05,0x8C,0x4C,0x0A,0x84,0x44,0x0A,0x05,0x47,0x05}; 18 | const unsigned char W2B_LUT_LUTWB_LUTW[16] = 19 | {0x23,0x94,0x81,0x01,0x05,0x87,0x05,0x8C,0x4C,0x0A,0x84,0x44,0x0A,0x05,0x07,0x05}; 20 | const unsigned char B2B_LUT_LUTBB_LUTB[16] = 21 | {0x24,0x94,0x81,0x01,0x05,0x87,0x05,0x8C,0x4C,0x0A,0x84,0x44,0x0A,0x05,0x07,0x05}; 22 | //============================================================================= 23 | #endif // __LUTS_FOR_CFAP128296D00290_H__ 24 | -------------------------------------------------------------------------------- /stm32L433-test/cube/test/Src/ePaper_CFAP128296D00290.h: -------------------------------------------------------------------------------- 1 | #ifndef __ePaper_CFAP128296D00290_H__ 2 | #define __ePaper_CFAP128296D00290_H__ 3 | 4 | #include 5 | 6 | #include "stm32l4xx_hal.h" 7 | 8 | #define delay HAL_Delay 9 | extern void digitalWrite(int pin, int value); 10 | #define HIGH GPIO_PIN_SET 11 | #define LOW GPIO_PIN_RESET 12 | 13 | 14 | //============================================================================= 15 | // "Arduino" example program for Crystalfontz ePaper. 16 | // 17 | // This project is for the CFAP128296D0-0290 : 18 | // 19 | // https://www.crystalfontz.com/product/cfap128296d00290 20 | //============================================================================= 21 | // Arduino digital pins used for the e-paper display 22 | #define EPD_BUSSEL GPIO_PIN_1 23 | #define EPD_READY GPIO_PIN_0 24 | #define EPD_RESET GPIO_PIN_2 25 | #define EPD_DC GPIO_PIN_3 26 | #define EPD_CS GPIO_PIN_4 27 | //----------------------------------------------------------------------------- 28 | void ePaper_Init(void); 29 | void Load_Flash_Image_To_Display_RAM(uint16_t width_pixels, 30 | uint16_t height_pixels, 31 | const uint8_t *BW_image, 32 | const uint8_t *red_image); 33 | void ePaper_PowerOff(void); 34 | //============================================================================= 35 | 36 | 37 | #endif // __ePaper_CFAP128296D00290_H__ 38 | -------------------------------------------------------------------------------- /stm32L433-test/kicad/NRF51822-04.pretty/NRF51822-04.kicad_mod: -------------------------------------------------------------------------------- 1 | (module NRF51822-04 (layer F.Cu) (tedit 58C470E9) 2 | (descr http://wireless-tag.com/Public/upload/file/p19u6lm0jr1dl21ffgtki1oeuen3.pdf) 3 | (fp_text reference REF** (at -2.54 0 180) (layer F.SilkS) 4 | (effects (font (size 1 1) (thickness 0.15))) 5 | ) 6 | (fp_text value NRF51822-04 (at -2.54 -1.905) (layer F.Fab) 7 | (effects (font (size 1 1) (thickness 0.15))) 8 | ) 9 | (fp_line (start 9.75 5.5) (end 9.75 -5) (layer F.CrtYd) (width 0.15)) 10 | (fp_line (start -10.25 5.5) (end 9.75 5.5) (layer F.CrtYd) (width 0.15)) 11 | (fp_line (start -10.25 -5) (end -10.25 5.5) (layer F.CrtYd) (width 0.15)) 12 | (fp_line (start 9.75 -5) (end -10.25 -5) (layer F.CrtYd) (width 0.15)) 13 | (fp_line (start 4.8 1.95) (end 4.8 3.675) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start -9.4 1.95) (end -9.4 4.7) (layer F.SilkS) (width 0.15)) 15 | (fp_line (start -9.25 -4.55) (end 9.25 -4.55) (layer F.Fab) (width 0.15)) 16 | (fp_line (start -1.75 4.7) (end 3.15 4.7) (layer F.SilkS) (width 0.15)) 17 | (fp_line (start 9.4 -4.7) (end 9.4 4.7) (layer F.SilkS) (width 0.15)) 18 | (fp_line (start -9.4 4.7) (end -6.75 4.7) (layer F.SilkS) (width 0.15)) 19 | (fp_line (start 5.3 4.7) (end 9.4 4.7) (layer F.SilkS) (width 0.15)) 20 | (fp_line (start -9.4 -4.7) (end -9.4 -4.05) (layer F.SilkS) (width 0.15)) 21 | (fp_line (start -9.4 -4.7) (end 9.4 -4.7) (layer F.SilkS) (width 0.15)) 22 | (fp_line (start 9.25 -4.55) (end 9.25 4.55) (layer F.Fab) (width 0.15)) 23 | (fp_line (start -9.25 4.55) (end 9.25 4.55) (layer F.Fab) (width 0.15)) 24 | (fp_line (start -9.25 -4.55) (end -9.25 4.55) (layer F.Fab) (width 0.15)) 25 | (fp_line (start 4.8 -4.7) (end 4.8 -2.8) (layer F.SilkS) (width 0.15)) 26 | (fp_line (start 4.8 -0.8) (end 4.8 -0.05) (layer F.SilkS) (width 0.15)) 27 | (fp_line (start 4.8 -4.7) (end 4.8 4.7) (layer F.Fab) (width 0.15)) 28 | (pad 1 smd oval (at -9.25 -3.55) (size 1.25 0.6) (layers F.Cu F.Paste F.Mask)) 29 | (pad 2 smd oval (at -9.25 -2.55) (size 1.25 0.6) (layers F.Cu F.Paste F.Mask)) 30 | (pad 3 smd oval (at -9.25 -1.55) (size 1.25 0.6) (layers F.Cu F.Paste F.Mask)) 31 | (pad 4 smd oval (at -9.25 -0.55) (size 1.25 0.6) (layers F.Cu F.Paste F.Mask)) 32 | (pad 5 smd oval (at -9.25 0.45) (size 1.25 0.6) (layers F.Cu F.Paste F.Mask)) 33 | (pad 6 smd oval (at -9.25 1.45) (size 1.25 0.6) (layers F.Cu F.Paste F.Mask)) 34 | (pad 7 smd oval (at -6.25 4.55 90) (size 1.25 0.6) (layers F.Cu F.Paste F.Mask)) 35 | (pad 8 smd oval (at -5.25 4.55 90) (size 1.25 0.6) (layers F.Cu F.Paste F.Mask)) 36 | (pad 9 smd oval (at -4.25 4.55 90) (size 1.25 0.6) (layers F.Cu F.Paste F.Mask)) 37 | (pad 10 smd oval (at -3.25 4.55 90) (size 1.25 0.6) (layers F.Cu F.Paste F.Mask)) 38 | (pad 11 smd oval (at -2.25 4.55 90) (size 1.25 0.6) (layers F.Cu F.Paste F.Mask)) 39 | (pad 12 smd oval (at 3.65 4.55 90) (size 1.25 0.6) (layers F.Cu F.Paste F.Mask)) 40 | (pad 13 smd oval (at 4.8 4.55 90) (size 1.25 0.6) (layers F.Cu F.Paste F.Mask)) 41 | (pad 14 smd rect (at 4.445 0.95) (size 1.5 1.5) (layers F.Cu F.Paste F.Mask)) 42 | (pad 15 smd rect (at 4.445 -1.8) (size 1.5 1.5) (layers F.Cu F.Paste F.Mask)) 43 | ) 44 | -------------------------------------------------------------------------------- /stm32L433-test/kicad/abs07-120-crystal.pretty/crystal.kicad_mod: -------------------------------------------------------------------------------- 1 | (module crystal:crystal (layer F.Cu) (tedit 58F961FA) 2 | (fp_text reference REF** (at 0 2.032) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value crystal (at 0 -2.032) (layer F.Fab) hide 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_line (start -2.032 -1.27) (end 2.032 -1.27) (layer F.SilkS) (width 0.15)) 9 | (fp_line (start 2.032 -1.27) (end 2.032 1.016) (layer F.SilkS) (width 0.15)) 10 | (fp_line (start 2.032 1.016) (end 2.032 1.27) (layer F.SilkS) (width 0.15)) 11 | (fp_line (start 2.032 1.27) (end -2.032 1.27) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start -2.032 1.27) (end -2.032 -1.27) (layer F.SilkS) (width 0.15)) 13 | (pad 1 smd rect (at -1.25 0) (size 1 1.8) (layers F.Cu F.Paste F.Mask)) 14 | (pad 2 smd rect (at 1.25 0) (size 1 1.8) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /stm32L433-test/kicad/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name crystal)(type KiCad)(uri /home/frank/data/projects/nixie-clock/ab18x5-breakout/crystal.pretty)(options "")(descr "")) 3 | (lib (name NRF51822-04)(type KiCad)(uri "$(KIPRJMOD)/NRF51822-04.pretty")(options "")(descr "")) 4 | (lib (name osh)(type KiCad)(uri "$(KIPRJMOD)/osh.pretty")(options "")(descr "")) 5 | ) 6 | -------------------------------------------------------------------------------- /stm32L433-test/kicad/gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/kicad/gerber.zip -------------------------------------------------------------------------------- /stm32L433-test/kicad/gerber/st32l433test-B.SilkS.gbr: -------------------------------------------------------------------------------- 1 | G04 #@! TF.FileFunction,Legend,Bot* 2 | %FSLAX46Y46*% 3 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 4 | G04 Created by KiCad (PCBNEW 4.0.6) date Sun Jun 18 22:19:01 2017* 5 | %MOMM*% 6 | %LPD*% 7 | G01* 8 | G04 APERTURE LIST* 9 | %ADD10C,0.100000*% 10 | %ADD11C,0.120000*% 11 | G04 APERTURE END LIST* 12 | D10* 13 | D11* 14 | X85090000Y-40580000D02* 15 | X100390000Y-40580000D01* 16 | X100390000Y-40580000D02* 17 | X100390000Y-45780000D01* 18 | X100390000Y-45780000D02* 19 | X82490000Y-45780000D01* 20 | X82490000Y-45780000D02* 21 | X82490000Y-43180000D01* 22 | X82490000Y-43180000D02* 23 | X85090000Y-43180000D01* 24 | X85090000Y-43180000D02* 25 | X85090000Y-40580000D01* 26 | X83820000Y-40580000D02* 27 | X82490000Y-40580000D01* 28 | X82490000Y-40580000D02* 29 | X82490000Y-41910000D01* 30 | X61020000Y-72390000D02* 31 | X61020000Y-95310000D01* 32 | X61020000Y-95310000D02* 33 | X55820000Y-95310000D01* 34 | X55820000Y-95310000D02* 35 | X55820000Y-69790000D01* 36 | X55820000Y-69790000D02* 37 | X58420000Y-69790000D01* 38 | X58420000Y-69790000D02* 39 | X58420000Y-72390000D01* 40 | X58420000Y-72390000D02* 41 | X61020000Y-72390000D01* 42 | X61020000Y-71120000D02* 43 | X61020000Y-69790000D01* 44 | X61020000Y-69790000D02* 45 | X59690000Y-69790000D01* 46 | M02* 47 | -------------------------------------------------------------------------------- /stm32L433-test/kicad/gerber/st32l433test-Edge.Cuts.gbr: -------------------------------------------------------------------------------- 1 | G04 #@! TF.FileFunction,Profile,NP* 2 | %FSLAX46Y46*% 3 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 4 | G04 Created by KiCad (PCBNEW 4.0.6) date Sun Jun 18 22:19:01 2017* 5 | %MOMM*% 6 | %LPD*% 7 | G01* 8 | G04 APERTURE LIST* 9 | %ADD10C,0.100000*% 10 | %ADD11C,0.150000*% 11 | G04 APERTURE END LIST* 12 | D10* 13 | D11* 14 | X50800000Y-134620000D02* 15 | X50800000Y-35560000D01* 16 | X149860000Y-134620000D02* 17 | X50800000Y-134620000D01* 18 | X149860000Y-35560000D02* 19 | X149860000Y-134620000D01* 20 | X50800000Y-35560000D02* 21 | X149860000Y-35560000D01* 22 | M02* 23 | -------------------------------------------------------------------------------- /stm32L433-test/kicad/gerber/st32l433test.drl: -------------------------------------------------------------------------------- 1 | M48 2 | METRIC,TZ 3 | T1C0.400 4 | T2C0.900 5 | T3C1.000 6 | % 7 | G90 8 | G05 9 | T1 10 | X68702Y-93362 11 | X74065Y-106458 12 | X77914Y-100765 13 | X78860Y-101640 14 | X80762Y-99012 15 | X80883Y-98209 16 | X83919Y-83611 17 | X84703Y-89877 18 | X84854Y-88727 19 | X88392Y-73406 20 | X88392Y-75946 21 | X91832Y-88674 22 | X92202Y-79502 23 | X92221Y-46091 24 | X93472Y-67564 25 | X97536Y-67564 26 | X98989Y-65995 27 | X101129Y-78580 28 | X101686Y-77855 29 | X101732Y-76490 30 | X102686Y-70384 31 | X104883Y-71300 32 | X104890Y-84152 33 | X105538Y-72574 34 | X107011Y-76274 35 | X107528Y-73224 36 | X110744Y-88138 37 | X112494Y-79819 38 | X113353Y-80066 39 | X114046Y-73914 40 | X117202Y-72725 41 | X118015Y-72652 42 | X118550Y-73764 43 | X120014Y-73446 44 | X123817Y-71346 45 | X123887Y-72224 46 | X124369Y-72885 47 | X124795Y-70848 48 | T2 49 | X86360Y-91440 50 | X88900Y-91440 51 | T3 52 | X57150Y-71120 53 | X57150Y-73660 54 | X57150Y-76200 55 | X57150Y-78740 56 | X57150Y-81280 57 | X57150Y-83820 58 | X57150Y-86360 59 | X57150Y-88900 60 | X57150Y-91440 61 | X57150Y-93980 62 | X59690Y-71120 63 | X59690Y-73660 64 | X59690Y-76200 65 | X59690Y-78740 66 | X59690Y-81280 67 | X59690Y-83820 68 | X59690Y-86360 69 | X59690Y-88900 70 | X59690Y-91440 71 | X59690Y-93980 72 | X63500Y-127000 73 | X66040Y-96520 74 | X68580Y-96520 75 | X73660Y-111760 76 | X73660Y-114300 77 | X73660Y-127000 78 | X76200Y-68580 79 | X76200Y-71120 80 | X76200Y-81280 81 | X76200Y-83820 82 | X76200Y-86360 83 | X76200Y-88900 84 | X76200Y-91440 85 | X83820Y-41910 86 | X83820Y-44450 87 | X86360Y-41910 88 | X86360Y-44450 89 | X86360Y-106680 90 | X88900Y-41910 91 | X88900Y-44450 92 | X88900Y-106680 93 | X88900Y-128270 94 | X91440Y-41910 95 | X91440Y-44450 96 | X91440Y-58420 97 | X91440Y-106680 98 | X91440Y-128270 99 | X93980Y-41910 100 | X93980Y-44450 101 | X93980Y-58420 102 | X93980Y-106680 103 | X93980Y-128270 104 | X96520Y-41910 105 | X96520Y-44450 106 | X96520Y-58420 107 | X96520Y-106680 108 | X96520Y-128270 109 | X99060Y-41910 110 | X99060Y-44450 111 | X99060Y-58420 112 | X99060Y-106680 113 | X99060Y-128270 114 | X101600Y-58420 115 | X101600Y-106680 116 | X101600Y-128270 117 | X104140Y-106680 118 | X104140Y-128270 119 | X106680Y-106680 120 | X106680Y-128270 121 | X109220Y-106680 122 | X109220Y-128270 123 | X118110Y-123190 124 | X118110Y-125730 125 | X121920Y-50800 126 | X121920Y-55880 127 | X121920Y-58420 128 | X121920Y-60960 129 | X121920Y-63500 130 | X121920Y-91440 131 | X121920Y-93980 132 | X121920Y-96520 133 | X121920Y-99060 134 | X121920Y-101600 135 | X121920Y-104140 136 | X121920Y-106680 137 | X124460Y-50800 138 | X129540Y-71120 139 | X132080Y-71120 140 | X134620Y-45720 141 | X134620Y-71120 142 | X137160Y-71120 143 | X137160Y-91440 144 | X137160Y-93980 145 | X137160Y-96520 146 | X137160Y-99060 147 | X137160Y-101600 148 | X137160Y-104140 149 | X137160Y-121920 150 | X139700Y-71120 151 | X144780Y-48260 152 | X144780Y-71120 153 | T0 154 | M30 155 | -------------------------------------------------------------------------------- /stm32L433-test/kicad/st32l433test.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/kicad/st32l433test.bin -------------------------------------------------------------------------------- /stm32L433-test/kicad/st32l433test.pro: -------------------------------------------------------------------------------- 1 | update=Sun 18 Jun 2017 04:27:02 PM CEST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir= 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=74xx 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | LibName30=stm32L433 62 | LibName31=wireless-modules 63 | -------------------------------------------------------------------------------- /stm32L433-test/kicad/st32l433test.rules: -------------------------------------------------------------------------------- 1 | 2 | (rules PCB st32l433test 3 | (snap_angle 4 | fortyfive_degree 5 | ) 6 | (autoroute_settings 7 | (fanout off) 8 | (autoroute on) 9 | (postroute on) 10 | (vias on) 11 | (via_costs 50) 12 | (plane_via_costs 5) 13 | (start_ripup_costs 100) 14 | (start_pass_no 2609) 15 | (layer_rule F.Cu 16 | (active on) 17 | (preferred_direction horizontal) 18 | (preferred_direction_trace_costs 1.0) 19 | (against_preferred_direction_trace_costs 2.0) 20 | ) 21 | (layer_rule B.Cu 22 | (active on) 23 | (preferred_direction vertical) 24 | (preferred_direction_trace_costs 1.0) 25 | (against_preferred_direction_trace_costs 2.0) 26 | ) 27 | ) 28 | (rule 29 | (width 250.0) 30 | (clear 200.2) 31 | (clear 125.0 (type smd_to_turn_gap)) 32 | (clear 50.0 (type smd_smd)) 33 | ) 34 | (padstack "Via[0-1]_600:400_um" 35 | (shape 36 | (circle F.Cu 600.0 0.0 0.0) 37 | ) 38 | (shape 39 | (circle B.Cu 600.0 0.0 0.0) 40 | ) 41 | (attach off) 42 | ) 43 | (via 44 | "Via[0-1]_600:400_um" "Via[0-1]_600:400_um" default 45 | ) 46 | (via 47 | "Via[0-1]_600:400_um-kicad_default" "Via[0-1]_600:400_um" "kicad_default" 48 | ) 49 | (via_rule 50 | default "Via[0-1]_600:400_um" 51 | ) 52 | (via_rule 53 | "kicad_default" "Via[0-1]_600:400_um-kicad_default" 54 | ) 55 | (class default 56 | (clearance_class default) 57 | (via_rule default) 58 | (rule 59 | (width 250.0) 60 | ) 61 | (circuit 62 | (use_layer F.Cu B.Cu) 63 | ) 64 | ) 65 | (class "kicad_default" 66 | "Net-(C1-Pad1)" GND "Net-(C2-Pad1)" "Net-(C3-Pad1)" "Net-(D1-Pad2)" +3V3 PA1 PA2 67 | PA3 PA4 PA5 PA6 PA7 PB0 PB1 PB2 68 | PB4 PB8 PB9 PB10 PB11 PB12 PC13 PH0 69 | PH1 "SPI2-MOSI" "SPI2-MISO" "SPI2-SCK" "I2C1-SDA" "I2C1-SCL" "TIM1-CH1" "Net-(J33-Pad1)" 70 | "Net-(J43-Pad1)" "Net-(J44-Pad1)" "Net-(J45-Pad1)" "Net-(J48-Pad1)" "Net-(J49-Pad1)" "Net-(J50-Pad1)" "Net-(R1-Pad1)" "Net-(R2-Pad2)" 71 | "Net-(J26-Pad2)" "Net-(J27-Pad1)" "Net-(J31-Pad1)" "Net-(J32-Pad1)" "Net-(J40-Pad16)" "Net-(J51-Pad2)" "Net-(J52-Pad1)" "Net-(J53-Pad1)" 72 | "Net-(J54-Pad1)" "Net-(J30-Pad1)" PA11 PA12 73 | (clearance_class "kicad_default") 74 | (via_rule kicad_default) 75 | (rule 76 | (width 250.0) 77 | ) 78 | (circuit 79 | (use_layer F.Cu B.Cu) 80 | ) 81 | ) 82 | ) -------------------------------------------------------------------------------- /stm32L433-test/kicad/stm32L433.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | $CMP STM32L433CCT6 4 | D LQFP48, 256k Flash, 64k SRAM 5 | K STM32 ARM Microcontroller 6 | F http://www.st.com/resource/en/datasheet/stm32l433cc.pdf 7 | $ENDCMP 8 | # 9 | #End Doc Library 10 | -------------------------------------------------------------------------------- /stm32L433-test/kicad/stm32L433.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.3 2 | #encoding utf-8 3 | # 4 | # STM32L433CCT6 5 | # 6 | DEF STM32L433CCT6 U 0 40 Y Y 1 F N 7 | F0 "U" -850 1450 50 H V L BNN 8 | F1 "STM32L433CCT6" 450 -1450 50 H V L BNN 9 | F2 "LQFP48" 50 0 50 H I C CIN 10 | F3 "" 250 -100 50 H I C CNN 11 | DRAW 12 | S -900 1400 1050 -1350 0 1 10 f 13 | X VBAT 1 0 1550 150 D 40 40 1 1 W 14 | X PC13 2 -1050 -1150 150 R 40 40 1 1 B 15 | X PC14-OSC32_IN 3 -1050 1200 150 R 40 40 1 1 B 16 | X PC15-OSC32_OUT 4 -1050 1100 150 R 40 40 1 1 B 17 | X PH0-OSC_IN 5 -1050 950 150 R 40 40 1 1 B 18 | X PH1-OSC_OUT 6 -1050 850 150 R 40 40 1 1 B 19 | X NRST 7 -1050 350 150 R 40 40 1 1 I 20 | X VSSA/VREF- 8 150 -1500 150 U 40 40 1 1 W 21 | X VDDA/VREF+ 9 600 1550 150 D 40 40 1 1 W 22 | X PA0 10 1200 1100 150 L 40 40 1 1 B 23 | X PB2 20 1200 -650 150 L 40 40 1 1 B 24 | X PA9 30 1200 200 150 L 40 40 1 1 B 25 | X PB4 40 1200 -750 150 L 40 40 1 1 B 26 | X PA1 11 1200 1000 150 L 40 40 1 1 B 27 | X PB10 21 -1050 -700 150 R 40 40 1 1 B 28 | X PA10 31 1200 100 150 L 40 40 1 1 B 29 | X PB5 41 1200 -850 150 L 40 40 1 1 B 30 | X PA2 12 1200 900 150 L 40 40 1 1 B 31 | X PB11 22 -1050 -600 150 R 40 40 1 1 B 32 | X PA11 32 1200 0 150 L 40 40 1 1 B 33 | X PB6 42 1200 -950 150 L 40 40 1 1 B 34 | X PA3 13 1200 800 150 L 40 40 1 1 B 35 | X VSS 23 -300 -1500 150 U 40 40 1 1 W 36 | X PA12 33 1200 -100 150 L 40 40 1 1 B 37 | X PB7 43 1200 -1050 150 L 40 40 1 1 B 38 | X PA4 14 1200 700 150 L 40 40 1 1 B 39 | X VDD 24 150 1550 150 D 40 40 1 1 W 40 | X PA13-SWDIO 34 -1050 150 150 R 40 40 1 1 B 41 | X PH4-BOOT0 44 -1050 600 150 R 40 40 1 1 B 42 | X PA5 15 1200 600 150 L 40 40 1 1 B 43 | X PB12 25 -1050 -500 150 R 40 40 1 1 B 44 | X VSS 35 0 -1500 150 U 40 40 1 1 W 45 | X PB8 45 -1050 -900 150 R 40 40 1 1 B 46 | X PA6 16 1200 500 150 L 40 40 1 1 B 47 | X PB13 26 -1050 -400 150 R 40 40 1 1 B 48 | X VDDUSB 36 450 1550 150 D 40 40 1 1 W 49 | X PB9 46 -1050 -800 150 R 40 40 1 1 B 50 | X PA7 17 1200 400 150 L 40 40 1 1 B 51 | X PB14 27 -1050 -300 150 R 40 40 1 1 B 52 | X PA14-SWCLK 37 -1050 250 150 R 40 40 1 1 B 53 | X VSS 47 -150 -1500 150 U 40 40 1 1 W 54 | X PB0 18 1200 -450 150 L 40 40 1 1 B 55 | X PB15 28 -1050 -200 150 R 40 40 1 1 B 56 | X PA15 38 1200 -200 150 L 40 40 1 1 B 57 | X VDD 48 300 1550 150 D 40 40 1 1 W 58 | X PB1 19 1200 -550 150 L 40 40 1 1 B 59 | X PA8 29 1200 300 150 L 40 40 1 1 B 60 | X PB3-SWO 39 -1050 50 150 R 40 40 1 1 B 61 | ENDDRAW 62 | ENDDEF 63 | # 64 | #End Library 65 | -------------------------------------------------------------------------------- /stm32L433-test/kicad/wireless-modules.bck: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /stm32L433-test/kicad/wireless-modules.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /stm32L433-test/microcontroller-pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/microcontroller-pinout.png -------------------------------------------------------------------------------- /stm32L433-test/pwm-24mhz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/pwm-24mhz.png -------------------------------------------------------------------------------- /stm32L433-test/setup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/setup.jpg -------------------------------------------------------------------------------- /stm32L433-test/setup.txt: -------------------------------------------------------------------------------- 1 | +3.3V: 4.7 uF to GND 2 | 1: VBAT: 100 nF to GND 3 | 9: VDDA: 100 nF to GND 4 | 24: VDD: 100 nF to GND 5 | 36: VUSB: 100 nF to GND 6 | 48: VDD: 100 nF to GND 7 | 8 | GND: 9 | 8: VSSA 10 | 23: VSS 11 | 35: VSS 12 | 47: VSS 13 | 14 | 33: BOOT0: 12k to GND 15 | 16 | 17 | ST-Link SWD programming interface: 18 | 19 | 37: TCK 20 | 34: TMS 21 | 7: NRST 22 | 39: SWO 23 | 24 | 25 | 10: PA0 26 | blinking LED 27 | 28 | 29 | 11: PA1: BUSSEL 30 | 12: PA2: RESET 31 | 13: PA3: DC 32 | 14: PA4: CS 33 | 28: PB15: MOSI 34 | 21: PB10: SCLK 35 | 36 | 18: PB0: READY 37 | 38 | 39 | 40 | nRF51882 library from https://github.com/cyrozap/KiCad 41 | -------------------------------------------------------------------------------- /stm32L433-test/st-link-connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/st-link-connector.png -------------------------------------------------------------------------------- /stm32L433-test/st-link-pins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/stm32L433-test/st-link-pins.png -------------------------------------------------------------------------------- /white-400-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/white-400-300.png -------------------------------------------------------------------------------- /white.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/white.bin -------------------------------------------------------------------------------- /white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/white.png -------------------------------------------------------------------------------- /wifi-epaper-400-300.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/wifi-epaper-400-300.bin -------------------------------------------------------------------------------- /wifi-epaper-400-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/wifi-epaper-400-300.png -------------------------------------------------------------------------------- /wifi-epaper.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/wifi-epaper.bin -------------------------------------------------------------------------------- /wifi-epaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBuss/wifi-epaper/300d28d033c315fd64a149a7b83c62e13672214a/wifi-epaper.png --------------------------------------------------------------------------------