├── .gitignore ├── Drivers ├── CMSIS │ ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf │ ├── CMSIS_END_USER_LICENCE_AGREEMENT.rtf │ ├── DSP_Lib │ │ ├── Examples │ │ │ ├── arm_class_marks_example │ │ │ │ ├── ARM │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ └── arm_class_marks_example_f32.c │ │ │ │ └── GCC │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ └── arm_class_marks_example_f32.c │ │ │ ├── arm_convolution_example │ │ │ │ ├── ARM │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ ├── arm_convolution_example_f32.c │ │ │ │ │ ├── math_helper.c │ │ │ │ │ └── math_helper.h │ │ │ │ └── GCC │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ ├── arm_convolution_example_f32.c │ │ │ │ │ ├── math_helper.c │ │ │ │ │ └── math_helper.h │ │ │ ├── arm_dotproduct_example │ │ │ │ ├── ARM │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ └── arm_dotproduct_example_f32.c │ │ │ │ └── GCC │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ └── arm_dotproduct_example_f32.c │ │ │ ├── arm_fft_bin_example │ │ │ │ ├── ARM │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ ├── arm_fft_bin_data.c │ │ │ │ │ └── arm_fft_bin_example_f32.c │ │ │ │ └── GCC │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ ├── arm_fft_bin_data.c │ │ │ │ │ └── arm_fft_bin_example_f32.c │ │ │ ├── arm_fir_example │ │ │ │ └── ARM │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ ├── arm_fir_data.c │ │ │ │ │ ├── arm_fir_example_f32.c │ │ │ │ │ ├── math_helper.c │ │ │ │ │ └── math_helper.h │ │ │ ├── arm_graphic_equalizer_example │ │ │ │ └── ARM │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ ├── arm_graphic_equalizer_data.c │ │ │ │ │ ├── arm_graphic_equalizer_example_q31.c │ │ │ │ │ ├── math_helper.c │ │ │ │ │ └── math_helper.h │ │ │ ├── arm_linear_interp_example │ │ │ │ └── ARM │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ ├── arm_linear_interp_data.c │ │ │ │ │ ├── arm_linear_interp_example_f32.c │ │ │ │ │ ├── math_helper.c │ │ │ │ │ └── math_helper.h │ │ │ ├── arm_matrix_example │ │ │ │ └── ARM │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ ├── arm_matrix_example_f32.c │ │ │ │ │ ├── math_helper.c │ │ │ │ │ └── math_helper.h │ │ │ ├── arm_signal_converge_example │ │ │ │ └── ARM │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ ├── arm_signal_converge_data.c │ │ │ │ │ ├── arm_signal_converge_example_f32.c │ │ │ │ │ ├── math_helper.c │ │ │ │ │ └── math_helper.h │ │ │ ├── arm_sin_cos_example │ │ │ │ └── ARM │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ └── arm_sin_cos_example_f32.c │ │ │ └── arm_variance_example │ │ │ │ └── ARM │ │ │ │ ├── Abstract.txt │ │ │ │ └── arm_variance_example_f32.c │ │ ├── Source │ │ │ ├── BasicMathFunctions │ │ │ │ ├── arm_abs_f32.c │ │ │ │ ├── arm_abs_q15.c │ │ │ │ ├── arm_abs_q31.c │ │ │ │ ├── arm_abs_q7.c │ │ │ │ ├── arm_add_f32.c │ │ │ │ ├── arm_add_q15.c │ │ │ │ ├── arm_add_q31.c │ │ │ │ ├── arm_add_q7.c │ │ │ │ ├── arm_dot_prod_f32.c │ │ │ │ ├── arm_dot_prod_q15.c │ │ │ │ ├── arm_dot_prod_q31.c │ │ │ │ ├── arm_dot_prod_q7.c │ │ │ │ ├── arm_mult_f32.c │ │ │ │ ├── arm_mult_q15.c │ │ │ │ ├── arm_mult_q31.c │ │ │ │ ├── arm_mult_q7.c │ │ │ │ ├── arm_negate_f32.c │ │ │ │ ├── arm_negate_q15.c │ │ │ │ ├── arm_negate_q31.c │ │ │ │ ├── arm_negate_q7.c │ │ │ │ ├── arm_offset_f32.c │ │ │ │ ├── arm_offset_q15.c │ │ │ │ ├── arm_offset_q31.c │ │ │ │ ├── arm_offset_q7.c │ │ │ │ ├── arm_scale_f32.c │ │ │ │ ├── arm_scale_q15.c │ │ │ │ ├── arm_scale_q31.c │ │ │ │ ├── arm_scale_q7.c │ │ │ │ ├── arm_shift_q15.c │ │ │ │ ├── arm_shift_q31.c │ │ │ │ ├── arm_shift_q7.c │ │ │ │ ├── arm_sub_f32.c │ │ │ │ ├── arm_sub_q15.c │ │ │ │ ├── arm_sub_q31.c │ │ │ │ └── arm_sub_q7.c │ │ │ ├── CommonTables │ │ │ │ ├── arm_common_tables.c │ │ │ │ └── arm_const_structs.c │ │ │ ├── ComplexMathFunctions │ │ │ │ ├── arm_cmplx_conj_f32.c │ │ │ │ ├── arm_cmplx_conj_q15.c │ │ │ │ ├── arm_cmplx_conj_q31.c │ │ │ │ ├── arm_cmplx_dot_prod_f32.c │ │ │ │ ├── arm_cmplx_dot_prod_q15.c │ │ │ │ ├── arm_cmplx_dot_prod_q31.c │ │ │ │ ├── arm_cmplx_mag_f32.c │ │ │ │ ├── arm_cmplx_mag_q15.c │ │ │ │ ├── arm_cmplx_mag_q31.c │ │ │ │ ├── arm_cmplx_mag_squared_f32.c │ │ │ │ ├── arm_cmplx_mag_squared_q15.c │ │ │ │ ├── arm_cmplx_mag_squared_q31.c │ │ │ │ ├── arm_cmplx_mult_cmplx_f32.c │ │ │ │ ├── arm_cmplx_mult_cmplx_q15.c │ │ │ │ ├── arm_cmplx_mult_cmplx_q31.c │ │ │ │ ├── arm_cmplx_mult_real_f32.c │ │ │ │ ├── arm_cmplx_mult_real_q15.c │ │ │ │ └── arm_cmplx_mult_real_q31.c │ │ │ ├── ControllerFunctions │ │ │ │ ├── arm_pid_init_f32.c │ │ │ │ ├── arm_pid_init_q15.c │ │ │ │ ├── arm_pid_init_q31.c │ │ │ │ ├── arm_pid_reset_f32.c │ │ │ │ ├── arm_pid_reset_q15.c │ │ │ │ ├── arm_pid_reset_q31.c │ │ │ │ ├── arm_sin_cos_f32.c │ │ │ │ └── arm_sin_cos_q31.c │ │ │ ├── FastMathFunctions │ │ │ │ ├── arm_cos_f32.c │ │ │ │ ├── arm_cos_q15.c │ │ │ │ ├── arm_cos_q31.c │ │ │ │ ├── arm_sin_f32.c │ │ │ │ ├── arm_sin_q15.c │ │ │ │ ├── arm_sin_q31.c │ │ │ │ ├── arm_sqrt_q15.c │ │ │ │ └── arm_sqrt_q31.c │ │ │ ├── FilteringFunctions │ │ │ │ ├── arm_biquad_cascade_df1_32x64_init_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_32x64_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_f32.c │ │ │ │ ├── arm_biquad_cascade_df1_fast_q15.c │ │ │ │ ├── arm_biquad_cascade_df1_fast_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_init_f32.c │ │ │ │ ├── arm_biquad_cascade_df1_init_q15.c │ │ │ │ ├── arm_biquad_cascade_df1_init_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_q15.c │ │ │ │ ├── arm_biquad_cascade_df1_q31.c │ │ │ │ ├── arm_biquad_cascade_df2T_f32.c │ │ │ │ ├── arm_biquad_cascade_df2T_f64.c │ │ │ │ ├── arm_biquad_cascade_df2T_init_f32.c │ │ │ │ ├── arm_biquad_cascade_df2T_init_f64.c │ │ │ │ ├── arm_biquad_cascade_stereo_df2T_f32.c │ │ │ │ ├── arm_biquad_cascade_stereo_df2T_init_f32.c │ │ │ │ ├── arm_conv_f32.c │ │ │ │ ├── arm_conv_fast_opt_q15.c │ │ │ │ ├── arm_conv_fast_q15.c │ │ │ │ ├── arm_conv_fast_q31.c │ │ │ │ ├── arm_conv_opt_q15.c │ │ │ │ ├── arm_conv_opt_q7.c │ │ │ │ ├── arm_conv_partial_f32.c │ │ │ │ ├── arm_conv_partial_fast_opt_q15.c │ │ │ │ ├── arm_conv_partial_fast_q15.c │ │ │ │ ├── arm_conv_partial_fast_q31.c │ │ │ │ ├── arm_conv_partial_opt_q15.c │ │ │ │ ├── arm_conv_partial_opt_q7.c │ │ │ │ ├── arm_conv_partial_q15.c │ │ │ │ ├── arm_conv_partial_q31.c │ │ │ │ ├── arm_conv_partial_q7.c │ │ │ │ ├── arm_conv_q15.c │ │ │ │ ├── arm_conv_q31.c │ │ │ │ ├── arm_conv_q7.c │ │ │ │ ├── arm_correlate_f32.c │ │ │ │ ├── arm_correlate_fast_opt_q15.c │ │ │ │ ├── arm_correlate_fast_q15.c │ │ │ │ ├── arm_correlate_fast_q31.c │ │ │ │ ├── arm_correlate_opt_q15.c │ │ │ │ ├── arm_correlate_opt_q7.c │ │ │ │ ├── arm_correlate_q15.c │ │ │ │ ├── arm_correlate_q31.c │ │ │ │ ├── arm_correlate_q7.c │ │ │ │ ├── arm_fir_decimate_f32.c │ │ │ │ ├── arm_fir_decimate_fast_q15.c │ │ │ │ ├── arm_fir_decimate_fast_q31.c │ │ │ │ ├── arm_fir_decimate_init_f32.c │ │ │ │ ├── arm_fir_decimate_init_q15.c │ │ │ │ ├── arm_fir_decimate_init_q31.c │ │ │ │ ├── arm_fir_decimate_q15.c │ │ │ │ ├── arm_fir_decimate_q31.c │ │ │ │ ├── arm_fir_f32.c │ │ │ │ ├── arm_fir_fast_q15.c │ │ │ │ ├── arm_fir_fast_q31.c │ │ │ │ ├── arm_fir_init_f32.c │ │ │ │ ├── arm_fir_init_q15.c │ │ │ │ ├── arm_fir_init_q31.c │ │ │ │ ├── arm_fir_init_q7.c │ │ │ │ ├── arm_fir_interpolate_f32.c │ │ │ │ ├── arm_fir_interpolate_init_f32.c │ │ │ │ ├── arm_fir_interpolate_init_q15.c │ │ │ │ ├── arm_fir_interpolate_init_q31.c │ │ │ │ ├── arm_fir_interpolate_q15.c │ │ │ │ ├── arm_fir_interpolate_q31.c │ │ │ │ ├── arm_fir_lattice_f32.c │ │ │ │ ├── arm_fir_lattice_init_f32.c │ │ │ │ ├── arm_fir_lattice_init_q15.c │ │ │ │ ├── arm_fir_lattice_init_q31.c │ │ │ │ ├── arm_fir_lattice_q15.c │ │ │ │ ├── arm_fir_lattice_q31.c │ │ │ │ ├── arm_fir_q15.c │ │ │ │ ├── arm_fir_q31.c │ │ │ │ ├── arm_fir_q7.c │ │ │ │ ├── arm_fir_sparse_f32.c │ │ │ │ ├── arm_fir_sparse_init_f32.c │ │ │ │ ├── arm_fir_sparse_init_q15.c │ │ │ │ ├── arm_fir_sparse_init_q31.c │ │ │ │ ├── arm_fir_sparse_init_q7.c │ │ │ │ ├── arm_fir_sparse_q15.c │ │ │ │ ├── arm_fir_sparse_q31.c │ │ │ │ ├── arm_fir_sparse_q7.c │ │ │ │ ├── arm_iir_lattice_f32.c │ │ │ │ ├── arm_iir_lattice_init_f32.c │ │ │ │ ├── arm_iir_lattice_init_q15.c │ │ │ │ ├── arm_iir_lattice_init_q31.c │ │ │ │ ├── arm_iir_lattice_q15.c │ │ │ │ ├── arm_iir_lattice_q31.c │ │ │ │ ├── arm_lms_f32.c │ │ │ │ ├── arm_lms_init_f32.c │ │ │ │ ├── arm_lms_init_q15.c │ │ │ │ ├── arm_lms_init_q31.c │ │ │ │ ├── arm_lms_norm_f32.c │ │ │ │ ├── arm_lms_norm_init_f32.c │ │ │ │ ├── arm_lms_norm_init_q15.c │ │ │ │ ├── arm_lms_norm_init_q31.c │ │ │ │ ├── arm_lms_norm_q15.c │ │ │ │ ├── arm_lms_norm_q31.c │ │ │ │ ├── arm_lms_q15.c │ │ │ │ └── arm_lms_q31.c │ │ │ ├── MatrixFunctions │ │ │ │ ├── arm_mat_add_f32.c │ │ │ │ ├── arm_mat_add_q15.c │ │ │ │ ├── arm_mat_add_q31.c │ │ │ │ ├── arm_mat_cmplx_mult_f32.c │ │ │ │ ├── arm_mat_cmplx_mult_q15.c │ │ │ │ ├── arm_mat_cmplx_mult_q31.c │ │ │ │ ├── arm_mat_init_f32.c │ │ │ │ ├── arm_mat_init_q15.c │ │ │ │ ├── arm_mat_init_q31.c │ │ │ │ ├── arm_mat_inverse_f32.c │ │ │ │ ├── arm_mat_inverse_f64.c │ │ │ │ ├── arm_mat_mult_f32.c │ │ │ │ ├── arm_mat_mult_fast_q15.c │ │ │ │ ├── arm_mat_mult_fast_q31.c │ │ │ │ ├── arm_mat_mult_q15.c │ │ │ │ ├── arm_mat_mult_q31.c │ │ │ │ ├── arm_mat_scale_f32.c │ │ │ │ ├── arm_mat_scale_q15.c │ │ │ │ ├── arm_mat_scale_q31.c │ │ │ │ ├── arm_mat_sub_f32.c │ │ │ │ ├── arm_mat_sub_q15.c │ │ │ │ ├── arm_mat_sub_q31.c │ │ │ │ ├── arm_mat_trans_f32.c │ │ │ │ ├── arm_mat_trans_q15.c │ │ │ │ └── arm_mat_trans_q31.c │ │ │ ├── StatisticsFunctions │ │ │ │ ├── arm_max_f32.c │ │ │ │ ├── arm_max_q15.c │ │ │ │ ├── arm_max_q31.c │ │ │ │ ├── arm_max_q7.c │ │ │ │ ├── arm_mean_f32.c │ │ │ │ ├── arm_mean_q15.c │ │ │ │ ├── arm_mean_q31.c │ │ │ │ ├── arm_mean_q7.c │ │ │ │ ├── arm_min_f32.c │ │ │ │ ├── arm_min_q15.c │ │ │ │ ├── arm_min_q31.c │ │ │ │ ├── arm_min_q7.c │ │ │ │ ├── arm_power_f32.c │ │ │ │ ├── arm_power_q15.c │ │ │ │ ├── arm_power_q31.c │ │ │ │ ├── arm_power_q7.c │ │ │ │ ├── arm_rms_f32.c │ │ │ │ ├── arm_rms_q15.c │ │ │ │ ├── arm_rms_q31.c │ │ │ │ ├── arm_std_f32.c │ │ │ │ ├── arm_std_q15.c │ │ │ │ ├── arm_std_q31.c │ │ │ │ ├── arm_var_f32.c │ │ │ │ ├── arm_var_q15.c │ │ │ │ └── arm_var_q31.c │ │ │ ├── SupportFunctions │ │ │ │ ├── arm_copy_f32.c │ │ │ │ ├── arm_copy_q15.c │ │ │ │ ├── arm_copy_q31.c │ │ │ │ ├── arm_copy_q7.c │ │ │ │ ├── arm_fill_f32.c │ │ │ │ ├── arm_fill_q15.c │ │ │ │ ├── arm_fill_q31.c │ │ │ │ ├── arm_fill_q7.c │ │ │ │ ├── arm_float_to_q15.c │ │ │ │ ├── arm_float_to_q31.c │ │ │ │ ├── arm_float_to_q7.c │ │ │ │ ├── arm_q15_to_float.c │ │ │ │ ├── arm_q15_to_q31.c │ │ │ │ ├── arm_q15_to_q7.c │ │ │ │ ├── arm_q31_to_float.c │ │ │ │ ├── arm_q31_to_q15.c │ │ │ │ ├── arm_q31_to_q7.c │ │ │ │ ├── arm_q7_to_float.c │ │ │ │ ├── arm_q7_to_q15.c │ │ │ │ └── arm_q7_to_q31.c │ │ │ └── TransformFunctions │ │ │ │ ├── arm_bitreversal.c │ │ │ │ ├── arm_bitreversal2.S │ │ │ │ ├── arm_cfft_f32.c │ │ │ │ ├── arm_cfft_q15.c │ │ │ │ ├── arm_cfft_q31.c │ │ │ │ ├── arm_cfft_radix2_f32.c │ │ │ │ ├── arm_cfft_radix2_init_f32.c │ │ │ │ ├── arm_cfft_radix2_init_q15.c │ │ │ │ ├── arm_cfft_radix2_init_q31.c │ │ │ │ ├── arm_cfft_radix2_q15.c │ │ │ │ ├── arm_cfft_radix2_q31.c │ │ │ │ ├── arm_cfft_radix4_f32.c │ │ │ │ ├── arm_cfft_radix4_init_f32.c │ │ │ │ ├── arm_cfft_radix4_init_q15.c │ │ │ │ ├── arm_cfft_radix4_init_q31.c │ │ │ │ ├── arm_cfft_radix4_q15.c │ │ │ │ ├── arm_cfft_radix4_q31.c │ │ │ │ ├── arm_cfft_radix8_f32.c │ │ │ │ ├── arm_dct4_f32.c │ │ │ │ ├── arm_dct4_init_f32.c │ │ │ │ ├── arm_dct4_init_q15.c │ │ │ │ ├── arm_dct4_init_q31.c │ │ │ │ ├── arm_dct4_q15.c │ │ │ │ ├── arm_dct4_q31.c │ │ │ │ ├── arm_rfft_f32.c │ │ │ │ ├── arm_rfft_fast_f32.c │ │ │ │ ├── arm_rfft_fast_init_f32.c │ │ │ │ ├── arm_rfft_init_f32.c │ │ │ │ ├── arm_rfft_init_q15.c │ │ │ │ ├── arm_rfft_init_q31.c │ │ │ │ ├── arm_rfft_q15.c │ │ │ │ └── arm_rfft_q31.c │ │ └── license.txt │ ├── Device │ │ └── ST │ │ │ └── STM32F1xx │ │ │ ├── Include │ │ │ ├── stm32f100xb.h │ │ │ ├── stm32f100xe.h │ │ │ ├── stm32f101x6.h │ │ │ ├── stm32f101xb.h │ │ │ ├── stm32f101xe.h │ │ │ ├── stm32f101xg.h │ │ │ ├── stm32f102x6.h │ │ │ ├── stm32f102xb.h │ │ │ ├── stm32f103x6.h │ │ │ ├── stm32f103xb.h │ │ │ ├── stm32f103xe.h │ │ │ ├── stm32f103xg.h │ │ │ ├── stm32f105xc.h │ │ │ ├── stm32f107xc.h │ │ │ ├── stm32f1xx.h │ │ │ └── system_stm32f1xx.h │ │ │ ├── Release_Notes.html │ │ │ └── Source │ │ │ └── Templates │ │ │ ├── arm │ │ │ ├── startup_stm32f100xb.s │ │ │ ├── startup_stm32f100xe.s │ │ │ ├── startup_stm32f101x6.s │ │ │ ├── startup_stm32f101xb.s │ │ │ ├── startup_stm32f101xe.s │ │ │ ├── startup_stm32f101xg.s │ │ │ ├── startup_stm32f102x6.s │ │ │ ├── startup_stm32f102xb.s │ │ │ ├── startup_stm32f103x6.s │ │ │ ├── startup_stm32f103xb.s │ │ │ ├── startup_stm32f103xe.s │ │ │ ├── startup_stm32f103xg.s │ │ │ ├── startup_stm32f105xc.s │ │ │ └── startup_stm32f107xc.s │ │ │ ├── gcc │ │ │ ├── linker │ │ │ │ ├── STM32F100XB_FLASH.ld │ │ │ │ ├── STM32F100XE_FLASH.ld │ │ │ │ ├── STM32F101X6_FLASH.ld │ │ │ │ ├── STM32F101XB_FLASH.ld │ │ │ │ ├── STM32F101XE_FLASH.ld │ │ │ │ ├── STM32F101XG_FLASH.ld │ │ │ │ ├── STM32F102X6_FLASH.ld │ │ │ │ ├── STM32F102XB_FLASH.ld │ │ │ │ ├── STM32F103X6_FLASH.ld │ │ │ │ ├── STM32F103XB_FLASH.ld │ │ │ │ ├── STM32F103XE_FLASH.ld │ │ │ │ ├── STM32F103XG_FLASH.ld │ │ │ │ ├── STM32F105XC_FLASH.ld │ │ │ │ └── STM32F107XC_FLASH.ld │ │ │ ├── startup_stm32f100xb.s │ │ │ ├── startup_stm32f100xe.s │ │ │ ├── startup_stm32f101x6.s │ │ │ ├── startup_stm32f101xb.s │ │ │ ├── startup_stm32f101xe.s │ │ │ ├── startup_stm32f101xg.s │ │ │ ├── startup_stm32f102x6.s │ │ │ ├── startup_stm32f102xb.s │ │ │ ├── startup_stm32f103x6.s │ │ │ ├── startup_stm32f103xb.s │ │ │ ├── startup_stm32f103xe.s │ │ │ ├── startup_stm32f103xg.s │ │ │ ├── startup_stm32f105xc.s │ │ │ └── startup_stm32f107xc.s │ │ │ ├── iar │ │ │ ├── linker │ │ │ │ ├── stm32f100xb_flash.icf │ │ │ │ ├── stm32f100xb_sram.icf │ │ │ │ ├── stm32f100xe_flash.icf │ │ │ │ ├── stm32f100xe_sram.icf │ │ │ │ ├── stm32f101x6_flash.icf │ │ │ │ ├── stm32f101x6_sram.icf │ │ │ │ ├── stm32f101xb_flash.icf │ │ │ │ ├── stm32f101xb_sram.icf │ │ │ │ ├── stm32f101xe_flash.icf │ │ │ │ ├── stm32f101xe_sram.icf │ │ │ │ ├── stm32f101xg_flash.icf │ │ │ │ ├── stm32f101xg_sram.icf │ │ │ │ ├── stm32f102x6_flash.icf │ │ │ │ ├── stm32f102x6_sram.icf │ │ │ │ ├── stm32f102xb_flash.icf │ │ │ │ ├── stm32f102xb_sram.icf │ │ │ │ ├── stm32f103x6_flash.icf │ │ │ │ ├── stm32f103x6_sram.icf │ │ │ │ ├── stm32f103xb_flash.icf │ │ │ │ ├── stm32f103xb_sram.icf │ │ │ │ ├── stm32f103xe_flash.icf │ │ │ │ ├── stm32f103xe_sram.icf │ │ │ │ ├── stm32f103xg_flash.icf │ │ │ │ ├── stm32f103xg_sram.icf │ │ │ │ ├── stm32f105xc_flash.icf │ │ │ │ ├── stm32f105xc_sram.icf │ │ │ │ ├── stm32f107xc_flash.icf │ │ │ │ └── stm32f107xc_sram.icf │ │ │ ├── startup_stm32f100xb.s │ │ │ ├── startup_stm32f100xe.s │ │ │ ├── startup_stm32f101x6.s │ │ │ ├── startup_stm32f101xb.s │ │ │ ├── startup_stm32f101xe.s │ │ │ ├── startup_stm32f101xg.s │ │ │ ├── startup_stm32f102x6.s │ │ │ ├── startup_stm32f102xb.s │ │ │ ├── startup_stm32f103x6.s │ │ │ ├── startup_stm32f103xb.s │ │ │ ├── startup_stm32f103xe.s │ │ │ ├── startup_stm32f103xg.s │ │ │ ├── startup_stm32f105xc.s │ │ │ └── startup_stm32f107xc.s │ │ │ └── system_stm32f1xx.c │ ├── Documentation │ │ ├── Core │ │ │ └── html │ │ │ │ ├── CMSIS_CORE_Files.png │ │ │ │ ├── CMSIS_CORE_Files_user.png │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ ├── _c_o_r_e__m_i_s_r_a__exceptions_pg.html │ │ │ │ ├── _reg_map_pg.html │ │ │ │ ├── _templates_pg.html │ │ │ │ ├── _templates_pg.js │ │ │ │ ├── _using__a_r_m_pg.html │ │ │ │ ├── _using__c_m_s_i_s.html │ │ │ │ ├── _using__v_t_o_r_pg.html │ │ │ │ ├── _using_pg.html │ │ │ │ ├── _using_pg.js │ │ │ │ ├── annotated.html │ │ │ │ ├── annotated.js │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── check.png │ │ │ │ ├── classes.html │ │ │ │ ├── closed.png │ │ │ │ ├── cmsis.css │ │ │ │ ├── core_revision_history.html │ │ │ │ ├── device_h_pg.html │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.png │ │ │ │ ├── dynsections.js │ │ │ │ ├── ftv2blank.png │ │ │ │ ├── ftv2cl.png │ │ │ │ ├── ftv2doc.png │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ ├── ftv2folderopen.png │ │ │ │ ├── ftv2lastnode.png │ │ │ │ ├── ftv2link.png │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ ├── ftv2mnode.png │ │ │ │ ├── ftv2mo.png │ │ │ │ ├── ftv2node.png │ │ │ │ ├── ftv2ns.png │ │ │ │ ├── ftv2plastnode.png │ │ │ │ ├── ftv2pnode.png │ │ │ │ ├── ftv2splitbar.png │ │ │ │ ├── ftv2vertline.png │ │ │ │ ├── functions.html │ │ │ │ ├── functions_vars.html │ │ │ │ ├── globals.html │ │ │ │ ├── globals_defs.html │ │ │ │ ├── globals_enum.html │ │ │ │ ├── globals_eval.html │ │ │ │ ├── globals_func.html │ │ │ │ ├── globals_vars.html │ │ │ │ ├── group___core___register__gr.html │ │ │ │ ├── group___core___register__gr.js │ │ │ │ ├── group___dcache__functions__m7.html │ │ │ │ ├── group___dcache__functions__m7.js │ │ │ │ ├── group___i_t_m___debug__gr.html │ │ │ │ ├── group___i_t_m___debug__gr.js │ │ │ │ ├── group___icache__functions__m7.html │ │ │ │ ├── group___icache__functions__m7.js │ │ │ │ ├── group___n_v_i_c__gr.html │ │ │ │ ├── group___n_v_i_c__gr.js │ │ │ │ ├── group___sys_tick__gr.html │ │ │ │ ├── group___sys_tick__gr.js │ │ │ │ ├── group__cache__functions__m7.html │ │ │ │ ├── group__cache__functions__m7.js │ │ │ │ ├── group__fpu__functions__m7.html │ │ │ │ ├── group__fpu__functions__m7.js │ │ │ │ ├── group__intrinsic___c_p_u__gr.html │ │ │ │ ├── group__intrinsic___c_p_u__gr.js │ │ │ │ ├── group__intrinsic___s_i_m_d__gr.html │ │ │ │ ├── group__intrinsic___s_i_m_d__gr.js │ │ │ │ ├── group__peripheral__gr.html │ │ │ │ ├── group__peripheral__gr.js │ │ │ │ ├── group__system__init__gr.html │ │ │ │ ├── group__system__init__gr.js │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── modules.html │ │ │ │ ├── modules.js │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── navtree.css │ │ │ │ ├── navtree.js │ │ │ │ ├── navtreeindex0.js │ │ │ │ ├── navtreeindex1.js │ │ │ │ ├── open.png │ │ │ │ ├── pages.html │ │ │ │ ├── printComponentTabs.js │ │ │ │ ├── resize.js │ │ │ │ ├── search.css │ │ │ │ ├── search │ │ │ │ ├── all_5f.html │ │ │ │ ├── all_5f.js │ │ │ │ ├── all_61.html │ │ │ │ ├── all_61.js │ │ │ │ ├── all_62.html │ │ │ │ ├── all_62.js │ │ │ │ ├── all_63.html │ │ │ │ ├── all_63.js │ │ │ │ ├── all_64.html │ │ │ │ ├── all_64.js │ │ │ │ ├── all_65.html │ │ │ │ ├── all_65.js │ │ │ │ ├── all_66.html │ │ │ │ ├── all_66.js │ │ │ │ ├── all_68.html │ │ │ │ ├── all_68.js │ │ │ │ ├── all_69.html │ │ │ │ ├── all_69.js │ │ │ │ ├── all_6c.html │ │ │ │ ├── all_6c.js │ │ │ │ ├── all_6d.html │ │ │ │ ├── all_6d.js │ │ │ │ ├── all_6e.html │ │ │ │ ├── all_6e.js │ │ │ │ ├── all_6f.html │ │ │ │ ├── all_6f.js │ │ │ │ ├── all_70.html │ │ │ │ ├── all_70.js │ │ │ │ ├── all_71.html │ │ │ │ ├── all_71.js │ │ │ │ ├── all_72.html │ │ │ │ ├── all_72.js │ │ │ │ ├── all_73.html │ │ │ │ ├── all_73.js │ │ │ │ ├── all_74.html │ │ │ │ ├── all_74.js │ │ │ │ ├── all_75.html │ │ │ │ ├── all_75.js │ │ │ │ ├── all_76.html │ │ │ │ ├── all_76.js │ │ │ │ ├── all_77.html │ │ │ │ ├── all_77.js │ │ │ │ ├── all_78.html │ │ │ │ ├── all_78.js │ │ │ │ ├── all_7a.html │ │ │ │ ├── all_7a.js │ │ │ │ ├── classes_61.html │ │ │ │ ├── classes_61.js │ │ │ │ ├── classes_63.html │ │ │ │ ├── classes_63.js │ │ │ │ ├── classes_64.html │ │ │ │ ├── classes_64.js │ │ │ │ ├── classes_66.html │ │ │ │ ├── classes_66.js │ │ │ │ ├── classes_69.html │ │ │ │ ├── classes_69.js │ │ │ │ ├── classes_6d.html │ │ │ │ ├── classes_6d.js │ │ │ │ ├── classes_6e.html │ │ │ │ ├── classes_6e.js │ │ │ │ ├── classes_73.html │ │ │ │ ├── classes_73.js │ │ │ │ ├── classes_74.html │ │ │ │ ├── classes_74.js │ │ │ │ ├── classes_78.html │ │ │ │ ├── classes_78.js │ │ │ │ ├── close.png │ │ │ │ ├── enums_69.html │ │ │ │ ├── enums_69.js │ │ │ │ ├── enumvalues_62.html │ │ │ │ ├── enumvalues_62.js │ │ │ │ ├── enumvalues_64.html │ │ │ │ ├── enumvalues_64.js │ │ │ │ ├── enumvalues_68.html │ │ │ │ ├── enumvalues_68.js │ │ │ │ ├── enumvalues_6d.html │ │ │ │ ├── enumvalues_6d.js │ │ │ │ ├── enumvalues_6e.html │ │ │ │ ├── enumvalues_6e.js │ │ │ │ ├── enumvalues_70.html │ │ │ │ ├── enumvalues_70.js │ │ │ │ ├── enumvalues_73.html │ │ │ │ ├── enumvalues_73.js │ │ │ │ ├── enumvalues_75.html │ │ │ │ ├── enumvalues_75.js │ │ │ │ ├── enumvalues_77.html │ │ │ │ ├── enumvalues_77.js │ │ │ │ ├── files_63.html │ │ │ │ ├── files_63.js │ │ │ │ ├── files_6d.html │ │ │ │ ├── files_6d.js │ │ │ │ ├── files_6f.html │ │ │ │ ├── files_6f.js │ │ │ │ ├── files_72.html │ │ │ │ ├── files_72.js │ │ │ │ ├── files_74.html │ │ │ │ ├── files_74.js │ │ │ │ ├── files_75.html │ │ │ │ ├── files_75.js │ │ │ │ ├── functions_5f.html │ │ │ │ ├── functions_5f.js │ │ │ │ ├── functions_69.html │ │ │ │ ├── functions_69.js │ │ │ │ ├── functions_6e.html │ │ │ │ ├── functions_6e.js │ │ │ │ ├── functions_73.html │ │ │ │ ├── functions_73.js │ │ │ │ ├── groups_63.html │ │ │ │ ├── groups_63.js │ │ │ │ ├── groups_64.html │ │ │ │ ├── groups_64.js │ │ │ │ ├── groups_66.html │ │ │ │ ├── groups_66.js │ │ │ │ ├── groups_69.html │ │ │ │ ├── groups_69.js │ │ │ │ ├── groups_70.html │ │ │ │ ├── groups_70.js │ │ │ │ ├── groups_73.html │ │ │ │ ├── groups_73.js │ │ │ │ ├── mag_sel.png │ │ │ │ ├── nomatches.html │ │ │ │ ├── pages_62.html │ │ │ │ ├── pages_62.js │ │ │ │ ├── pages_64.html │ │ │ │ ├── pages_64.js │ │ │ │ ├── pages_6d.html │ │ │ │ ├── pages_6d.js │ │ │ │ ├── pages_6f.html │ │ │ │ ├── pages_6f.js │ │ │ │ ├── pages_72.html │ │ │ │ ├── pages_72.js │ │ │ │ ├── pages_73.html │ │ │ │ ├── pages_73.js │ │ │ │ ├── pages_74.html │ │ │ │ ├── pages_74.js │ │ │ │ ├── pages_75.html │ │ │ │ ├── pages_75.js │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── search_l.png │ │ │ │ ├── search_m.png │ │ │ │ ├── search_r.png │ │ │ │ ├── variables_5f.html │ │ │ │ ├── variables_5f.js │ │ │ │ ├── variables_61.html │ │ │ │ ├── variables_61.js │ │ │ │ ├── variables_62.html │ │ │ │ ├── variables_62.js │ │ │ │ ├── variables_63.html │ │ │ │ ├── variables_63.js │ │ │ │ ├── variables_64.html │ │ │ │ ├── variables_64.js │ │ │ │ ├── variables_65.html │ │ │ │ ├── variables_65.js │ │ │ │ ├── variables_66.html │ │ │ │ ├── variables_66.js │ │ │ │ ├── variables_68.html │ │ │ │ ├── variables_68.js │ │ │ │ ├── variables_69.html │ │ │ │ ├── variables_69.js │ │ │ │ ├── variables_6c.html │ │ │ │ ├── variables_6c.js │ │ │ │ ├── variables_6d.html │ │ │ │ ├── variables_6d.js │ │ │ │ ├── variables_6e.html │ │ │ │ ├── variables_6e.js │ │ │ │ ├── variables_70.html │ │ │ │ ├── variables_70.js │ │ │ │ ├── variables_71.html │ │ │ │ ├── variables_71.js │ │ │ │ ├── variables_72.html │ │ │ │ ├── variables_72.js │ │ │ │ ├── variables_73.html │ │ │ │ ├── variables_73.js │ │ │ │ ├── variables_74.html │ │ │ │ ├── variables_74.js │ │ │ │ ├── variables_75.html │ │ │ │ ├── variables_75.js │ │ │ │ ├── variables_76.html │ │ │ │ ├── variables_76.js │ │ │ │ ├── variables_77.html │ │ │ │ ├── variables_77.js │ │ │ │ ├── variables_7a.html │ │ │ │ └── variables_7a.js │ │ │ │ ├── startup_s_pg.html │ │ │ │ ├── struct_core_debug___type.html │ │ │ │ ├── struct_core_debug___type.js │ │ │ │ ├── struct_d_w_t___type.html │ │ │ │ ├── struct_d_w_t___type.js │ │ │ │ ├── struct_f_p_u___type.html │ │ │ │ ├── struct_f_p_u___type.js │ │ │ │ ├── struct_i_t_m___type.html │ │ │ │ ├── struct_i_t_m___type.js │ │ │ │ ├── struct_m_p_u___type.html │ │ │ │ ├── struct_m_p_u___type.js │ │ │ │ ├── struct_n_v_i_c___type.html │ │ │ │ ├── struct_n_v_i_c___type.js │ │ │ │ ├── struct_s_c_b___type.html │ │ │ │ ├── struct_s_c_b___type.js │ │ │ │ ├── struct_s_cn_s_c_b___type.html │ │ │ │ ├── struct_s_cn_s_c_b___type.js │ │ │ │ ├── struct_sys_tick___type.html │ │ │ │ ├── struct_sys_tick___type.js │ │ │ │ ├── struct_t_p_i___type.html │ │ │ │ ├── struct_t_p_i___type.js │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── system_c_pg.html │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ ├── tab_topnav.png │ │ │ │ ├── tabs.css │ │ │ │ ├── union_a_p_s_r___type.html │ │ │ │ ├── union_a_p_s_r___type.js │ │ │ │ ├── union_c_o_n_t_r_o_l___type.html │ │ │ │ ├── union_c_o_n_t_r_o_l___type.js │ │ │ │ ├── union_i_p_s_r___type.html │ │ │ │ ├── union_i_p_s_r___type.js │ │ │ │ ├── unionx_p_s_r___type.html │ │ │ │ └── unionx_p_s_r___type.js │ │ ├── DSP │ │ │ └── html │ │ │ │ ├── Biquad.gif │ │ │ │ ├── BiquadCascade.gif │ │ │ │ ├── BiquadDF2Transposed.gif │ │ │ │ ├── BiquadPostshift.gif │ │ │ │ ├── CFFT.gif │ │ │ │ ├── CFFTQ15.gif │ │ │ │ ├── CFFTQ31.gif │ │ │ │ ├── CIFFTQ15.gif │ │ │ │ ├── CIFFTQ31.gif │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ ├── Convolution.gif │ │ │ │ ├── ConvolutionEquation.gif │ │ │ │ ├── CorrelateEquation.gif │ │ │ │ ├── DCT4.gif │ │ │ │ ├── DCT4Equation.gif │ │ │ │ ├── FFTBin.gif │ │ │ │ ├── FFTBinInput.gif │ │ │ │ ├── FFTBinOutput.gif │ │ │ │ ├── FIR.gif │ │ │ │ ├── FIRDecimator.gif │ │ │ │ ├── FIRInterpolator.gif │ │ │ │ ├── FIRLPF_coeffs.gif │ │ │ │ ├── FIRLPF_input.gif │ │ │ │ ├── FIRLPF_output.gif │ │ │ │ ├── FIRLPF_response.gif │ │ │ │ ├── FIRLPF_signalflow.gif │ │ │ │ ├── FIRLattice.gif │ │ │ │ ├── FIRSparse.gif │ │ │ │ ├── GEQ_allbandresponse.gif │ │ │ │ ├── GEQ_bandresponse.gif │ │ │ │ ├── GEQ_inputchirp.gif │ │ │ │ ├── GEQ_outputchirp.gif │ │ │ │ ├── GEQ_signalflow.gif │ │ │ │ ├── IDCT4Equation.gif │ │ │ │ ├── IIRLattice.gif │ │ │ │ ├── LMS.gif │ │ │ │ ├── LinearInterp.gif │ │ │ │ ├── MatrixAddition.gif │ │ │ │ ├── MatrixInverse.gif │ │ │ │ ├── MatrixMultiplication.gif │ │ │ │ ├── MatrixScale.gif │ │ │ │ ├── MatrixSubtraction.gif │ │ │ │ ├── MatrixTranspose.gif │ │ │ │ ├── PID.gif │ │ │ │ ├── RFFT.gif │ │ │ │ ├── RFFTQ15.gif │ │ │ │ ├── RFFTQ31.gif │ │ │ │ ├── RIFFT.gif │ │ │ │ ├── RIFFTQ15.gif │ │ │ │ ├── RIFFTQ31.gif │ │ │ │ ├── SignalFlow.gif │ │ │ │ ├── Variance.gif │ │ │ │ ├── _a_r_m_2arm__class__marks__example__f32_8c.html │ │ │ │ ├── _a_r_m_2arm__convolution__example__f32_8c.html │ │ │ │ ├── _a_r_m_2arm__dotproduct__example__f32_8c.html │ │ │ │ ├── _a_r_m_2arm__fft__bin__data_8c.html │ │ │ │ ├── _a_r_m_2arm__fft__bin__example__f32_8c.html │ │ │ │ ├── _change_01_log_8txt.html │ │ │ │ ├── _change_log_pg.html │ │ │ │ ├── _g_c_c_2arm__class__marks__example__f32_8c.html │ │ │ │ ├── _g_c_c_2arm__convolution__example__f32_8c.html │ │ │ │ ├── _g_c_c_2arm__dotproduct__example__f32_8c.html │ │ │ │ ├── _g_c_c_2arm__fft__bin__data_8c.html │ │ │ │ ├── _g_c_c_2arm__fft__bin__example__f32_8c.html │ │ │ │ ├── annotated.html │ │ │ │ ├── annotated.js │ │ │ │ ├── arm__abs__f32_8c.html │ │ │ │ ├── arm__abs__q15_8c.html │ │ │ │ ├── arm__abs__q31_8c.html │ │ │ │ ├── arm__abs__q7_8c.html │ │ │ │ ├── arm__add__f32_8c.html │ │ │ │ ├── arm__add__q15_8c.html │ │ │ │ ├── arm__add__q31_8c.html │ │ │ │ ├── arm__add__q7_8c.html │ │ │ │ ├── arm__biquad__cascade__df1__32x64__init__q31_8c.html │ │ │ │ ├── arm__biquad__cascade__df1__32x64__q31_8c.html │ │ │ │ ├── arm__biquad__cascade__df1__f32_8c.html │ │ │ │ ├── arm__biquad__cascade__df1__fast__q15_8c.html │ │ │ │ ├── arm__biquad__cascade__df1__fast__q31_8c.html │ │ │ │ ├── arm__biquad__cascade__df1__init__f32_8c.html │ │ │ │ ├── arm__biquad__cascade__df1__init__q15_8c.html │ │ │ │ ├── arm__biquad__cascade__df1__init__q31_8c.html │ │ │ │ ├── arm__biquad__cascade__df1__q15_8c.html │ │ │ │ ├── arm__biquad__cascade__df1__q31_8c.html │ │ │ │ ├── arm__biquad__cascade__df2_t__f32_8c.html │ │ │ │ ├── arm__biquad__cascade__df2_t__f64_8c.html │ │ │ │ ├── arm__biquad__cascade__df2_t__init__f32_8c.html │ │ │ │ ├── arm__biquad__cascade__df2_t__init__f64_8c.html │ │ │ │ ├── arm__biquad__cascade__stereo__df2_t__f32_8c.html │ │ │ │ ├── arm__biquad__cascade__stereo__df2_t__init__f32_8c.html │ │ │ │ ├── arm__bitreversal_8c.html │ │ │ │ ├── arm__cfft__f32_8c.html │ │ │ │ ├── arm__cfft__q15_8c.html │ │ │ │ ├── arm__cfft__q31_8c.html │ │ │ │ ├── arm__cfft__radix2__f32_8c.html │ │ │ │ ├── arm__cfft__radix2__init__f32_8c.html │ │ │ │ ├── arm__cfft__radix2__init__q15_8c.html │ │ │ │ ├── arm__cfft__radix2__init__q31_8c.html │ │ │ │ ├── arm__cfft__radix2__q15_8c.html │ │ │ │ ├── arm__cfft__radix2__q31_8c.html │ │ │ │ ├── arm__cfft__radix4__f32_8c.html │ │ │ │ ├── arm__cfft__radix4__init__f32_8c.html │ │ │ │ ├── arm__cfft__radix4__init__q15_8c.html │ │ │ │ ├── arm__cfft__radix4__init__q31_8c.html │ │ │ │ ├── arm__cfft__radix4__q15_8c.html │ │ │ │ ├── arm__cfft__radix4__q31_8c.html │ │ │ │ ├── arm__cfft__radix8__f32_8c.html │ │ │ │ ├── arm__class__marks__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ ├── arm__class__marks__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ ├── arm__class__marks__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ ├── arm__class__marks__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ ├── arm__class__marks__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ ├── arm__class__marks__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ ├── arm__class__marks__example_2_g_c_c_2_abstract_8txt.html │ │ │ │ ├── arm__class__marks__example_2_g_c_c_2_startup_2system___a_r_m_c_m0_8c.html │ │ │ │ ├── arm__class__marks__example_2_g_c_c_2_startup_2system___a_r_m_c_m3_8c.html │ │ │ │ ├── arm__class__marks__example_2_g_c_c_2_startup_2system___a_r_m_c_m4_8c.html │ │ │ │ ├── arm__cmplx__conj__f32_8c.html │ │ │ │ ├── arm__cmplx__conj__q15_8c.html │ │ │ │ ├── arm__cmplx__conj__q31_8c.html │ │ │ │ ├── arm__cmplx__dot__prod__f32_8c.html │ │ │ │ ├── arm__cmplx__dot__prod__q15_8c.html │ │ │ │ ├── arm__cmplx__dot__prod__q31_8c.html │ │ │ │ ├── arm__cmplx__mag__f32_8c.html │ │ │ │ ├── arm__cmplx__mag__q15_8c.html │ │ │ │ ├── arm__cmplx__mag__q31_8c.html │ │ │ │ ├── arm__cmplx__mag__squared__f32_8c.html │ │ │ │ ├── arm__cmplx__mag__squared__q15_8c.html │ │ │ │ ├── arm__cmplx__mag__squared__q31_8c.html │ │ │ │ ├── arm__cmplx__mult__cmplx__f32_8c.html │ │ │ │ ├── arm__cmplx__mult__cmplx__q15_8c.html │ │ │ │ ├── arm__cmplx__mult__cmplx__q31_8c.html │ │ │ │ ├── arm__cmplx__mult__real__f32_8c.html │ │ │ │ ├── arm__cmplx__mult__real__q15_8c.html │ │ │ │ ├── arm__cmplx__mult__real__q31_8c.html │ │ │ │ ├── arm__common__tables_8c.html │ │ │ │ ├── arm__common__tables_8h.html │ │ │ │ ├── arm__const__structs_8c.html │ │ │ │ ├── arm__const__structs_8h.html │ │ │ │ ├── arm__conv__f32_8c.html │ │ │ │ ├── arm__conv__fast__opt__q15_8c.html │ │ │ │ ├── arm__conv__fast__q15_8c.html │ │ │ │ ├── arm__conv__fast__q31_8c.html │ │ │ │ ├── arm__conv__opt__q15_8c.html │ │ │ │ ├── arm__conv__opt__q7_8c.html │ │ │ │ ├── arm__conv__partial__f32_8c.html │ │ │ │ ├── arm__conv__partial__fast__opt__q15_8c.html │ │ │ │ ├── arm__conv__partial__fast__q15_8c.html │ │ │ │ ├── arm__conv__partial__fast__q31_8c.html │ │ │ │ ├── arm__conv__partial__opt__q15_8c.html │ │ │ │ ├── arm__conv__partial__opt__q7_8c.html │ │ │ │ ├── arm__conv__partial__q15_8c.html │ │ │ │ ├── arm__conv__partial__q31_8c.html │ │ │ │ ├── arm__conv__partial__q7_8c.html │ │ │ │ ├── arm__conv__q15_8c.html │ │ │ │ ├── arm__conv__q31_8c.html │ │ │ │ ├── arm__conv__q7_8c.html │ │ │ │ ├── arm__convolution__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ ├── arm__convolution__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ ├── arm__convolution__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ ├── arm__convolution__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ ├── arm__convolution__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ ├── arm__convolution__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ ├── arm__convolution__example_2_a_r_m_2math__helper_8c.html │ │ │ │ ├── arm__convolution__example_2_a_r_m_2math__helper_8h.html │ │ │ │ ├── arm__convolution__example_2_g_c_c_2_abstract_8txt.html │ │ │ │ ├── arm__convolution__example_2_g_c_c_2_startup_2system___a_r_m_c_m0_8c.html │ │ │ │ ├── arm__convolution__example_2_g_c_c_2_startup_2system___a_r_m_c_m3_8c.html │ │ │ │ ├── arm__convolution__example_2_g_c_c_2_startup_2system___a_r_m_c_m4_8c.html │ │ │ │ ├── arm__convolution__example_2_g_c_c_2math__helper_8c.html │ │ │ │ ├── arm__convolution__example_2_g_c_c_2math__helper_8h.html │ │ │ │ ├── arm__copy__f32_8c.html │ │ │ │ ├── arm__copy__q15_8c.html │ │ │ │ ├── arm__copy__q31_8c.html │ │ │ │ ├── arm__copy__q7_8c.html │ │ │ │ ├── arm__correlate__f32_8c.html │ │ │ │ ├── arm__correlate__fast__opt__q15_8c.html │ │ │ │ ├── arm__correlate__fast__q15_8c.html │ │ │ │ ├── arm__correlate__fast__q31_8c.html │ │ │ │ ├── arm__correlate__opt__q15_8c.html │ │ │ │ ├── arm__correlate__opt__q7_8c.html │ │ │ │ ├── arm__correlate__q15_8c.html │ │ │ │ ├── arm__correlate__q31_8c.html │ │ │ │ ├── arm__correlate__q7_8c.html │ │ │ │ ├── arm__cos__f32_8c.html │ │ │ │ ├── arm__cos__q15_8c.html │ │ │ │ ├── arm__cos__q31_8c.html │ │ │ │ ├── arm__dct4__f32_8c.html │ │ │ │ ├── arm__dct4__init__f32_8c.html │ │ │ │ ├── arm__dct4__init__q15_8c.html │ │ │ │ ├── arm__dct4__init__q31_8c.html │ │ │ │ ├── arm__dct4__q15_8c.html │ │ │ │ ├── arm__dct4__q31_8c.html │ │ │ │ ├── arm__dot__prod__f32_8c.html │ │ │ │ ├── arm__dot__prod__q15_8c.html │ │ │ │ ├── arm__dot__prod__q31_8c.html │ │ │ │ ├── arm__dot__prod__q7_8c.html │ │ │ │ ├── arm__dotproduct__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ ├── arm__dotproduct__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ ├── arm__dotproduct__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ ├── arm__dotproduct__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ ├── arm__dotproduct__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ ├── arm__dotproduct__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ ├── arm__dotproduct__example_2_g_c_c_2_abstract_8txt.html │ │ │ │ ├── arm__dotproduct__example_2_g_c_c_2_startup_2system___a_r_m_c_m0_8c.html │ │ │ │ ├── arm__dotproduct__example_2_g_c_c_2_startup_2system___a_r_m_c_m3_8c.html │ │ │ │ ├── arm__dotproduct__example_2_g_c_c_2_startup_2system___a_r_m_c_m4_8c.html │ │ │ │ ├── arm__fft__bin__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ ├── arm__fft__bin__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ ├── arm__fft__bin__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ ├── arm__fft__bin__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ ├── arm__fft__bin__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ ├── arm__fft__bin__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ ├── arm__fft__bin__example_2_g_c_c_2_abstract_8txt.html │ │ │ │ ├── arm__fft__bin__example_2_g_c_c_2_startup_2system___a_r_m_c_m0_8c.html │ │ │ │ ├── arm__fft__bin__example_2_g_c_c_2_startup_2system___a_r_m_c_m3_8c.html │ │ │ │ ├── arm__fft__bin__example_2_g_c_c_2_startup_2system___a_r_m_c_m4_8c.html │ │ │ │ ├── arm__fill__f32_8c.html │ │ │ │ ├── arm__fill__q15_8c.html │ │ │ │ ├── arm__fill__q31_8c.html │ │ │ │ ├── arm__fill__q7_8c.html │ │ │ │ ├── arm__fir__data_8c.html │ │ │ │ ├── arm__fir__decimate__f32_8c.html │ │ │ │ ├── arm__fir__decimate__fast__q15_8c.html │ │ │ │ ├── arm__fir__decimate__fast__q31_8c.html │ │ │ │ ├── arm__fir__decimate__init__f32_8c.html │ │ │ │ ├── arm__fir__decimate__init__q15_8c.html │ │ │ │ ├── arm__fir__decimate__init__q31_8c.html │ │ │ │ ├── arm__fir__decimate__q15_8c.html │ │ │ │ ├── arm__fir__decimate__q31_8c.html │ │ │ │ ├── arm__fir__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ ├── arm__fir__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ ├── arm__fir__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ ├── arm__fir__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ ├── arm__fir__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ ├── arm__fir__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ ├── arm__fir__example_2_a_r_m_2math__helper_8c.html │ │ │ │ ├── arm__fir__example_2_a_r_m_2math__helper_8h.html │ │ │ │ ├── arm__fir__example__f32_8c.html │ │ │ │ ├── arm__fir__f32_8c.html │ │ │ │ ├── arm__fir__fast__q15_8c.html │ │ │ │ ├── arm__fir__fast__q31_8c.html │ │ │ │ ├── arm__fir__init__f32_8c.html │ │ │ │ ├── arm__fir__init__q15_8c.html │ │ │ │ ├── arm__fir__init__q31_8c.html │ │ │ │ ├── arm__fir__init__q7_8c.html │ │ │ │ ├── arm__fir__interpolate__f32_8c.html │ │ │ │ ├── arm__fir__interpolate__init__f32_8c.html │ │ │ │ ├── arm__fir__interpolate__init__q15_8c.html │ │ │ │ ├── arm__fir__interpolate__init__q31_8c.html │ │ │ │ ├── arm__fir__interpolate__q15_8c.html │ │ │ │ ├── arm__fir__interpolate__q31_8c.html │ │ │ │ ├── arm__fir__lattice__f32_8c.html │ │ │ │ ├── arm__fir__lattice__init__f32_8c.html │ │ │ │ ├── arm__fir__lattice__init__q15_8c.html │ │ │ │ ├── arm__fir__lattice__init__q31_8c.html │ │ │ │ ├── arm__fir__lattice__q15_8c.html │ │ │ │ ├── arm__fir__lattice__q31_8c.html │ │ │ │ ├── arm__fir__q15_8c.html │ │ │ │ ├── arm__fir__q31_8c.html │ │ │ │ ├── arm__fir__q7_8c.html │ │ │ │ ├── arm__fir__sparse__f32_8c.html │ │ │ │ ├── arm__fir__sparse__init__f32_8c.html │ │ │ │ ├── arm__fir__sparse__init__q15_8c.html │ │ │ │ ├── arm__fir__sparse__init__q31_8c.html │ │ │ │ ├── arm__fir__sparse__init__q7_8c.html │ │ │ │ ├── arm__fir__sparse__q15_8c.html │ │ │ │ ├── arm__fir__sparse__q31_8c.html │ │ │ │ ├── arm__fir__sparse__q7_8c.html │ │ │ │ ├── arm__float__to__q15_8c.html │ │ │ │ ├── arm__float__to__q31_8c.html │ │ │ │ ├── arm__float__to__q7_8c.html │ │ │ │ ├── arm__graphic__equalizer__data_8c.html │ │ │ │ ├── arm__graphic__equalizer__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ ├── arm__graphic__equalizer__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ ├── arm__graphic__equalizer__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ ├── arm__graphic__equalizer__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ ├── arm__graphic__equalizer__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ ├── arm__graphic__equalizer__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ ├── arm__graphic__equalizer__example_2_a_r_m_2math__helper_8c.html │ │ │ │ ├── arm__graphic__equalizer__example_2_a_r_m_2math__helper_8h.html │ │ │ │ ├── arm__graphic__equalizer__example__q31_8c.html │ │ │ │ ├── arm__iir__lattice__f32_8c.html │ │ │ │ ├── arm__iir__lattice__init__f32_8c.html │ │ │ │ ├── arm__iir__lattice__init__q15_8c.html │ │ │ │ ├── arm__iir__lattice__init__q31_8c.html │ │ │ │ ├── arm__iir__lattice__q15_8c.html │ │ │ │ ├── arm__iir__lattice__q31_8c.html │ │ │ │ ├── arm__linear__interp__data_8c.html │ │ │ │ ├── arm__linear__interp__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ ├── arm__linear__interp__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ ├── arm__linear__interp__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ ├── arm__linear__interp__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ ├── arm__linear__interp__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ ├── arm__linear__interp__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ ├── arm__linear__interp__example_2_a_r_m_2math__helper_8c.html │ │ │ │ ├── arm__linear__interp__example_2_a_r_m_2math__helper_8h.html │ │ │ │ ├── arm__linear__interp__example__f32_8c.html │ │ │ │ ├── arm__lms__f32_8c.html │ │ │ │ ├── arm__lms__init__f32_8c.html │ │ │ │ ├── arm__lms__init__q15_8c.html │ │ │ │ ├── arm__lms__init__q31_8c.html │ │ │ │ ├── arm__lms__norm__f32_8c.html │ │ │ │ ├── arm__lms__norm__init__f32_8c.html │ │ │ │ ├── arm__lms__norm__init__q15_8c.html │ │ │ │ ├── arm__lms__norm__init__q31_8c.html │ │ │ │ ├── arm__lms__norm__q15_8c.html │ │ │ │ ├── arm__lms__norm__q31_8c.html │ │ │ │ ├── arm__lms__q15_8c.html │ │ │ │ ├── arm__lms__q31_8c.html │ │ │ │ ├── arm__mat__add__f32_8c.html │ │ │ │ ├── arm__mat__add__q15_8c.html │ │ │ │ ├── arm__mat__add__q31_8c.html │ │ │ │ ├── arm__mat__cmplx__mult__f32_8c.html │ │ │ │ ├── arm__mat__cmplx__mult__q15_8c.html │ │ │ │ ├── arm__mat__cmplx__mult__q31_8c.html │ │ │ │ ├── arm__mat__init__f32_8c.html │ │ │ │ ├── arm__mat__init__q15_8c.html │ │ │ │ ├── arm__mat__init__q31_8c.html │ │ │ │ ├── arm__mat__inverse__f32_8c.html │ │ │ │ ├── arm__mat__inverse__f64_8c.html │ │ │ │ ├── arm__mat__mult__f32_8c.html │ │ │ │ ├── arm__mat__mult__fast__q15_8c.html │ │ │ │ ├── arm__mat__mult__fast__q31_8c.html │ │ │ │ ├── arm__mat__mult__q15_8c.html │ │ │ │ ├── arm__mat__mult__q31_8c.html │ │ │ │ ├── arm__mat__scale__f32_8c.html │ │ │ │ ├── arm__mat__scale__q15_8c.html │ │ │ │ ├── arm__mat__scale__q31_8c.html │ │ │ │ ├── arm__mat__sub__f32_8c.html │ │ │ │ ├── arm__mat__sub__q15_8c.html │ │ │ │ ├── arm__mat__sub__q31_8c.html │ │ │ │ ├── arm__mat__trans__f32_8c.html │ │ │ │ ├── arm__mat__trans__q15_8c.html │ │ │ │ ├── arm__mat__trans__q31_8c.html │ │ │ │ ├── arm__math_8h.html │ │ │ │ ├── arm__matrix__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ ├── arm__matrix__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ ├── arm__matrix__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ ├── arm__matrix__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ ├── arm__matrix__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ ├── arm__matrix__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ ├── arm__matrix__example_2_a_r_m_2math__helper_8c.html │ │ │ │ ├── arm__matrix__example_2_a_r_m_2math__helper_8h.html │ │ │ │ ├── arm__matrix__example__f32_8c.html │ │ │ │ ├── arm__max__f32_8c.html │ │ │ │ ├── arm__max__q15_8c.html │ │ │ │ ├── arm__max__q31_8c.html │ │ │ │ ├── arm__max__q7_8c.html │ │ │ │ ├── arm__mean__f32_8c.html │ │ │ │ ├── arm__mean__q15_8c.html │ │ │ │ ├── arm__mean__q31_8c.html │ │ │ │ ├── arm__mean__q7_8c.html │ │ │ │ ├── arm__min__f32_8c.html │ │ │ │ ├── arm__min__q15_8c.html │ │ │ │ ├── arm__min__q31_8c.html │ │ │ │ ├── arm__min__q7_8c.html │ │ │ │ ├── arm__mult__f32_8c.html │ │ │ │ ├── arm__mult__q15_8c.html │ │ │ │ ├── arm__mult__q31_8c.html │ │ │ │ ├── arm__mult__q7_8c.html │ │ │ │ ├── arm__negate__f32_8c.html │ │ │ │ ├── arm__negate__q15_8c.html │ │ │ │ ├── arm__negate__q31_8c.html │ │ │ │ ├── arm__negate__q7_8c.html │ │ │ │ ├── arm__offset__f32_8c.html │ │ │ │ ├── arm__offset__q15_8c.html │ │ │ │ ├── arm__offset__q31_8c.html │ │ │ │ ├── arm__offset__q7_8c.html │ │ │ │ ├── arm__pid__init__f32_8c.html │ │ │ │ ├── arm__pid__init__q15_8c.html │ │ │ │ ├── arm__pid__init__q31_8c.html │ │ │ │ ├── arm__pid__reset__f32_8c.html │ │ │ │ ├── arm__pid__reset__q15_8c.html │ │ │ │ ├── arm__pid__reset__q31_8c.html │ │ │ │ ├── arm__power__f32_8c.html │ │ │ │ ├── arm__power__q15_8c.html │ │ │ │ ├── arm__power__q31_8c.html │ │ │ │ ├── arm__power__q7_8c.html │ │ │ │ ├── arm__q15__to__float_8c.html │ │ │ │ ├── arm__q15__to__q31_8c.html │ │ │ │ ├── arm__q15__to__q7_8c.html │ │ │ │ ├── arm__q31__to__float_8c.html │ │ │ │ ├── arm__q31__to__q15_8c.html │ │ │ │ ├── arm__q31__to__q7_8c.html │ │ │ │ ├── arm__q7__to__float_8c.html │ │ │ │ ├── arm__q7__to__q15_8c.html │ │ │ │ ├── arm__q7__to__q31_8c.html │ │ │ │ ├── arm__rfft__f32_8c.html │ │ │ │ ├── arm__rfft__fast__f32_8c.html │ │ │ │ ├── arm__rfft__fast__init__f32_8c.html │ │ │ │ ├── arm__rfft__init__f32_8c.html │ │ │ │ ├── arm__rfft__init__q15_8c.html │ │ │ │ ├── arm__rfft__init__q31_8c.html │ │ │ │ ├── arm__rfft__q15_8c.html │ │ │ │ ├── arm__rfft__q31_8c.html │ │ │ │ ├── arm__rms__f32_8c.html │ │ │ │ ├── arm__rms__q15_8c.html │ │ │ │ ├── arm__rms__q31_8c.html │ │ │ │ ├── arm__scale__f32_8c.html │ │ │ │ ├── arm__scale__q15_8c.html │ │ │ │ ├── arm__scale__q31_8c.html │ │ │ │ ├── arm__scale__q7_8c.html │ │ │ │ ├── arm__shift__q15_8c.html │ │ │ │ ├── arm__shift__q31_8c.html │ │ │ │ ├── arm__shift__q7_8c.html │ │ │ │ ├── arm__signal__converge__data_8c.html │ │ │ │ ├── arm__signal__converge__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ ├── arm__signal__converge__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ ├── arm__signal__converge__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ ├── arm__signal__converge__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ ├── arm__signal__converge__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ ├── arm__signal__converge__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ ├── arm__signal__converge__example_2_a_r_m_2math__helper_8c.html │ │ │ │ ├── arm__signal__converge__example_2_a_r_m_2math__helper_8h.html │ │ │ │ ├── arm__signal__converge__example__f32_8c.html │ │ │ │ ├── arm__sin__cos__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ ├── arm__sin__cos__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ ├── arm__sin__cos__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ ├── arm__sin__cos__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ ├── arm__sin__cos__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ ├── arm__sin__cos__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ ├── arm__sin__cos__example__f32_8c.html │ │ │ │ ├── arm__sin__cos__f32_8c.html │ │ │ │ ├── arm__sin__cos__q31_8c.html │ │ │ │ ├── arm__sin__f32_8c.html │ │ │ │ ├── arm__sin__q15_8c.html │ │ │ │ ├── arm__sin__q31_8c.html │ │ │ │ ├── arm__sqrt__q15_8c.html │ │ │ │ ├── arm__sqrt__q31_8c.html │ │ │ │ ├── arm__std__f32_8c.html │ │ │ │ ├── arm__std__q15_8c.html │ │ │ │ ├── arm__std__q31_8c.html │ │ │ │ ├── arm__sub__f32_8c.html │ │ │ │ ├── arm__sub__q15_8c.html │ │ │ │ ├── arm__sub__q31_8c.html │ │ │ │ ├── arm__sub__q7_8c.html │ │ │ │ ├── arm__var__f32_8c.html │ │ │ │ ├── arm__var__q15_8c.html │ │ │ │ ├── arm__var__q31_8c.html │ │ │ │ ├── arm__variance__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ ├── arm__variance__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ ├── arm__variance__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ ├── arm__variance__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ ├── arm__variance__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ ├── arm__variance__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ ├── arm__variance__example__f32_8c.html │ │ │ │ ├── arm_class_marks_example_f32_8c-example.html │ │ │ │ ├── arm_convolution_example_f32_8c-example.html │ │ │ │ ├── arm_dotproduct_example_f32_8c-example.html │ │ │ │ ├── arm_fft_bin_example_f32_8c-example.html │ │ │ │ ├── arm_fir_example_f32_8c-example.html │ │ │ │ ├── arm_graphic_equalizer_example_q31_8c-example.html │ │ │ │ ├── arm_linear_interp_example_f32_8c-example.html │ │ │ │ ├── arm_matrix_example_f32_8c-example.html │ │ │ │ ├── arm_signal_converge_example_f32_8c-example.html │ │ │ │ ├── arm_sin_cos_example_f32_8c-example.html │ │ │ │ ├── arm_variance_example_f32_8c-example.html │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── clarke.gif │ │ │ │ ├── clarkeFormula.gif │ │ │ │ ├── clarkeInvFormula.gif │ │ │ │ ├── classes.html │ │ │ │ ├── closed.png │ │ │ │ ├── cmsis.css │ │ │ │ ├── dct4FormatsQ15Table.gif │ │ │ │ ├── dct4FormatsQ31Table.gif │ │ │ │ ├── dct4NormalizingF32Table.gif │ │ │ │ ├── dct4NormalizingQ15Table.gif │ │ │ │ ├── dct4NormalizingQ31Table.gif │ │ │ │ ├── deprecated.html │ │ │ │ ├── dir_05485b5eab41976e219ba5522ae8a40f.html │ │ │ │ ├── dir_09e8ef8785a41675b984fd022d87f1bc.html │ │ │ │ ├── dir_0a655a63e9fde46c9762ddfc77ca04bf.html │ │ │ │ ├── dir_0a68311637137c2c11b8e5c250252a09.html │ │ │ │ ├── dir_0bd53153155fe3870c529e4f415d4a7e.html │ │ │ │ ├── dir_12597927a5d871eba77af159658f8e9f.html │ │ │ │ ├── dir_180f1cc07eaa223183e2db63ad84fc96.html │ │ │ │ ├── dir_1a6938f21b9d3ee9631dba1cb5e9a79b.html │ │ │ │ ├── dir_1bf7dc2439436c9055bff1493a609d16.html │ │ │ │ ├── dir_1ca531cbfb5f1e8e78bee380ead506db.html │ │ │ │ ├── dir_2089eff899a94c0329c5038f55baabab.html │ │ │ │ ├── dir_2483b5ef8110e34ae07dadd52b31fd81.html │ │ │ │ ├── dir_2540fe3bf997579a35b40d050fd58db0.html │ │ │ │ ├── dir_276d6fac6319afec12f7159fe8d37de0.html │ │ │ │ ├── dir_28efb39eb514d721c34bfd1d219ba1df.html │ │ │ │ ├── dir_2bac5604b95d5833788d2de8744eebd8.html │ │ │ │ ├── dir_2c6bf793c39a551cb3665287541dc62d.html │ │ │ │ ├── dir_3196f85a8347e7c6cf5419f06f7f0a5c.html │ │ │ │ ├── dir_33ac94cce96a0d93808878c5f6f288bf.html │ │ │ │ ├── dir_34727d50220656242b857ddf64f52361.html │ │ │ │ ├── dir_38b9476ff75f3e6ddc67484ee999428d.html │ │ │ │ ├── dir_38d31328c42027cc5452e7496de7b88f.html │ │ │ │ ├── dir_3963cad04f3c79af62d382ba0bd29283.html │ │ │ │ ├── dir_3d1fa2b43a5e654514cd51dbe031762c.html │ │ │ │ ├── dir_3d9b1fb18a6a04e0681aa143a1b11e83.html │ │ │ │ ├── dir_3f2a337fe451aa47758dbb077bdba7b5.html │ │ │ │ ├── dir_4104b0ce39688295b07e7d8423237024.html │ │ │ │ ├── dir_424029d631ed0326d927fecdf0eb5714.html │ │ │ │ ├── dir_446217fa41e7971f13d66a5ff592433f.html │ │ │ │ ├── dir_45f8bb2d42ec552d5107a3dfe6860678.html │ │ │ │ ├── dir_4646a6ed5faa53e0aa863c10960e3ab2.html │ │ │ │ ├── dir_4714731cfbb1de4dc44e33e6cd6e4a5c.html │ │ │ │ ├── dir_4c7fce71cdbef82378782cbb366558c3.html │ │ │ │ ├── dir_4e28292bc057704f3d2041cc99d8a5e9.html │ │ │ │ ├── dir_50f4d4f91ce5cd72cb6928b47e85a7f8.html │ │ │ │ ├── dir_51a4a1a9da33f8f5fceef63d25a48bab.html │ │ │ │ ├── dir_555dbbdc9f25fff28408fc741ceff093.html │ │ │ │ ├── dir_56c57e2f0b48b2b8a51ef27bd8c502e6.html │ │ │ │ ├── dir_56cec670f0bb78d679862f48f54d3df2.html │ │ │ │ ├── dir_59a4e177523ec142602b8d9a69e8f1ad.html │ │ │ │ ├── dir_5a70ee658078194b161f81d2720845c2.html │ │ │ │ ├── dir_5a7314d68003d6d6c9cc9bdbf9474558.html │ │ │ │ ├── dir_5ac065bab6b325e909a2891e62c4bc06.html │ │ │ │ ├── dir_5f5bccfc6fe085bc51be756ab8f90283.html │ │ │ │ ├── dir_6128d62f89366c4b8843a6e619831037.html │ │ │ │ ├── dir_640aa2eed9b78c9534642de10c55cd76.html │ │ │ │ ├── dir_64e2a74b8b7bbc67c7b58e8d27693791.html │ │ │ │ ├── dir_677f903d85fbea9a56056645305fd3cb.html │ │ │ │ ├── dir_67fa1d0aab2310595b9aeb6c7b217b31.html │ │ │ │ ├── dir_68b896fe322128a858fd31091509f536.html │ │ │ │ ├── dir_6ba48a5a8374668719ef019fe5c253cc.html │ │ │ │ ├── dir_6f165a89e15e99ac3f22d8f869410ac4.html │ │ │ │ ├── dir_6fa7a20b876299d97755d41c2d48a6a5.html │ │ │ │ ├── dir_7101093b4d1c318dab4c75d3b6d4e65e.html │ │ │ │ ├── dir_7b31f24274e1fbd0785fc4576840c524.html │ │ │ │ ├── dir_7c360855219f51fadbd92197472e63eb.html │ │ │ │ ├── dir_7d4cec4b61e1207b4d4e94667e8b33c4.html │ │ │ │ ├── dir_7d5684d3cdce709028a67dede40715c9.html │ │ │ │ ├── dir_7e8aa87db1ad6b3d9b1f25792e7c5208.html │ │ │ │ ├── dir_81c44c586c907f45c06b9b0a1d54e536.html │ │ │ │ ├── dir_822489d6fe1c800fff671c2e07883531.html │ │ │ │ ├── dir_82f440d47881c253175a7975df0d431b.html │ │ │ │ ├── dir_8414b1b93f9b578e0e4fd694ad6d561d.html │ │ │ │ ├── dir_856524284ebe840938865dc061f982fb.html │ │ │ │ ├── dir_8964a87ec8901bd068212c6dbdc5667e.html │ │ │ │ ├── dir_8e3293b977a6b314227f0cbb91dff730.html │ │ │ │ ├── dir_8ec650f333a7a305dec681cfacaa8edc.html │ │ │ │ ├── dir_8f74d965c767f9f408b01fb8ac42c08d.html │ │ │ │ ├── dir_918b1d9c020a9c8774a15ad3971a73ba.html │ │ │ │ ├── dir_925317a6e91dbb02ffd51da5d221b046.html │ │ │ │ ├── dir_92c426a233a3fdd85d56996e21a98e0e.html │ │ │ │ ├── dir_99f4521c725f0e333e2b206f562a5db7.html │ │ │ │ ├── dir_9aca731d350c1cdbae92b5821b7281b6.html │ │ │ │ ├── dir_9bbc0b803a378696e320e7975798d136.html │ │ │ │ ├── dir_9c857f0e41082f634e50072d001e0d4f.html │ │ │ │ ├── dir_9ec4a86676306e0fd116a00bf2906438.html │ │ │ │ ├── dir_a318715356e0ddd7f0022cb090f89fc2.html │ │ │ │ ├── dir_a368b1aeece590aaffe7782f861e3d24.html │ │ │ │ ├── dir_a4dee065d84ef6ffe4004c9ef0acf573.html │ │ │ │ ├── dir_a757f05afb4eb2e937a151caf65a9259.html │ │ │ │ ├── dir_a9b08443a15a54b29b0454fe878922b3.html │ │ │ │ ├── dir_aa7ef7d51ba6279587b659bb78c926be.html │ │ │ │ ├── dir_af59df418deac60c7129b68088884655.html │ │ │ │ ├── dir_b175b6a1b0e91b31e821dead0757e039.html │ │ │ │ ├── dir_b4620baec99d7beabdab610e4d749ef9.html │ │ │ │ ├── dir_b5d45ad7eb5bf398416f62f8980ddf77.html │ │ │ │ ├── dir_b88714652b8aa1e1c1599fa05e2dbc2f.html │ │ │ │ ├── dir_ba345a22c23c468dbe342a31a3980d31.html │ │ │ │ ├── dir_be2d3df67661aefe0e3f0071a1d6f8f1.html │ │ │ │ ├── dir_c2e666cea3ed7c127463edfe7b3abed4.html │ │ │ │ ├── dir_cc6125d285775e245d68db3d4ce69092.html │ │ │ │ ├── dir_cd8c33382d73f02781c40066dbd2f0d5.html │ │ │ │ ├── dir_cf417d728100a167f563acfac33cb7c7.html │ │ │ │ ├── dir_d1af19de43f00bd515b519c982d49d68.html │ │ │ │ ├── dir_d1d61a1361fc579da85c1b709ed868d7.html │ │ │ │ ├── dir_d3331dca3948a91095eeb99d07575db0.html │ │ │ │ ├── dir_d6b73ad7e408302c29ea0ebadf42639d.html │ │ │ │ ├── dir_daf4f5c4da18fbee2cc01397e7059227.html │ │ │ │ ├── dir_dcc7392e27ceedcb8fca5c4cd07c4b5c.html │ │ │ │ ├── dir_e04602aba7b2f9f43e3429e32fb5dc36.html │ │ │ │ ├── dir_e4eb7b834609f1fe20523c66b23e4a87.html │ │ │ │ ├── dir_e677fc34f5347e58d43c339b53e9b418.html │ │ │ │ ├── dir_e69484b12825f40a4799c3db7df7c339.html │ │ │ │ ├── dir_e850fff378e36258e2a085808e9d898c.html │ │ │ │ ├── dir_eaa4f497a3f9bf201d37aaf8d8603deb.html │ │ │ │ ├── dir_ed0f06d1d48a5e921d9f4bc3a2223aa6.html │ │ │ │ ├── dir_f31395880d34591c756e13478059d1a5.html │ │ │ │ ├── dir_f3f90e767886505989b4baa9d4b81390.html │ │ │ │ ├── dir_fa76c9f4334252cb8d941364a7ed9feb.html │ │ │ │ ├── dir_fccaebac91eec4cb351e86457c5d1310.html │ │ │ │ ├── dotProduct.gif │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.png │ │ │ │ ├── dynsections.js │ │ │ │ ├── examples.html │ │ │ │ ├── files.html │ │ │ │ ├── ftv2blank.png │ │ │ │ ├── ftv2cl.png │ │ │ │ ├── ftv2doc.png │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ ├── ftv2folderopen.png │ │ │ │ ├── ftv2lastnode.png │ │ │ │ ├── ftv2link.png │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ ├── ftv2mnode.png │ │ │ │ ├── ftv2mo.png │ │ │ │ ├── ftv2node.png │ │ │ │ ├── ftv2ns.png │ │ │ │ ├── ftv2plastnode.png │ │ │ │ ├── ftv2pnode.png │ │ │ │ ├── ftv2splitbar.png │ │ │ │ ├── ftv2vertline.png │ │ │ │ ├── functions.html │ │ │ │ ├── functions_0x62.html │ │ │ │ ├── functions_0x65.html │ │ │ │ ├── functions_0x66.html │ │ │ │ ├── functions_0x69.html │ │ │ │ ├── functions_0x6b.html │ │ │ │ ├── functions_0x6c.html │ │ │ │ ├── functions_0x6d.html │ │ │ │ ├── functions_0x6e.html │ │ │ │ ├── functions_0x6f.html │ │ │ │ ├── functions_0x70.html │ │ │ │ ├── functions_0x72.html │ │ │ │ ├── functions_0x73.html │ │ │ │ ├── functions_0x74.html │ │ │ │ ├── functions_0x78.html │ │ │ │ ├── functions_dup.js │ │ │ │ ├── functions_vars.html │ │ │ │ ├── functions_vars.js │ │ │ │ ├── functions_vars_0x62.html │ │ │ │ ├── functions_vars_0x65.html │ │ │ │ ├── functions_vars_0x66.html │ │ │ │ ├── functions_vars_0x69.html │ │ │ │ ├── functions_vars_0x6b.html │ │ │ │ ├── functions_vars_0x6c.html │ │ │ │ ├── functions_vars_0x6d.html │ │ │ │ ├── functions_vars_0x6e.html │ │ │ │ ├── functions_vars_0x6f.html │ │ │ │ ├── functions_vars_0x70.html │ │ │ │ ├── functions_vars_0x72.html │ │ │ │ ├── functions_vars_0x73.html │ │ │ │ ├── functions_vars_0x74.html │ │ │ │ ├── functions_vars_0x78.html │ │ │ │ ├── globals.html │ │ │ │ ├── globals_0x61.html │ │ │ │ ├── globals_0x62.html │ │ │ │ ├── globals_0x63.html │ │ │ │ ├── globals_0x64.html │ │ │ │ ├── globals_0x65.html │ │ │ │ ├── globals_0x66.html │ │ │ │ ├── globals_0x67.html │ │ │ │ ├── globals_0x69.html │ │ │ │ ├── globals_0x6c.html │ │ │ │ ├── globals_0x6d.html │ │ │ │ ├── globals_0x6e.html │ │ │ │ ├── globals_0x6f.html │ │ │ │ ├── globals_0x70.html │ │ │ │ ├── globals_0x71.html │ │ │ │ ├── globals_0x72.html │ │ │ │ ├── globals_0x73.html │ │ │ │ ├── globals_0x74.html │ │ │ │ ├── globals_0x75.html │ │ │ │ ├── globals_0x76.html │ │ │ │ ├── globals_0x77.html │ │ │ │ ├── globals_0x78.html │ │ │ │ ├── globals_defs.html │ │ │ │ ├── globals_defs_0x61.html │ │ │ │ ├── globals_defs_0x62.html │ │ │ │ ├── globals_defs_0x63.html │ │ │ │ ├── globals_defs_0x64.html │ │ │ │ ├── globals_defs_0x66.html │ │ │ │ ├── globals_defs_0x69.html │ │ │ │ ├── globals_defs_0x6d.html │ │ │ │ ├── globals_defs_0x6e.html │ │ │ │ ├── globals_defs_0x70.html │ │ │ │ ├── globals_defs_0x73.html │ │ │ │ ├── globals_defs_0x74.html │ │ │ │ ├── globals_defs_0x75.html │ │ │ │ ├── globals_defs_0x78.html │ │ │ │ ├── globals_enum.html │ │ │ │ ├── globals_eval.html │ │ │ │ ├── globals_func.html │ │ │ │ ├── globals_func_0x62.html │ │ │ │ ├── globals_func_0x63.html │ │ │ │ ├── globals_func_0x64.html │ │ │ │ ├── globals_func_0x66.html │ │ │ │ ├── globals_func_0x67.html │ │ │ │ ├── globals_func_0x69.html │ │ │ │ ├── globals_func_0x6c.html │ │ │ │ ├── globals_func_0x6d.html │ │ │ │ ├── globals_func_0x6e.html │ │ │ │ ├── globals_func_0x6f.html │ │ │ │ ├── globals_func_0x70.html │ │ │ │ ├── globals_func_0x71.html │ │ │ │ ├── globals_func_0x72.html │ │ │ │ ├── globals_func_0x73.html │ │ │ │ ├── globals_func_0x74.html │ │ │ │ ├── globals_func_0x76.html │ │ │ │ ├── globals_type.html │ │ │ │ ├── globals_vars.html │ │ │ │ ├── globals_vars_0x62.html │ │ │ │ ├── globals_vars_0x63.html │ │ │ │ ├── globals_vars_0x64.html │ │ │ │ ├── globals_vars_0x65.html │ │ │ │ ├── globals_vars_0x66.html │ │ │ │ ├── globals_vars_0x67.html │ │ │ │ ├── globals_vars_0x69.html │ │ │ │ ├── globals_vars_0x6c.html │ │ │ │ ├── globals_vars_0x6d.html │ │ │ │ ├── globals_vars_0x6e.html │ │ │ │ ├── globals_vars_0x6f.html │ │ │ │ ├── globals_vars_0x72.html │ │ │ │ ├── globals_vars_0x73.html │ │ │ │ ├── globals_vars_0x74.html │ │ │ │ ├── globals_vars_0x76.html │ │ │ │ ├── globals_vars_0x77.html │ │ │ │ ├── globals_vars_0x78.html │ │ │ │ ├── group___basic_abs.html │ │ │ │ ├── group___basic_abs.js │ │ │ │ ├── group___basic_add.html │ │ │ │ ├── group___basic_add.js │ │ │ │ ├── group___basic_mult.html │ │ │ │ ├── group___basic_mult.js │ │ │ │ ├── group___basic_sub.html │ │ │ │ ├── group___basic_sub.js │ │ │ │ ├── group___bilinear_interpolate.html │ │ │ │ ├── group___bilinear_interpolate.js │ │ │ │ ├── group___biquad_cascade_d_f1.html │ │ │ │ ├── group___biquad_cascade_d_f1.js │ │ │ │ ├── group___biquad_cascade_d_f1__32x64.html │ │ │ │ ├── group___biquad_cascade_d_f1__32x64.js │ │ │ │ ├── group___biquad_cascade_d_f2_t.html │ │ │ │ ├── group___biquad_cascade_d_f2_t.js │ │ │ │ ├── group___c_f_f_t___c_i_f_f_t.html │ │ │ │ ├── group___c_f_f_t___c_i_f_f_t.js │ │ │ │ ├── group___class_marks.html │ │ │ │ ├── group___cmplx_by_cmplx_mult.html │ │ │ │ ├── group___cmplx_by_cmplx_mult.js │ │ │ │ ├── group___cmplx_by_real_mult.html │ │ │ │ ├── group___cmplx_by_real_mult.js │ │ │ │ ├── group___cmplx_matrix_mult.html │ │ │ │ ├── group___cmplx_matrix_mult.js │ │ │ │ ├── group___complex_f_f_t.html │ │ │ │ ├── group___complex_f_f_t.js │ │ │ │ ├── group___conv.html │ │ │ │ ├── group___conv.js │ │ │ │ ├── group___convolution_example.html │ │ │ │ ├── group___corr.html │ │ │ │ ├── group___corr.js │ │ │ │ ├── group___d_c_t4___i_d_c_t4.html │ │ │ │ ├── group___d_c_t4___i_d_c_t4.js │ │ │ │ ├── group___dotproduct_example.html │ │ │ │ ├── group___f_i_r.html │ │ │ │ ├── group___f_i_r.js │ │ │ │ ├── group___f_i_r___interpolate.html │ │ │ │ ├── group___f_i_r___interpolate.js │ │ │ │ ├── group___f_i_r___lattice.html │ │ │ │ ├── group___f_i_r___lattice.js │ │ │ │ ├── group___f_i_r___sparse.html │ │ │ │ ├── group___f_i_r___sparse.js │ │ │ │ ├── group___f_i_r__decimate.html │ │ │ │ ├── group___f_i_r__decimate.js │ │ │ │ ├── group___f_i_r_l_p_f.html │ │ │ │ ├── group___fast.html │ │ │ │ ├── group___fill.html │ │ │ │ ├── group___fill.js │ │ │ │ ├── group___frequency_bin.html │ │ │ │ ├── group___g_e_q5_band.html │ │ │ │ ├── group___i_i_r___lattice.html │ │ │ │ ├── group___i_i_r___lattice.js │ │ │ │ ├── group___l_m_s.html │ │ │ │ ├── group___l_m_s.js │ │ │ │ ├── group___l_m_s___n_o_r_m.html │ │ │ │ ├── group___l_m_s___n_o_r_m.js │ │ │ │ ├── group___linear_interp_example.html │ │ │ │ ├── group___linear_interpolate.html │ │ │ │ ├── group___linear_interpolate.js │ │ │ │ ├── group___matrix_add.html │ │ │ │ ├── group___matrix_add.js │ │ │ │ ├── group___matrix_example.html │ │ │ │ ├── group___matrix_init.html │ │ │ │ ├── group___matrix_init.js │ │ │ │ ├── group___matrix_inv.html │ │ │ │ ├── group___matrix_inv.js │ │ │ │ ├── group___matrix_mult.html │ │ │ │ ├── group___matrix_mult.js │ │ │ │ ├── group___matrix_scale.html │ │ │ │ ├── group___matrix_scale.js │ │ │ │ ├── group___matrix_sub.html │ │ │ │ ├── group___matrix_sub.js │ │ │ │ ├── group___matrix_trans.html │ │ │ │ ├── group___matrix_trans.js │ │ │ │ ├── group___max.html │ │ │ │ ├── group___max.js │ │ │ │ ├── group___min.html │ │ │ │ ├── group___min.js │ │ │ │ ├── group___p_i_d.html │ │ │ │ ├── group___p_i_d.js │ │ │ │ ├── group___partial_conv.html │ │ │ │ ├── group___partial_conv.js │ │ │ │ ├── group___r_m_s.html │ │ │ │ ├── group___r_m_s.js │ │ │ │ ├── group___radix8___c_f_f_t___c_i_f_f_t.html │ │ │ │ ├── group___real_f_f_t.html │ │ │ │ ├── group___real_f_f_t.js │ │ │ │ ├── group___s_q_r_t.html │ │ │ │ ├── group___s_q_r_t.js │ │ │ │ ├── group___s_t_d.html │ │ │ │ ├── group___s_t_d.js │ │ │ │ ├── group___signal_convergence.html │ │ │ │ ├── group___sin_cos.html │ │ │ │ ├── group___sin_cos.js │ │ │ │ ├── group___sin_cos_example.html │ │ │ │ ├── group___variance_example.html │ │ │ │ ├── group__clarke.html │ │ │ │ ├── group__clarke.js │ │ │ │ ├── group__cmplx__conj.html │ │ │ │ ├── group__cmplx__conj.js │ │ │ │ ├── group__cmplx__dot__prod.html │ │ │ │ ├── group__cmplx__dot__prod.js │ │ │ │ ├── group__cmplx__mag.html │ │ │ │ ├── group__cmplx__mag.js │ │ │ │ ├── group__cmplx__mag__squared.html │ │ │ │ ├── group__cmplx__mag__squared.js │ │ │ │ ├── group__copy.html │ │ │ │ ├── group__copy.js │ │ │ │ ├── group__cos.html │ │ │ │ ├── group__cos.js │ │ │ │ ├── group__dot__prod.html │ │ │ │ ├── group__dot__prod.js │ │ │ │ ├── group__float__to__x.html │ │ │ │ ├── group__float__to__x.js │ │ │ │ ├── group__group_cmplx_math.html │ │ │ │ ├── group__group_cmplx_math.js │ │ │ │ ├── group__group_controller.html │ │ │ │ ├── group__group_controller.js │ │ │ │ ├── group__group_examples.html │ │ │ │ ├── group__group_examples.js │ │ │ │ ├── group__group_fast_math.html │ │ │ │ ├── group__group_fast_math.js │ │ │ │ ├── group__group_filters.html │ │ │ │ ├── group__group_filters.js │ │ │ │ ├── group__group_interpolation.html │ │ │ │ ├── group__group_interpolation.js │ │ │ │ ├── group__group_math.html │ │ │ │ ├── group__group_math.js │ │ │ │ ├── group__group_matrix.html │ │ │ │ ├── group__group_matrix.js │ │ │ │ ├── group__group_stats.html │ │ │ │ ├── group__group_stats.js │ │ │ │ ├── group__group_support.html │ │ │ │ ├── group__group_support.js │ │ │ │ ├── group__group_transforms.html │ │ │ │ ├── group__group_transforms.js │ │ │ │ ├── group__inv__clarke.html │ │ │ │ ├── group__inv__clarke.js │ │ │ │ ├── group__inv__park.html │ │ │ │ ├── group__inv__park.js │ │ │ │ ├── group__mean.html │ │ │ │ ├── group__mean.js │ │ │ │ ├── group__negate.html │ │ │ │ ├── group__negate.js │ │ │ │ ├── group__offset.html │ │ │ │ ├── group__offset.js │ │ │ │ ├── group__park.html │ │ │ │ ├── group__park.js │ │ │ │ ├── group__power.html │ │ │ │ ├── group__power.js │ │ │ │ ├── group__q15__to__x.html │ │ │ │ ├── group__q15__to__x.js │ │ │ │ ├── group__q31__to__x.html │ │ │ │ ├── group__q31__to__x.js │ │ │ │ ├── group__q7__to__x.html │ │ │ │ ├── group__q7__to__x.js │ │ │ │ ├── group__scale.html │ │ │ │ ├── group__scale.js │ │ │ │ ├── group__shift.html │ │ │ │ ├── group__shift.js │ │ │ │ ├── group__sin.html │ │ │ │ ├── group__sin.js │ │ │ │ ├── group__variance.html │ │ │ │ ├── group__variance.js │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── linearInterpExampleMethod1.gif │ │ │ │ ├── linearInterpExampleMethod2.gif │ │ │ │ ├── matrixExample.gif │ │ │ │ ├── modules.html │ │ │ │ ├── modules.js │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── navtree.css │ │ │ │ ├── navtree.js │ │ │ │ ├── navtreeindex0.js │ │ │ │ ├── navtreeindex1.js │ │ │ │ ├── navtreeindex2.js │ │ │ │ ├── navtreeindex3.js │ │ │ │ ├── open.png │ │ │ │ ├── pages.html │ │ │ │ ├── park.gif │ │ │ │ ├── parkFormula.gif │ │ │ │ ├── parkInvFormula.gif │ │ │ │ ├── printComponentTabs.js │ │ │ │ ├── resize.js │ │ │ │ ├── search │ │ │ │ ├── all_5f.html │ │ │ │ ├── all_5f.js │ │ │ │ ├── all_61.html │ │ │ │ ├── all_61.js │ │ │ │ ├── all_62.html │ │ │ │ ├── all_62.js │ │ │ │ ├── all_63.html │ │ │ │ ├── all_63.js │ │ │ │ ├── all_64.html │ │ │ │ ├── all_64.js │ │ │ │ ├── all_65.html │ │ │ │ ├── all_65.js │ │ │ │ ├── all_66.html │ │ │ │ ├── all_66.js │ │ │ │ ├── all_67.html │ │ │ │ ├── all_67.js │ │ │ │ ├── all_68.html │ │ │ │ ├── all_68.js │ │ │ │ ├── all_69.html │ │ │ │ ├── all_69.js │ │ │ │ ├── all_6b.html │ │ │ │ ├── all_6b.js │ │ │ │ ├── all_6c.html │ │ │ │ ├── all_6c.js │ │ │ │ ├── all_6d.html │ │ │ │ ├── all_6d.js │ │ │ │ ├── all_6e.html │ │ │ │ ├── all_6e.js │ │ │ │ ├── all_6f.html │ │ │ │ ├── all_6f.js │ │ │ │ ├── all_70.html │ │ │ │ ├── all_70.js │ │ │ │ ├── all_71.html │ │ │ │ ├── all_71.js │ │ │ │ ├── all_72.html │ │ │ │ ├── all_72.js │ │ │ │ ├── all_73.html │ │ │ │ ├── all_73.js │ │ │ │ ├── all_74.html │ │ │ │ ├── all_74.js │ │ │ │ ├── all_75.html │ │ │ │ ├── all_75.js │ │ │ │ ├── all_76.html │ │ │ │ ├── all_76.js │ │ │ │ ├── all_77.html │ │ │ │ ├── all_77.js │ │ │ │ ├── all_78.html │ │ │ │ ├── all_78.js │ │ │ │ ├── classes_61.html │ │ │ │ ├── classes_61.js │ │ │ │ ├── close.png │ │ │ │ ├── defines_5f.html │ │ │ │ ├── defines_5f.js │ │ │ │ ├── defines_61.html │ │ │ │ ├── defines_61.js │ │ │ │ ├── defines_62.html │ │ │ │ ├── defines_62.js │ │ │ │ ├── defines_63.html │ │ │ │ ├── defines_63.js │ │ │ │ ├── defines_64.html │ │ │ │ ├── defines_64.js │ │ │ │ ├── defines_66.html │ │ │ │ ├── defines_66.js │ │ │ │ ├── defines_69.html │ │ │ │ ├── defines_69.js │ │ │ │ ├── defines_6d.html │ │ │ │ ├── defines_6d.js │ │ │ │ ├── defines_6e.html │ │ │ │ ├── defines_6e.js │ │ │ │ ├── defines_70.html │ │ │ │ ├── defines_70.js │ │ │ │ ├── defines_73.html │ │ │ │ ├── defines_73.js │ │ │ │ ├── defines_74.html │ │ │ │ ├── defines_74.js │ │ │ │ ├── defines_75.html │ │ │ │ ├── defines_75.js │ │ │ │ ├── defines_78.html │ │ │ │ ├── defines_78.js │ │ │ │ ├── enums_61.html │ │ │ │ ├── enums_61.js │ │ │ │ ├── enumvalues_61.html │ │ │ │ ├── enumvalues_61.js │ │ │ │ ├── files_61.html │ │ │ │ ├── files_61.js │ │ │ │ ├── files_63.html │ │ │ │ ├── files_63.js │ │ │ │ ├── files_67.html │ │ │ │ ├── files_67.js │ │ │ │ ├── functions_61.html │ │ │ │ ├── functions_61.js │ │ │ │ ├── functions_63.html │ │ │ │ ├── functions_63.js │ │ │ │ ├── functions_67.html │ │ │ │ ├── functions_67.js │ │ │ │ ├── functions_6d.html │ │ │ │ ├── functions_6d.js │ │ │ │ ├── functions_73.html │ │ │ │ ├── functions_73.js │ │ │ │ ├── functions_74.html │ │ │ │ ├── functions_74.js │ │ │ │ ├── groups_62.html │ │ │ │ ├── groups_62.js │ │ │ │ ├── groups_63.html │ │ │ │ ├── groups_63.js │ │ │ │ ├── groups_64.html │ │ │ │ ├── groups_64.js │ │ │ │ ├── groups_65.html │ │ │ │ ├── groups_65.js │ │ │ │ ├── groups_66.html │ │ │ │ ├── groups_66.js │ │ │ │ ├── groups_67.html │ │ │ │ ├── groups_67.js │ │ │ │ ├── groups_68.html │ │ │ │ ├── groups_68.js │ │ │ │ ├── groups_69.html │ │ │ │ ├── groups_69.js │ │ │ │ ├── groups_6c.html │ │ │ │ ├── groups_6c.js │ │ │ │ ├── groups_6d.html │ │ │ │ ├── groups_6d.js │ │ │ │ ├── groups_6e.html │ │ │ │ ├── groups_6e.js │ │ │ │ ├── groups_70.html │ │ │ │ ├── groups_70.js │ │ │ │ ├── groups_72.html │ │ │ │ ├── groups_72.js │ │ │ │ ├── groups_73.html │ │ │ │ ├── groups_73.js │ │ │ │ ├── groups_74.html │ │ │ │ ├── groups_74.js │ │ │ │ ├── groups_76.html │ │ │ │ ├── groups_76.js │ │ │ │ ├── mag_sel.png │ │ │ │ ├── nomatches.html │ │ │ │ ├── pages_63.html │ │ │ │ ├── pages_63.js │ │ │ │ ├── pages_64.html │ │ │ │ ├── pages_64.js │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── search_l.png │ │ │ │ ├── search_m.png │ │ │ │ ├── search_r.png │ │ │ │ ├── typedefs_66.html │ │ │ │ ├── typedefs_66.js │ │ │ │ ├── typedefs_71.html │ │ │ │ ├── typedefs_71.js │ │ │ │ ├── variables_61.html │ │ │ │ ├── variables_61.js │ │ │ │ ├── variables_62.html │ │ │ │ ├── variables_62.js │ │ │ │ ├── variables_63.html │ │ │ │ ├── variables_63.js │ │ │ │ ├── variables_64.html │ │ │ │ ├── variables_64.js │ │ │ │ ├── variables_65.html │ │ │ │ ├── variables_65.js │ │ │ │ ├── variables_66.html │ │ │ │ ├── variables_66.js │ │ │ │ ├── variables_67.html │ │ │ │ ├── variables_67.js │ │ │ │ ├── variables_69.html │ │ │ │ ├── variables_69.js │ │ │ │ ├── variables_6b.html │ │ │ │ ├── variables_6b.js │ │ │ │ ├── variables_6c.html │ │ │ │ ├── variables_6c.js │ │ │ │ ├── variables_6d.html │ │ │ │ ├── variables_6d.js │ │ │ │ ├── variables_6e.html │ │ │ │ ├── variables_6e.js │ │ │ │ ├── variables_6f.html │ │ │ │ ├── variables_6f.js │ │ │ │ ├── variables_70.html │ │ │ │ ├── variables_70.js │ │ │ │ ├── variables_72.html │ │ │ │ ├── variables_72.js │ │ │ │ ├── variables_73.html │ │ │ │ ├── variables_73.js │ │ │ │ ├── variables_74.html │ │ │ │ ├── variables_74.js │ │ │ │ ├── variables_76.html │ │ │ │ ├── variables_76.js │ │ │ │ ├── variables_77.html │ │ │ │ ├── variables_77.js │ │ │ │ ├── variables_78.html │ │ │ │ └── variables_78.js │ │ │ │ ├── sinCos.gif │ │ │ │ ├── structarm__bilinear__interp__instance__f32.html │ │ │ │ ├── structarm__bilinear__interp__instance__f32.js │ │ │ │ ├── structarm__bilinear__interp__instance__q15.html │ │ │ │ ├── structarm__bilinear__interp__instance__q15.js │ │ │ │ ├── structarm__bilinear__interp__instance__q31.html │ │ │ │ ├── structarm__bilinear__interp__instance__q31.js │ │ │ │ ├── structarm__bilinear__interp__instance__q7.html │ │ │ │ ├── structarm__bilinear__interp__instance__q7.js │ │ │ │ ├── structarm__biquad__cas__df1__32x64__ins__q31.html │ │ │ │ ├── structarm__biquad__cas__df1__32x64__ins__q31.js │ │ │ │ ├── structarm__biquad__cascade__df2_t__instance__f32.html │ │ │ │ ├── structarm__biquad__cascade__df2_t__instance__f32.js │ │ │ │ ├── structarm__biquad__cascade__df2_t__instance__f64.html │ │ │ │ ├── structarm__biquad__cascade__df2_t__instance__f64.js │ │ │ │ ├── structarm__biquad__cascade__stereo__df2_t__instance__f32.html │ │ │ │ ├── structarm__biquad__cascade__stereo__df2_t__instance__f32.js │ │ │ │ ├── structarm__biquad__casd__df1__inst__f32.html │ │ │ │ ├── structarm__biquad__casd__df1__inst__f32.js │ │ │ │ ├── structarm__biquad__casd__df1__inst__q15.html │ │ │ │ ├── structarm__biquad__casd__df1__inst__q15.js │ │ │ │ ├── structarm__biquad__casd__df1__inst__q31.html │ │ │ │ ├── structarm__biquad__casd__df1__inst__q31.js │ │ │ │ ├── structarm__cfft__instance__f32.html │ │ │ │ ├── structarm__cfft__instance__f32.js │ │ │ │ ├── structarm__cfft__instance__q15.html │ │ │ │ ├── structarm__cfft__instance__q15.js │ │ │ │ ├── structarm__cfft__instance__q31.html │ │ │ │ ├── structarm__cfft__instance__q31.js │ │ │ │ ├── structarm__cfft__radix2__instance__f32.html │ │ │ │ ├── structarm__cfft__radix2__instance__f32.js │ │ │ │ ├── structarm__cfft__radix2__instance__q15.html │ │ │ │ ├── structarm__cfft__radix2__instance__q15.js │ │ │ │ ├── structarm__cfft__radix2__instance__q31.html │ │ │ │ ├── structarm__cfft__radix2__instance__q31.js │ │ │ │ ├── structarm__cfft__radix4__instance__f32.html │ │ │ │ ├── structarm__cfft__radix4__instance__f32.js │ │ │ │ ├── structarm__cfft__radix4__instance__q15.html │ │ │ │ ├── structarm__cfft__radix4__instance__q15.js │ │ │ │ ├── structarm__cfft__radix4__instance__q31.html │ │ │ │ ├── structarm__cfft__radix4__instance__q31.js │ │ │ │ ├── structarm__dct4__instance__f32.html │ │ │ │ ├── structarm__dct4__instance__f32.js │ │ │ │ ├── structarm__dct4__instance__q15.html │ │ │ │ ├── structarm__dct4__instance__q15.js │ │ │ │ ├── structarm__dct4__instance__q31.html │ │ │ │ ├── structarm__dct4__instance__q31.js │ │ │ │ ├── structarm__fir__decimate__instance__f32.html │ │ │ │ ├── structarm__fir__decimate__instance__f32.js │ │ │ │ ├── structarm__fir__decimate__instance__q15.html │ │ │ │ ├── structarm__fir__decimate__instance__q15.js │ │ │ │ ├── structarm__fir__decimate__instance__q31.html │ │ │ │ ├── structarm__fir__decimate__instance__q31.js │ │ │ │ ├── structarm__fir__instance__f32.html │ │ │ │ ├── structarm__fir__instance__f32.js │ │ │ │ ├── structarm__fir__instance__q15.html │ │ │ │ ├── structarm__fir__instance__q15.js │ │ │ │ ├── structarm__fir__instance__q31.html │ │ │ │ ├── structarm__fir__instance__q31.js │ │ │ │ ├── structarm__fir__instance__q7.html │ │ │ │ ├── structarm__fir__instance__q7.js │ │ │ │ ├── structarm__fir__interpolate__instance__f32.html │ │ │ │ ├── structarm__fir__interpolate__instance__f32.js │ │ │ │ ├── structarm__fir__interpolate__instance__q15.html │ │ │ │ ├── structarm__fir__interpolate__instance__q15.js │ │ │ │ ├── structarm__fir__interpolate__instance__q31.html │ │ │ │ ├── structarm__fir__interpolate__instance__q31.js │ │ │ │ ├── structarm__fir__lattice__instance__f32.html │ │ │ │ ├── structarm__fir__lattice__instance__f32.js │ │ │ │ ├── structarm__fir__lattice__instance__q15.html │ │ │ │ ├── structarm__fir__lattice__instance__q15.js │ │ │ │ ├── structarm__fir__lattice__instance__q31.html │ │ │ │ ├── structarm__fir__lattice__instance__q31.js │ │ │ │ ├── structarm__fir__sparse__instance__f32.html │ │ │ │ ├── structarm__fir__sparse__instance__f32.js │ │ │ │ ├── structarm__fir__sparse__instance__q15.html │ │ │ │ ├── structarm__fir__sparse__instance__q15.js │ │ │ │ ├── structarm__fir__sparse__instance__q31.html │ │ │ │ ├── structarm__fir__sparse__instance__q31.js │ │ │ │ ├── structarm__fir__sparse__instance__q7.html │ │ │ │ ├── structarm__fir__sparse__instance__q7.js │ │ │ │ ├── structarm__iir__lattice__instance__f32.html │ │ │ │ ├── structarm__iir__lattice__instance__f32.js │ │ │ │ ├── structarm__iir__lattice__instance__q15.html │ │ │ │ ├── structarm__iir__lattice__instance__q15.js │ │ │ │ ├── structarm__iir__lattice__instance__q31.html │ │ │ │ ├── structarm__iir__lattice__instance__q31.js │ │ │ │ ├── structarm__linear__interp__instance__f32.html │ │ │ │ ├── structarm__linear__interp__instance__f32.js │ │ │ │ ├── structarm__lms__instance__f32.html │ │ │ │ ├── structarm__lms__instance__f32.js │ │ │ │ ├── structarm__lms__instance__q15.html │ │ │ │ ├── structarm__lms__instance__q15.js │ │ │ │ ├── structarm__lms__instance__q31.html │ │ │ │ ├── structarm__lms__instance__q31.js │ │ │ │ ├── structarm__lms__norm__instance__f32.html │ │ │ │ ├── structarm__lms__norm__instance__f32.js │ │ │ │ ├── structarm__lms__norm__instance__q15.html │ │ │ │ ├── structarm__lms__norm__instance__q15.js │ │ │ │ ├── structarm__lms__norm__instance__q31.html │ │ │ │ ├── structarm__lms__norm__instance__q31.js │ │ │ │ ├── structarm__matrix__instance__f32.html │ │ │ │ ├── structarm__matrix__instance__f32.js │ │ │ │ ├── structarm__matrix__instance__f64.html │ │ │ │ ├── structarm__matrix__instance__f64.js │ │ │ │ ├── structarm__matrix__instance__q15.html │ │ │ │ ├── structarm__matrix__instance__q15.js │ │ │ │ ├── structarm__matrix__instance__q31.html │ │ │ │ ├── structarm__matrix__instance__q31.js │ │ │ │ ├── structarm__pid__instance__f32.html │ │ │ │ ├── structarm__pid__instance__f32.js │ │ │ │ ├── structarm__pid__instance__q15.html │ │ │ │ ├── structarm__pid__instance__q15.js │ │ │ │ ├── structarm__pid__instance__q31.html │ │ │ │ ├── structarm__pid__instance__q31.js │ │ │ │ ├── structarm__rfft__fast__instance__f32.html │ │ │ │ ├── structarm__rfft__fast__instance__f32.js │ │ │ │ ├── structarm__rfft__instance__f32.html │ │ │ │ ├── structarm__rfft__instance__f32.js │ │ │ │ ├── structarm__rfft__instance__q15.html │ │ │ │ ├── structarm__rfft__instance__q15.js │ │ │ │ ├── structarm__rfft__instance__q31.html │ │ │ │ ├── structarm__rfft__instance__q31.js │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ ├── tab_topnav.png │ │ │ │ └── tabs.css │ │ ├── General │ │ │ └── html │ │ │ │ ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ ├── CMSISv4_small.png │ │ │ │ ├── _c_m_revision_history.html │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── closed.png │ │ │ │ ├── cmsis.css │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.png │ │ │ │ ├── dynsections.js │ │ │ │ ├── ftv2blank.png │ │ │ │ ├── ftv2cl.png │ │ │ │ ├── ftv2doc.png │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ ├── ftv2folderopen.png │ │ │ │ ├── ftv2lastnode.png │ │ │ │ ├── ftv2link.png │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ ├── ftv2mnode.png │ │ │ │ ├── ftv2mo.png │ │ │ │ ├── ftv2node.png │ │ │ │ ├── ftv2ns.png │ │ │ │ ├── ftv2plastnode.png │ │ │ │ ├── ftv2pnode.png │ │ │ │ ├── ftv2splitbar.png │ │ │ │ ├── ftv2vertline.png │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── navtree.css │ │ │ │ ├── navtree.js │ │ │ │ ├── navtreeindex0.js │ │ │ │ ├── open.png │ │ │ │ ├── pages.html │ │ │ │ ├── printComponentTabs.js │ │ │ │ ├── resize.js │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ ├── tab_topnav.png │ │ │ │ └── tabs.css │ │ ├── RTOS │ │ │ └── html │ │ │ │ ├── API_Structure.png │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ ├── CMSIS_RTOS_Files.png │ │ │ │ ├── MailQueue.png │ │ │ │ ├── MessageQueue.png │ │ │ │ ├── Mutex.png │ │ │ │ ├── Semaphore.png │ │ │ │ ├── ThreadStatus.png │ │ │ │ ├── Timer.png │ │ │ │ ├── TimerValues.png │ │ │ │ ├── _function_overview.html │ │ │ │ ├── _rtos_validation.html │ │ │ │ ├── _using_o_s.html │ │ │ │ ├── annotated.html │ │ │ │ ├── annotated.js │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── classes.html │ │ │ │ ├── closed.png │ │ │ │ ├── cmsis.css │ │ │ │ ├── cmsis__os_8h.html │ │ │ │ ├── cmsis__os_8txt.html │ │ │ │ ├── cmsis_os_h.html │ │ │ │ ├── dir_67baed4ff719a838d401a6dc7774cf41.html │ │ │ │ ├── dir_9afdeffb8e409a4e0df5c5bf9ab1a7d2.html │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.png │ │ │ │ ├── dynsections.js │ │ │ │ ├── files.html │ │ │ │ ├── ftv2blank.png │ │ │ │ ├── ftv2cl.png │ │ │ │ ├── ftv2doc.png │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ ├── ftv2folderopen.png │ │ │ │ ├── ftv2lastnode.png │ │ │ │ ├── ftv2link.png │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ ├── ftv2mnode.png │ │ │ │ ├── ftv2mo.png │ │ │ │ ├── ftv2node.png │ │ │ │ ├── ftv2ns.png │ │ │ │ ├── ftv2plastnode.png │ │ │ │ ├── ftv2pnode.png │ │ │ │ ├── ftv2splitbar.png │ │ │ │ ├── ftv2vertline.png │ │ │ │ ├── functions.html │ │ │ │ ├── functions_vars.html │ │ │ │ ├── globals.html │ │ │ │ ├── globals_defs.html │ │ │ │ ├── globals_enum.html │ │ │ │ ├── globals_eval.html │ │ │ │ ├── globals_func.html │ │ │ │ ├── globals_type.html │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s.html │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s.js │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___definitions.html │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___definitions.js │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___inter_thread.html │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___inter_thread.js │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___kernel_ctrl.html │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___kernel_ctrl.js │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___mail.html │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___mail.js │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___message.html │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___message.js │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___mutex_mgmt.html │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___mutex_mgmt.js │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___pool_mgmt.html │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___pool_mgmt.js │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___semaphore_mgmt.html │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___semaphore_mgmt.js │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___signal_mgmt.html │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___signal_mgmt.js │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___status.html │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___status.js │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___thread_mgmt.html │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___thread_mgmt.js │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___timer_mgmt.html │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___timer_mgmt.js │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___wait.html │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___wait.js │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── modules.html │ │ │ │ ├── modules.js │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── navtree.css │ │ │ │ ├── navtree.js │ │ │ │ ├── navtreeindex0.js │ │ │ │ ├── open.png │ │ │ │ ├── pages.html │ │ │ │ ├── printComponentTabs.js │ │ │ │ ├── resize.js │ │ │ │ ├── rtos_revision_history.html │ │ │ │ ├── simple_signal.png │ │ │ │ ├── structos_mail_q_def__t.html │ │ │ │ ├── structos_mail_q_def__t.js │ │ │ │ ├── structos_message_q_def__t.html │ │ │ │ ├── structos_message_q_def__t.js │ │ │ │ ├── structos_mutex_def__t.html │ │ │ │ ├── structos_mutex_def__t.js │ │ │ │ ├── structos_pool_def__t.html │ │ │ │ ├── structos_pool_def__t.js │ │ │ │ ├── structos_semaphore_def__t.html │ │ │ │ ├── structos_semaphore_def__t.js │ │ │ │ ├── structos_thread_def__t.html │ │ │ │ ├── structos_thread_def__t.js │ │ │ │ ├── structos_timer_def__t.html │ │ │ │ ├── structos_timer_def__t.js │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ ├── tab_topnav.png │ │ │ │ └── tabs.css │ │ └── index.html │ ├── 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 │ ├── Lib │ │ ├── ARM │ │ │ ├── arm_cortexM3b_math.lib │ │ │ └── arm_cortexM3l_math.lib │ │ ├── GCC │ │ │ └── libarm_cortexM3l_math.a │ │ └── license.txt │ ├── RTOS │ │ └── Template │ │ │ └── cmsis_os.h │ └── index.html └── STM32F1xx_HAL_Driver │ ├── Inc │ ├── Legacy │ │ └── stm32_hal_legacy.h │ ├── stm32f1xx_hal.h │ ├── stm32f1xx_hal_adc.h │ ├── stm32f1xx_hal_adc_ex.h │ ├── stm32f1xx_hal_can.h │ ├── stm32f1xx_hal_can_ex.h │ ├── stm32f1xx_hal_cec.h │ ├── stm32f1xx_hal_conf_template.h │ ├── stm32f1xx_hal_cortex.h │ ├── stm32f1xx_hal_crc.h │ ├── stm32f1xx_hal_dac.h │ ├── stm32f1xx_hal_dac_ex.h │ ├── stm32f1xx_hal_def.h │ ├── stm32f1xx_hal_dma.h │ ├── stm32f1xx_hal_dma_ex.h │ ├── stm32f1xx_hal_eth.h │ ├── stm32f1xx_hal_flash.h │ ├── stm32f1xx_hal_flash_ex.h │ ├── stm32f1xx_hal_gpio.h │ ├── stm32f1xx_hal_gpio_ex.h │ ├── stm32f1xx_hal_hcd.h │ ├── stm32f1xx_hal_i2c.h │ ├── stm32f1xx_hal_i2s.h │ ├── stm32f1xx_hal_irda.h │ ├── stm32f1xx_hal_iwdg.h │ ├── stm32f1xx_hal_nand.h │ ├── stm32f1xx_hal_nor.h │ ├── stm32f1xx_hal_pccard.h │ ├── stm32f1xx_hal_pcd.h │ ├── stm32f1xx_hal_pcd_ex.h │ ├── stm32f1xx_hal_pwr.h │ ├── stm32f1xx_hal_rcc.h │ ├── stm32f1xx_hal_rcc_ex.h │ ├── stm32f1xx_hal_rtc.h │ ├── stm32f1xx_hal_rtc_ex.h │ ├── stm32f1xx_hal_sd.h │ ├── stm32f1xx_hal_smartcard.h │ ├── stm32f1xx_hal_spi.h │ ├── stm32f1xx_hal_sram.h │ ├── stm32f1xx_hal_tim.h │ ├── stm32f1xx_hal_tim_ex.h │ ├── stm32f1xx_hal_uart.h │ ├── stm32f1xx_hal_usart.h │ ├── stm32f1xx_hal_wwdg.h │ ├── stm32f1xx_ll_fsmc.h │ ├── stm32f1xx_ll_sdmmc.h │ └── stm32f1xx_ll_usb.h │ ├── Release_Notes.html │ ├── STM32F100xE_User_Manual.chm │ ├── STM32F103xG_User_Manual.chm │ ├── STM32F107xC_User_Manual.chm │ └── Src │ ├── stm32f1xx_hal.c │ ├── stm32f1xx_hal_adc.c │ ├── stm32f1xx_hal_adc_ex.c │ ├── stm32f1xx_hal_can.c │ ├── stm32f1xx_hal_cec.c │ ├── stm32f1xx_hal_cortex.c │ ├── stm32f1xx_hal_crc.c │ ├── stm32f1xx_hal_dac.c │ ├── stm32f1xx_hal_dac_ex.c │ ├── stm32f1xx_hal_dma.c │ ├── stm32f1xx_hal_eth.c │ ├── stm32f1xx_hal_flash.c │ ├── stm32f1xx_hal_flash_ex.c │ ├── stm32f1xx_hal_gpio.c │ ├── stm32f1xx_hal_gpio_ex.c │ ├── stm32f1xx_hal_hcd.c │ ├── stm32f1xx_hal_i2c.c │ ├── stm32f1xx_hal_i2s.c │ ├── stm32f1xx_hal_irda.c │ ├── stm32f1xx_hal_iwdg.c │ ├── stm32f1xx_hal_msp_template.c │ ├── stm32f1xx_hal_nand.c │ ├── stm32f1xx_hal_nor.c │ ├── stm32f1xx_hal_pccard.c │ ├── stm32f1xx_hal_pcd.c │ ├── stm32f1xx_hal_pcd_ex.c │ ├── stm32f1xx_hal_pwr.c │ ├── stm32f1xx_hal_rcc.c │ ├── stm32f1xx_hal_rcc_ex.c │ ├── stm32f1xx_hal_rtc.c │ ├── stm32f1xx_hal_rtc_ex.c │ ├── stm32f1xx_hal_sd.c │ ├── stm32f1xx_hal_smartcard.c │ ├── stm32f1xx_hal_spi.c │ ├── stm32f1xx_hal_spi_ex.c │ ├── stm32f1xx_hal_sram.c │ ├── stm32f1xx_hal_tim.c │ ├── stm32f1xx_hal_tim_ex.c │ ├── stm32f1xx_hal_uart.c │ ├── stm32f1xx_hal_usart.c │ ├── stm32f1xx_hal_wwdg.c │ ├── stm32f1xx_ll_fsmc.c │ ├── stm32f1xx_ll_sdmmc.c │ └── stm32f1xx_ll_usb.c ├── Inc ├── ADC_L.h ├── ADC_R.h ├── application.h ├── delay.h ├── i2c.h ├── main.h ├── motor_L.h ├── motor_R.h ├── pid.h ├── stm32f1xx_hal_conf.h ├── stm32f1xx_it.h ├── telemetry.h ├── uart.h └── varie.h ├── Makefile ├── README.md ├── STM32F103RCTx_FLASH.ld ├── Src ├── ADC_L.c ├── ADC_R.c ├── application.c ├── delay.c ├── i2c.c ├── main.c ├── motor_L.c ├── motor_R.c ├── pid.c ├── startup_stm32f103xe.s ├── stm32f1xx_hal_msp.c ├── stm32f1xx_it.c ├── system_stm32f1xx.c ├── telemetry.c ├── uart.c └── varie.c ├── build ├── hoverboard.bin ├── hoverboard.elf └── hoverboard.hex ├── pinout.png ├── startup_stm32f103xe.s └── weelchair motor hack.ioc /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.d 3 | *.lst 4 | *.map 5 | 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/CMSIS_END_USER_LICENCE_AGREEMENT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/CMSIS_END_USER_LICENCE_AGREEMENT.pdf -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/Abstract.txt: -------------------------------------------------------------------------------- 1 | CMSIS DSP_Lib example arm_class_marks_example for 2 | Cortex-M0, Cortex-M3 and Cortex-M4 with FPU 3 | 4 | The example is configured for uVision Simulator 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/Abstract.txt: -------------------------------------------------------------------------------- 1 | CMSIS DSP_Lib example arm_class_marks_example for 2 | Cortex-M0, Cortex-M3 and Cortex-M4 with FPU 3 | 4 | The example is configured for uVision Simulator 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/Abstract.txt: -------------------------------------------------------------------------------- 1 | CMSIS DSP_Lib example arm_convolution_example for 2 | Cortex-M0, Cortex-M3 and Cortex-M4 with FPU 3 | 4 | The example is configured for uVision Simulator 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/Abstract.txt: -------------------------------------------------------------------------------- 1 | CMSIS DSP_Lib example arm_convolution_example for 2 | Cortex-M0, Cortex-M3 and Cortex-M4 with FPU 3 | 4 | The example is configured for uVision Simulator 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/Abstract.txt: -------------------------------------------------------------------------------- 1 | CMSIS DSP_Lib example arm_dotproduct_example for 2 | Cortex-M0, Cortex-M3 and Cortex-M4 with FPU 3 | 4 | The example is configured for uVision Simulator 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/GCC/Abstract.txt: -------------------------------------------------------------------------------- 1 | CMSIS DSP_Lib example arm_dotproduct_example for 2 | Cortex-M0, Cortex-M3 and Cortex-M4 with FPU 3 | 4 | The example is configured for uVision Simulator 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/Abstract.txt: -------------------------------------------------------------------------------- 1 | CMSIS DSP_Lib example arm_fft_bin_example for 2 | Cortex-M0, Cortex-M3 and Cortex-M4 with FPU 3 | 4 | The example is configured for uVision Simulator 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/GCC/Abstract.txt: -------------------------------------------------------------------------------- 1 | CMSIS DSP_Lib example arm_fft_bin_example for 2 | Cortex-M0, Cortex-M3 and Cortex-M4 with FPU 3 | 4 | The example is configured for uVision Simulator 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/Abstract.txt: -------------------------------------------------------------------------------- 1 | CMSIS DSP_Lib example arm_fir_example for 2 | Cortex-M0, Cortex-M3 and Cortex-M4 with FPU 3 | 4 | The example is configured for uVision Simulator 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/Abstract.txt: -------------------------------------------------------------------------------- 1 | CMSIS DSP_Lib example arm_graphic_equalizer_example for 2 | Cortex-M0, Cortex-M3 and Cortex-M4 with FPU 3 | 4 | The example is configured for uVision Simulator 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/Abstract.txt: -------------------------------------------------------------------------------- 1 | CMSIS DSP_Lib example arm_linear_interp_example for 2 | Cortex-M0, Cortex-M3 and Cortex-M4 with FPU 3 | 4 | The example is configured for uVision Simulator 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/Abstract.txt: -------------------------------------------------------------------------------- 1 | CMSIS DSP_Lib example arm_matrix_example for 2 | Cortex-M0, Cortex-M3 and Cortex-M4 with FPU 3 | 4 | The example is configured for uVision Simulator 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/Abstract.txt: -------------------------------------------------------------------------------- 1 | CMSIS DSP_Lib example arm_signal_converge_example for 2 | Cortex-M0, Cortex-M3 and Cortex-M4 with FPU 3 | 4 | The example is configured for uVision Simulator 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/Abstract.txt: -------------------------------------------------------------------------------- 1 | CMSIS DSP_Lib example arm_sin_cos_example for 2 | Cortex-M0, Cortex-M3 and Cortex-M4 with FPU 3 | 4 | The example is configured for uVision Simulator 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/Abstract.txt: -------------------------------------------------------------------------------- 1 | CMSIS DSP_Lib example arm_variance_example for 2 | Cortex-M0, Cortex-M3 and Cortex-M4 with FPU 3 | 4 | The example is configured for uVision Simulator 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f100xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f100xb.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f100xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f100xe.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f101x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f101x6.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f101xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f101xb.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f101xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f101xe.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f101xg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f101xg.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f102x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f102x6.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f102xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f102xb.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103x6.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xe.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xg.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f105xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f105xc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f107xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f107xc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F100XB_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F100XB_FLASH.ld -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F100XE_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F100XE_FLASH.ld -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F101X6_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F101X6_FLASH.ld -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F101XB_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F101XB_FLASH.ld -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F101XE_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F101XE_FLASH.ld -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F101XG_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F101XG_FLASH.ld -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F102X6_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F102X6_FLASH.ld -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F102XB_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F102XB_FLASH.ld -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F103X6_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F103X6_FLASH.ld -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F103XB_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F103XB_FLASH.ld -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F103XE_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F103XE_FLASH.ld -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F103XG_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F103XG_FLASH.ld -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F105XC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F105XC_FLASH.ld -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F107XC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/linker/STM32F107XC_FLASH.ld -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/CMSIS_CORE_Files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/CMSIS_CORE_Files.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/CMSIS_CORE_Files_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/CMSIS_CORE_Files_user.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/_using_pg.js: -------------------------------------------------------------------------------- 1 | var _using_pg = 2 | [ 3 | [ "Basic CMSIS Example", "_using__c_m_s_i_s.html", null ], 4 | [ "Using Interrupt Vector Remap", "_using__v_t_o_r_pg.html", null ], 5 | [ "Using CMSIS with generic ARM Processors", "_using__a_r_m_pg.html", [ 6 | [ "Create generic Libraries with CMSIS", "_using__a_r_m_pg.html#Using_ARM_Lib_sec", null ] 7 | ] ] 8 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/bc_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/bdwn.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/check.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/closed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/doxygen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/ftv2blank.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/ftv2cl.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/ftv2doc.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/ftv2folderopen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/ftv2lastnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/ftv2link.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/ftv2mnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/ftv2mo.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/ftv2node.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/ftv2ns.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/ftv2plastnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/ftv2pnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/ftv2splitbar.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/ftv2vertline.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/group___i_t_m___debug__gr.js: -------------------------------------------------------------------------------- 1 | var group___i_t_m___debug__gr = 2 | [ 3 | [ "ITM_CheckChar", "group___i_t_m___debug__gr.html#ga7f9bbabd9756d1a7eafb2d9bf27e0535", null ], 4 | [ "ITM_ReceiveChar", "group___i_t_m___debug__gr.html#ga37b8f41cae703b5ff6947e271065558c", null ], 5 | [ "ITM_SendChar", "group___i_t_m___debug__gr.html#gaaa7c716331f74d644bf6bf25cd3392d1", null ], 6 | [ "ITM_RxBuffer", "group___i_t_m___debug__gr.html#ga12e68e55a7badc271b948d6c7230b2a8", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/group___icache__functions__m7.js: -------------------------------------------------------------------------------- 1 | var group___icache__functions__m7 = 2 | [ 3 | [ "SCB_DisableICache", "group___icache__functions__m7.html#gaba757390852f95b3ac2d8638c717d8d8", null ], 4 | [ "SCB_EnableICache", "group___icache__functions__m7.html#gaf9e7c6c8e16ada1f95e5bf5a03505b68", null ], 5 | [ "SCB_InvalidateICache", "group___icache__functions__m7.html#ga50d373a785edd782c5de5a3b55e30ff3", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/group___sys_tick__gr.js: -------------------------------------------------------------------------------- 1 | var group___sys_tick__gr = 2 | [ 3 | [ "SysTick_Config", "group___sys_tick__gr.html#gabe47de40e9b0ad465b752297a9d9f427", null ] 4 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/group__cache__functions__m7.js: -------------------------------------------------------------------------------- 1 | var group__cache__functions__m7 = 2 | [ 3 | [ "I-Cache Functions", "group___icache__functions__m7.html", "group___icache__functions__m7" ], 4 | [ "D-Cache Functions", "group___dcache__functions__m7.html", "group___dcache__functions__m7" ] 5 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/group__fpu__functions__m7.js: -------------------------------------------------------------------------------- 1 | var group__fpu__functions__m7 = 2 | [ 3 | [ "SCB_GetFPUType", "group__fpu__functions__m7.html#ga6bcad99ce80a0e7e4ddc6f2379081756", null ] 4 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/group__peripheral__gr.js: -------------------------------------------------------------------------------- 1 | var group__peripheral__gr = 2 | [ 3 | [ "_FLD2VAL", "group__peripheral__gr.html#ga139b6e261c981f014f386927ca4a8444", null ], 4 | [ "_VAL2FLD", "group__peripheral__gr.html#ga286e3b913dbd236c7f48ea70c8821f4e", null ] 5 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/group__system__init__gr.js: -------------------------------------------------------------------------------- 1 | var group__system__init__gr = 2 | [ 3 | [ "SystemCoreClockUpdate", "group__system__init__gr.html#gae0c36a9591fe6e9c45ecb21a794f0f0f", null ], 4 | [ "SystemInit", "group__system__init__gr.html#ga93f514700ccf00d08dbdcff7f1224eb2", null ], 5 | [ "SystemCoreClock", "group__system__init__gr.html#gaa3cd3e43291e81e795d642b79b6088e6", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/nav_f.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/nav_g.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/nav_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/open.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/all_61.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['acpr',['ACPR',['../struct_t_p_i___type.html#a9e5e4421ef9c3d5b7ff8b24abd4e99b3',1,'TPI_Type']]], 4 | ['actlr',['ACTLR',['../struct_s_cn_s_c_b___type.html#a13af9b718dde7481f1c0344f00593c23',1,'SCnSCB_Type']]], 5 | ['adr',['ADR',['../struct_s_c_b___type.html#af084e1b2dad004a88668efea1dfe7fa1',1,'SCB_Type']]], 6 | ['afsr',['AFSR',['../struct_s_c_b___type.html#ab65372404ce64b0f0b35e2709429404e',1,'SCB_Type']]], 7 | ['aircr',['AIRCR',['../struct_s_c_b___type.html#ad3e5b8934c647eb1b7383c1894f01380',1,'SCB_Type']]], 8 | ['apsr_5ftype',['APSR_Type',['../union_a_p_s_r___type.html',1,'']]] 9 | ]; 10 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/all_65.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['exccnt',['EXCCNT',['../struct_d_w_t___type.html#a9fe20c16c5167ca61486caf6832686d1',1,'DWT_Type']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/all_68.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['hardfault_5firqn',['HardFault_IRQn',['../group___n_v_i_c__gr.html#gga7e1129cd8a196f4284d41db3e82ad5c8ab1a222a34a32f0ef5ac65e714efc1f85',1,'Ref_NVIC.txt']]], 4 | ['hfsr',['HFSR',['../struct_s_c_b___type.html#a14ad254659362b9752c69afe3fd80934',1,'SCB_Type']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/all_6c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['load',['LOAD',['../struct_sys_tick___type.html#a4780a489256bb9f54d0ba8ed4de191cd',1,'SysTick_Type']]], 4 | ['lsucnt',['LSUCNT',['../struct_d_w_t___type.html#acc05d89bdb1b4fe2fa499920ec02d0b1',1,'DWT_Type']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/all_6f.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['overview',['Overview',['../index.html',1,'']]], 4 | ['overview_2etxt',['Overview.txt',['../_overview_8txt.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/all_71.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['q',['Q',['../union_a_p_s_r___type.html#a22d10913489d24ab08bd83457daa88de',1,'APSR_Type::Q()'],['../unionx_p_s_r___type.html#add7cbd2b0abd8954d62cd7831796ac7c',1,'xPSR_Type::Q()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/all_76.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['v',['V',['../union_a_p_s_r___type.html#a8004d224aacb78ca37774c35f9156e7e',1,'APSR_Type::V()'],['../unionx_p_s_r___type.html#af14df16ea0690070c45b95f2116b7a0a',1,'xPSR_Type::V()']]], 4 | ['val',['VAL',['../struct_sys_tick___type.html#a9b5420d17e8e43104ddd4ae5a610af93',1,'SysTick_Type']]], 5 | ['vtor',['VTOR',['../struct_s_c_b___type.html#a187a4578e920544ed967f98020fb8170',1,'SCB_Type']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/all_77.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['w',['w',['../union_a_p_s_r___type.html#ae4c2ef8c9430d7b7bef5cbfbbaed3a94',1,'APSR_Type::w()'],['../union_i_p_s_r___type.html#a4adca999d3a0bc1ae682d73ea7cfa879',1,'IPSR_Type::w()'],['../unionx_p_s_r___type.html#a1a47176768f45f79076c4f5b1b534bc2',1,'xPSR_Type::w()'],['../union_c_o_n_t_r_o_l___type.html#a6b642cca3d96da660b1198c133ca2a1f',1,'CONTROL_Type::w()']]], 4 | ['wwdg_5fstm_5firqn',['WWDG_STM_IRQn',['../group___n_v_i_c__gr.html#gga7e1129cd8a196f4284d41db3e82ad5c8aa62e040960b4beb6cba107e4703c12d2',1,'Ref_NVIC.txt']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/all_78.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['xpsr_5ftype',['xPSR_Type',['../unionx_p_s_r___type.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/all_7a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['z',['Z',['../union_a_p_s_r___type.html#a3b04d58738b66a28ff13f23d8b0ba7e5',1,'APSR_Type::Z()'],['../unionx_p_s_r___type.html#a1e5d9801013d5146f2e02d9b7b3da562',1,'xPSR_Type::Z()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/classes_61.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['apsr_5ftype',['APSR_Type',['../union_a_p_s_r___type.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/classes_63.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['control_5ftype',['CONTROL_Type',['../union_c_o_n_t_r_o_l___type.html',1,'']]], 4 | ['coredebug_5ftype',['CoreDebug_Type',['../struct_core_debug___type.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/classes_64.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['dwt_5ftype',['DWT_Type',['../struct_d_w_t___type.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/classes_66.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['fpu_5ftype',['FPU_Type',['../struct_f_p_u___type.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/classes_69.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['ipsr_5ftype',['IPSR_Type',['../union_i_p_s_r___type.html',1,'']]], 4 | ['itm_5ftype',['ITM_Type',['../struct_i_t_m___type.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/classes_6d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['mpu_5ftype',['MPU_Type',['../struct_m_p_u___type.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/classes_6e.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['nvic_5ftype',['NVIC_Type',['../struct_n_v_i_c___type.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/classes_73.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['scb_5ftype',['SCB_Type',['../struct_s_c_b___type.html',1,'']]], 4 | ['scnscb_5ftype',['SCnSCB_Type',['../struct_s_cn_s_c_b___type.html',1,'']]], 5 | ['systick_5ftype',['SysTick_Type',['../struct_sys_tick___type.html',1,'']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/classes_74.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['tpi_5ftype',['TPI_Type',['../struct_t_p_i___type.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/classes_78.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['xpsr_5ftype',['xPSR_Type',['../unionx_p_s_r___type.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/search/close.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/enums_69.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['irqn_5ftype',['IRQn_Type',['../group___n_v_i_c__gr.html#ga7e1129cd8a196f4284d41db3e82ad5c8',1,'Ref_NVIC.txt']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/enumvalues_62.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['busfault_5firqn',['BusFault_IRQn',['../group___n_v_i_c__gr.html#gga7e1129cd8a196f4284d41db3e82ad5c8a8693500eff174f16119e96234fee73af',1,'Ref_NVIC.txt']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/enumvalues_64.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['debugmonitor_5firqn',['DebugMonitor_IRQn',['../group___n_v_i_c__gr.html#gga7e1129cd8a196f4284d41db3e82ad5c8a8e033fcef7aed98a31c60a7de206722c',1,'Ref_NVIC.txt']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/enumvalues_68.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['hardfault_5firqn',['HardFault_IRQn',['../group___n_v_i_c__gr.html#gga7e1129cd8a196f4284d41db3e82ad5c8ab1a222a34a32f0ef5ac65e714efc1f85',1,'Ref_NVIC.txt']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/enumvalues_6d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['memorymanagement_5firqn',['MemoryManagement_IRQn',['../group___n_v_i_c__gr.html#gga7e1129cd8a196f4284d41db3e82ad5c8a33ff1cf7098de65d61b6354fee6cd5aa',1,'Ref_NVIC.txt']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/enumvalues_6e.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['nonmaskableint_5firqn',['NonMaskableInt_IRQn',['../group___n_v_i_c__gr.html#gga7e1129cd8a196f4284d41db3e82ad5c8ade177d9c70c89e084093024b932a4e30',1,'Ref_NVIC.txt']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/enumvalues_70.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['pendsv_5firqn',['PendSV_IRQn',['../group___n_v_i_c__gr.html#gga7e1129cd8a196f4284d41db3e82ad5c8a03c3cc89984928816d81793fc7bce4a2',1,'Ref_NVIC.txt']]], 4 | ['pvd_5fstm_5firqn',['PVD_STM_IRQn',['../group___n_v_i_c__gr.html#gga7e1129cd8a196f4284d41db3e82ad5c8a853e0f318108110e0527f29733d11f86',1,'Ref_NVIC.txt']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/enumvalues_73.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['svcall_5firqn',['SVCall_IRQn',['../group___n_v_i_c__gr.html#gga7e1129cd8a196f4284d41db3e82ad5c8a4ce820b3cc6cf3a796b41aadc0cf1237',1,'Ref_NVIC.txt']]], 4 | ['systick_5firqn',['SysTick_IRQn',['../group___n_v_i_c__gr.html#gga7e1129cd8a196f4284d41db3e82ad5c8a6dbff8f8543325f3474cbae2446776e7',1,'Ref_NVIC.txt']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/enumvalues_75.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['usagefault_5firqn',['UsageFault_IRQn',['../group___n_v_i_c__gr.html#gga7e1129cd8a196f4284d41db3e82ad5c8a6895237c9443601ac832efa635dd8bbf',1,'Ref_NVIC.txt']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/enumvalues_77.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['wwdg_5fstm_5firqn',['WWDG_STM_IRQn',['../group___n_v_i_c__gr.html#gga7e1129cd8a196f4284d41db3e82ad5c8aa62e040960b4beb6cba107e4703c12d2',1,'Ref_NVIC.txt']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/files_63.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['core_5fcm7_2etxt',['core_cm7.txt',['../core__cm7_8txt.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/files_6d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['misra_2etxt',['MISRA.txt',['../_m_i_s_r_a_8txt.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/files_6f.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['overview_2etxt',['Overview.txt',['../_overview_8txt.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/files_74.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['template_2etxt',['Template.txt',['../_template_8txt.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/files_75.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['using_2etxt',['Using.txt',['../_using_8txt.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/functions_69.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['itm_5fcheckchar',['ITM_CheckChar',['../group___i_t_m___debug__gr.html#ga7f9bbabd9756d1a7eafb2d9bf27e0535',1,'Ref_Debug.txt']]], 4 | ['itm_5freceivechar',['ITM_ReceiveChar',['../group___i_t_m___debug__gr.html#ga37b8f41cae703b5ff6947e271065558c',1,'Ref_Debug.txt']]], 5 | ['itm_5fsendchar',['ITM_SendChar',['../group___i_t_m___debug__gr.html#gaaa7c716331f74d644bf6bf25cd3392d1',1,'Ref_Debug.txt']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/groups_63.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['cache_20functions_20_20_28only_20cortex_2dm7_29',['Cache Functions (only Cortex-M7)',['../group__cache__functions__m7.html',1,'']]], 4 | ['core_20register_20access',['Core Register Access',['../group___core___register__gr.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/groups_64.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['d_2dcache_20functions',['D-Cache Functions',['../group___dcache__functions__m7.html',1,'']]], 4 | ['debug_20access',['Debug Access',['../group___i_t_m___debug__gr.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/groups_66.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['fpu_20functions_20_28only_20cortex_2dm7_29',['FPU Functions (only Cortex-M7)',['../group__fpu__functions__m7.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/groups_69.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['i_2dcache_20functions',['I-Cache Functions',['../group___icache__functions__m7.html',1,'']]], 4 | ['intrinsic_20functions_20for_20cpu_20instructions',['Intrinsic Functions for CPU Instructions',['../group__intrinsic___c_p_u__gr.html',1,'']]], 5 | ['intrinsic_20functions_20for_20simd_20instructions_20_5bonly_20cortex_2dm4_20and_20cortex_2dm7_5d',['Intrinsic Functions for SIMD Instructions [only Cortex-M4 and Cortex-M7]',['../group__intrinsic___s_i_m_d__gr.html',1,'']]], 6 | ['interrupts_20and_20exceptions_20_28nvic_29',['Interrupts and Exceptions (NVIC)',['../group___n_v_i_c__gr.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/groups_70.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['peripheral_20access',['Peripheral Access',['../group__peripheral__gr.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/groups_73.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['system_20and_20clock_20configuration',['System and Clock Configuration',['../group__system__init__gr.html',1,'']]], 4 | ['systick_20timer_20_28systick_29',['Systick Timer (SYSTICK)',['../group___sys_tick__gr.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/search/mag_sel.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/nomatches.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
No Matches
10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/pages_62.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['basic_20cmsis_20example',['Basic CMSIS Example',['../_using__c_m_s_i_s.html',1,'Using_pg']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/pages_64.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['device_20header_20file_20_3cdevice_2eh_3e',['Device Header File <device.h>',['../device_h_pg.html',1,'Templates_pg']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/pages_6d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['misra_2dc_3a2004_20compliance_20exceptions',['MISRA-C:2004 Compliance Exceptions',['../_c_o_r_e__m_i_s_r_a__exceptions_pg.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/pages_6f.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['overview',['Overview',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/pages_72.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['revision_20history_20of_20cmsis_2dcore',['Revision History of CMSIS-CORE',['../core_revision_history.html',1,'']]], 4 | ['register_20mapping',['Register Mapping',['../_reg_map_pg.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/pages_73.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['startup_20file_20startup_5f_3cdevice_3e_2es',['Startup File startup_<device>.s',['../startup_s_pg.html',1,'Templates_pg']]], 4 | ['system_20configuration_20files_20system_5f_3cdevice_3e_2ec_20and_20system_5f_3cdevice_3e_2eh',['System Configuration Files system_<device>.c and system_<device>.h',['../system_c_pg.html',1,'Templates_pg']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/pages_74.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['template_20files',['Template Files',['../_templates_pg.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/pages_75.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['using_20cmsis_20with_20generic_20arm_20processors',['Using CMSIS with generic ARM Processors',['../_using__a_r_m_pg.html',1,'Using_pg']]], 4 | ['using_20cmsis_20in_20embedded_20applications',['Using CMSIS in Embedded Applications',['../_using_pg.html',1,'']]], 5 | ['using_20interrupt_20vector_20remap',['Using Interrupt Vector Remap',['../_using__v_t_o_r_pg.html',1,'Using_pg']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/search/search_l.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/search/search_m.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/search/search_r.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/variables_5f.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['_5freserved0',['_reserved0',['../union_a_p_s_r___type.html#afbce95646fd514c10aa85ec0a33db728',1,'APSR_Type::_reserved0()'],['../union_i_p_s_r___type.html#ad2eb0a06de4f03f58874a727716aa9aa',1,'IPSR_Type::_reserved0()'],['../unionx_p_s_r___type.html#af438e0f407357e914a70b5bd4d6a97c5',1,'xPSR_Type::_reserved0()'],['../union_c_o_n_t_r_o_l___type.html#af8c314273a1e4970a5671bd7f8184f50',1,'CONTROL_Type::_reserved0()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/variables_61.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['acpr',['ACPR',['../struct_t_p_i___type.html#a9e5e4421ef9c3d5b7ff8b24abd4e99b3',1,'TPI_Type']]], 4 | ['actlr',['ACTLR',['../struct_s_cn_s_c_b___type.html#a13af9b718dde7481f1c0344f00593c23',1,'SCnSCB_Type']]], 5 | ['adr',['ADR',['../struct_s_c_b___type.html#af084e1b2dad004a88668efea1dfe7fa1',1,'SCB_Type']]], 6 | ['afsr',['AFSR',['../struct_s_c_b___type.html#ab65372404ce64b0f0b35e2709429404e',1,'SCB_Type']]], 7 | ['aircr',['AIRCR',['../struct_s_c_b___type.html#ad3e5b8934c647eb1b7383c1894f01380',1,'SCB_Type']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/variables_62.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['b',['b',['../union_a_p_s_r___type.html#a7dbc79a057ded4b11ca5323fc2d5ab14',1,'APSR_Type::b()'],['../union_i_p_s_r___type.html#add0d6497bd50c25569ea22b48a03ec50',1,'IPSR_Type::b()'],['../unionx_p_s_r___type.html#a3b1063bb5cdad67e037cba993b693b70',1,'xPSR_Type::b()'],['../union_c_o_n_t_r_o_l___type.html#adc6a38ab2980d0e9577b5a871da14eb9',1,'CONTROL_Type::b()']]], 4 | ['bfar',['BFAR',['../struct_s_c_b___type.html#a3f8e7e58be4e41c88dfa78f54589271c',1,'SCB_Type']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/variables_65.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['exccnt',['EXCCNT',['../struct_d_w_t___type.html#a9fe20c16c5167ca61486caf6832686d1',1,'DWT_Type']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/variables_68.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['hfsr',['HFSR',['../struct_s_c_b___type.html#a14ad254659362b9752c69afe3fd80934',1,'SCB_Type']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/variables_6c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['load',['LOAD',['../struct_sys_tick___type.html#a4780a489256bb9f54d0ba8ed4de191cd',1,'SysTick_Type']]], 4 | ['lsucnt',['LSUCNT',['../struct_d_w_t___type.html#acc05d89bdb1b4fe2fa499920ec02d0b1',1,'DWT_Type']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/variables_6e.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['n',['N',['../union_a_p_s_r___type.html#a7e7bbba9b00b0bb3283dc07f1abe37e0',1,'APSR_Type::N()'],['../unionx_p_s_r___type.html#a2db9a52f6d42809627d1a7a607c5dbc5',1,'xPSR_Type::N()']]], 4 | ['npriv',['nPRIV',['../union_c_o_n_t_r_o_l___type.html#a35c1732cf153b7b5c4bd321cf1de9605',1,'CONTROL_Type']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/variables_70.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['pcsr',['PCSR',['../struct_d_w_t___type.html#a6353ca1d1ad9bc1be05d3b5632960113',1,'DWT_Type']]], 4 | ['pfr',['PFR',['../struct_s_c_b___type.html#a681c9d9e518b217976bef38c2423d83d',1,'SCB_Type']]], 5 | ['port',['PORT',['../struct_i_t_m___type.html#af4c205be465780a20098387120bdb482',1,'ITM_Type']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/variables_71.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['q',['Q',['../union_a_p_s_r___type.html#a22d10913489d24ab08bd83457daa88de',1,'APSR_Type::Q()'],['../unionx_p_s_r___type.html#add7cbd2b0abd8954d62cd7831796ac7c',1,'xPSR_Type::Q()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/variables_74.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['t',['T',['../unionx_p_s_r___type.html#a7eed9fe24ae8d354cd76ae1c1110a658',1,'xPSR_Type']]], 4 | ['tcr',['TCR',['../struct_i_t_m___type.html#a04b9fbc83759cb818dfa161d39628426',1,'ITM_Type']]], 5 | ['ter',['TER',['../struct_i_t_m___type.html#acd03c6858f7b678dab6a6121462e7807',1,'ITM_Type']]], 6 | ['tpr',['TPR',['../struct_i_t_m___type.html#ae907229ba50538bf370fbdfd54c099a2',1,'ITM_Type']]], 7 | ['trigger',['TRIGGER',['../struct_t_p_i___type.html#a4d4cd2357f72333a82a1313228287bbd',1,'TPI_Type']]], 8 | ['type',['TYPE',['../struct_m_p_u___type.html#a0433efc1383674bc8e86cc0e830b462d',1,'MPU_Type']]] 9 | ]; 10 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/variables_75.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['u16',['u16',['../struct_i_t_m___type.html#a962a970dfd286cad7f8a8577e87d4ad3',1,'ITM_Type']]], 4 | ['u32',['u32',['../struct_i_t_m___type.html#a5834885903a557674f078f3b71fa8bc8',1,'ITM_Type']]], 5 | ['u8',['u8',['../struct_i_t_m___type.html#ae773bf9f9dac64e6c28b14aa39f74275',1,'ITM_Type']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/variables_76.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['v',['V',['../union_a_p_s_r___type.html#a8004d224aacb78ca37774c35f9156e7e',1,'APSR_Type::V()'],['../unionx_p_s_r___type.html#af14df16ea0690070c45b95f2116b7a0a',1,'xPSR_Type::V()']]], 4 | ['val',['VAL',['../struct_sys_tick___type.html#a9b5420d17e8e43104ddd4ae5a610af93',1,'SysTick_Type']]], 5 | ['vtor',['VTOR',['../struct_s_c_b___type.html#a187a4578e920544ed967f98020fb8170',1,'SCB_Type']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/variables_77.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['w',['w',['../union_a_p_s_r___type.html#ae4c2ef8c9430d7b7bef5cbfbbaed3a94',1,'APSR_Type::w()'],['../union_i_p_s_r___type.html#a4adca999d3a0bc1ae682d73ea7cfa879',1,'IPSR_Type::w()'],['../unionx_p_s_r___type.html#a1a47176768f45f79076c4f5b1b534bc2',1,'xPSR_Type::w()'],['../union_c_o_n_t_r_o_l___type.html#a6b642cca3d96da660b1198c133ca2a1f',1,'CONTROL_Type::w()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/search/variables_7a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['z',['Z',['../union_a_p_s_r___type.html#a3b04d58738b66a28ff13f23d8b0ba7e5',1,'APSR_Type::Z()'],['../unionx_p_s_r___type.html#a1e5d9801013d5146f2e02d9b7b3da562',1,'xPSR_Type::Z()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/struct_core_debug___type.js: -------------------------------------------------------------------------------- 1 | var struct_core_debug___type = 2 | [ 3 | [ "DCRDR", "struct_core_debug___type.html#aab3cc92ef07bc1f04b3a3aa6db2c2d55", null ], 4 | [ "DCRSR", "struct_core_debug___type.html#af907cf64577eaf927dac6787df6dd98b", null ], 5 | [ "DEMCR", "struct_core_debug___type.html#aeb3126abc4c258a858f21f356c0df6ee", null ], 6 | [ "DHCSR", "struct_core_debug___type.html#ad63554e4650da91a8e79929cbb63db66", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/struct_f_p_u___type.js: -------------------------------------------------------------------------------- 1 | var struct_f_p_u___type = 2 | [ 3 | [ "FPCAR", "struct_f_p_u___type.html#a55263b468d0f8e11ac77aec9ff87c820", null ], 4 | [ "FPCCR", "struct_f_p_u___type.html#af1b708c5e413739150df3d16ca3b7061", null ], 5 | [ "FPDSCR", "struct_f_p_u___type.html#a58d1989664a06db6ec2e122eefa9f04a", null ], 6 | [ "MVFR0", "struct_f_p_u___type.html#a4f19014defe6033d070b80af19ef627c", null ], 7 | [ "MVFR1", "struct_f_p_u___type.html#a66f8cfa49a423b480001a4e101bf842d", null ], 8 | [ "RESERVED0", "struct_f_p_u___type.html#a7b2967b069046c8544adbbc1db143a36", null ] 9 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/struct_s_cn_s_c_b___type.js: -------------------------------------------------------------------------------- 1 | var struct_s_cn_s_c_b___type = 2 | [ 3 | [ "ACTLR", "struct_s_cn_s_c_b___type.html#a13af9b718dde7481f1c0344f00593c23", null ], 4 | [ "ICTR", "struct_s_cn_s_c_b___type.html#a34ec1d771245eb9bd0e3ec9336949762", null ], 5 | [ "RESERVED0", "struct_s_cn_s_c_b___type.html#afe1d5fd2966d5062716613b05c8d0ae1", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/struct_sys_tick___type.js: -------------------------------------------------------------------------------- 1 | var struct_sys_tick___type = 2 | [ 3 | [ "CALIB", "struct_sys_tick___type.html#afcadb0c6d35b21cdc0018658a13942de", null ], 4 | [ "CTRL", "struct_sys_tick___type.html#a875e7afa5c4fd43997fb544a4ac6e37e", null ], 5 | [ "LOAD", "struct_sys_tick___type.html#a4780a489256bb9f54d0ba8ed4de191cd", null ], 6 | [ "VAL", "struct_sys_tick___type.html#a9b5420d17e8e43104ddd4ae5a610af93", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/sync_off.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/sync_on.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/tab_a.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/tab_b.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/tab_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/tab_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/Core/html/tab_topnav.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/union_a_p_s_r___type.js: -------------------------------------------------------------------------------- 1 | var union_a_p_s_r___type = 2 | [ 3 | [ "_reserved0", "union_a_p_s_r___type.html#afbce95646fd514c10aa85ec0a33db728", null ], 4 | [ "b", "union_a_p_s_r___type.html#a7dbc79a057ded4b11ca5323fc2d5ab14", null ], 5 | [ "C", "union_a_p_s_r___type.html#a86e2c5b891ecef1ab55b1edac0da79a6", null ], 6 | [ "N", "union_a_p_s_r___type.html#a7e7bbba9b00b0bb3283dc07f1abe37e0", null ], 7 | [ "Q", "union_a_p_s_r___type.html#a22d10913489d24ab08bd83457daa88de", null ], 8 | [ "V", "union_a_p_s_r___type.html#a8004d224aacb78ca37774c35f9156e7e", null ], 9 | [ "w", "union_a_p_s_r___type.html#ae4c2ef8c9430d7b7bef5cbfbbaed3a94", null ], 10 | [ "Z", "union_a_p_s_r___type.html#a3b04d58738b66a28ff13f23d8b0ba7e5", null ] 11 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/union_c_o_n_t_r_o_l___type.js: -------------------------------------------------------------------------------- 1 | var union_c_o_n_t_r_o_l___type = 2 | [ 3 | [ "_reserved0", "union_c_o_n_t_r_o_l___type.html#af8c314273a1e4970a5671bd7f8184f50", null ], 4 | [ "b", "union_c_o_n_t_r_o_l___type.html#adc6a38ab2980d0e9577b5a871da14eb9", null ], 5 | [ "FPCA", "union_c_o_n_t_r_o_l___type.html#ac62cfff08e6f055e0101785bad7094cd", null ], 6 | [ "nPRIV", "union_c_o_n_t_r_o_l___type.html#a35c1732cf153b7b5c4bd321cf1de9605", null ], 7 | [ "SPSEL", "union_c_o_n_t_r_o_l___type.html#a8cc085fea1c50a8bd9adea63931ee8e2", null ], 8 | [ "w", "union_c_o_n_t_r_o_l___type.html#a6b642cca3d96da660b1198c133ca2a1f", null ] 9 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/Core/html/union_i_p_s_r___type.js: -------------------------------------------------------------------------------- 1 | var union_i_p_s_r___type = 2 | [ 3 | [ "_reserved0", "union_i_p_s_r___type.html#ad2eb0a06de4f03f58874a727716aa9aa", null ], 4 | [ "b", "union_i_p_s_r___type.html#add0d6497bd50c25569ea22b48a03ec50", null ], 5 | [ "ISR", "union_i_p_s_r___type.html#ab46e5f1b2f4d17cfb9aca4fffcbb2fa5", null ], 6 | [ "w", "union_i_p_s_r___type.html#a4adca999d3a0bc1ae682d73ea7cfa879", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/Biquad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/Biquad.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/BiquadCascade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/BiquadCascade.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/BiquadDF2Transposed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/BiquadDF2Transposed.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/BiquadPostshift.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/BiquadPostshift.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/CFFT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/CFFT.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/CFFTQ15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/CFFTQ15.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/CFFTQ31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/CFFTQ31.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/CIFFTQ15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/CIFFTQ15.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/CIFFTQ31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/CIFFTQ31.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/Convolution.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/Convolution.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/ConvolutionEquation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/ConvolutionEquation.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/CorrelateEquation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/CorrelateEquation.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/DCT4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/DCT4.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/DCT4Equation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/DCT4Equation.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/FFTBin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/FFTBin.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/FFTBinInput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/FFTBinInput.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/FFTBinOutput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/FFTBinOutput.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/FIR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/FIR.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/FIRDecimator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/FIRDecimator.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/FIRInterpolator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/FIRInterpolator.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/FIRLPF_coeffs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/FIRLPF_coeffs.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/FIRLPF_input.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/FIRLPF_input.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/FIRLPF_output.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/FIRLPF_output.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/FIRLPF_response.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/FIRLPF_response.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/FIRLPF_signalflow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/FIRLPF_signalflow.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/FIRLattice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/FIRLattice.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/FIRSparse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/FIRSparse.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/GEQ_allbandresponse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/GEQ_allbandresponse.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/GEQ_bandresponse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/GEQ_bandresponse.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/GEQ_inputchirp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/GEQ_inputchirp.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/GEQ_outputchirp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/GEQ_outputchirp.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/GEQ_signalflow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/GEQ_signalflow.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/IDCT4Equation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/IDCT4Equation.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/IIRLattice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/IIRLattice.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/LMS.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/LMS.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/LinearInterp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/LinearInterp.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/MatrixAddition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/MatrixAddition.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/MatrixInverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/MatrixInverse.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/MatrixMultiplication.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/MatrixMultiplication.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/MatrixScale.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/MatrixScale.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/MatrixSubtraction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/MatrixSubtraction.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/MatrixTranspose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/MatrixTranspose.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/PID.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/PID.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/RFFT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/RFFT.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/RFFTQ15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/RFFTQ15.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/RFFTQ31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/RFFTQ31.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/RIFFT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/RIFFT.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/RIFFTQ15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/RIFFTQ15.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/RIFFTQ31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/RIFFTQ31.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/SignalFlow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/SignalFlow.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/Variance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/Variance.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/bc_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/bdwn.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/clarke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/clarke.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/clarkeFormula.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/clarkeFormula.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/clarkeInvFormula.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/clarkeInvFormula.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/closed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/dct4FormatsQ15Table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/dct4FormatsQ15Table.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/dct4FormatsQ31Table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/dct4FormatsQ31Table.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/dct4NormalizingF32Table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/dct4NormalizingF32Table.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/dct4NormalizingQ15Table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/dct4NormalizingQ15Table.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/dct4NormalizingQ31Table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/dct4NormalizingQ31Table.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/dotProduct.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/dotProduct.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/doxygen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/ftv2blank.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/ftv2cl.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/ftv2doc.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/ftv2folderopen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/ftv2lastnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/ftv2link.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/ftv2mnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/ftv2mo.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/ftv2node.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/ftv2ns.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/ftv2plastnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/ftv2pnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/ftv2splitbar.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/ftv2vertline.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/functions_dup.js: -------------------------------------------------------------------------------- 1 | var functions_dup = 2 | [ 3 | [ "a", "functions.html", null ], 4 | [ "b", "functions_0x62.html", null ], 5 | [ "e", "functions_0x65.html", null ], 6 | [ "f", "functions_0x66.html", null ], 7 | [ "i", "functions_0x69.html", null ], 8 | [ "k", "functions_0x6b.html", null ], 9 | [ "l", "functions_0x6c.html", null ], 10 | [ "m", "functions_0x6d.html", null ], 11 | [ "n", "functions_0x6e.html", null ], 12 | [ "o", "functions_0x6f.html", null ], 13 | [ "p", "functions_0x70.html", null ], 14 | [ "r", "functions_0x72.html", null ], 15 | [ "s", "functions_0x73.html", null ], 16 | [ "t", "functions_0x74.html", null ], 17 | [ "x", "functions_0x78.html", null ] 18 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___basic_abs.js: -------------------------------------------------------------------------------- 1 | var group___basic_abs = 2 | [ 3 | [ "arm_abs_f32", "group___basic_abs.html#ga421b6275f9d35f50286c0ff3beceff02", null ], 4 | [ "arm_abs_q15", "group___basic_abs.html#ga39f92964c9b649ba252e26ebe7b95594", null ], 5 | [ "arm_abs_q31", "group___basic_abs.html#ga59eafcdcdb52da60d37f20aec6ff4577", null ], 6 | [ "arm_abs_q7", "group___basic_abs.html#gadc30985e33fbf96802a5a7954dece3b1", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___basic_add.js: -------------------------------------------------------------------------------- 1 | var group___basic_add = 2 | [ 3 | [ "arm_add_f32", "group___basic_add.html#ga6a904a547413b10565dd1d251c6bafbd", null ], 4 | [ "arm_add_q15", "group___basic_add.html#gabb51285a41f511670bbff62fc0e1bf62", null ], 5 | [ "arm_add_q31", "group___basic_add.html#ga24d6c3f7f8b9fae4847c0c3f26a39a3b", null ], 6 | [ "arm_add_q7", "group___basic_add.html#gaed633f415a7840a66861debca2dfb96b", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___basic_mult.js: -------------------------------------------------------------------------------- 1 | var group___basic_mult = 2 | [ 3 | [ "arm_mult_f32", "group___basic_mult.html#gaca3f0b8227da431ab29225b88888aa32", null ], 4 | [ "arm_mult_q15", "group___basic_mult.html#gafb0778d27ed98a2a6f2ecb7d48cc8c75", null ], 5 | [ "arm_mult_q31", "group___basic_mult.html#ga3528c0f54a0607acc603f0490d3ca6c6", null ], 6 | [ "arm_mult_q7", "group___basic_mult.html#ga16677275ed83ff0878da531e875c27ef", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___basic_sub.js: -------------------------------------------------------------------------------- 1 | var group___basic_sub = 2 | [ 3 | [ "arm_sub_f32", "group___basic_sub.html#ga7f975a472de286331134227c08aad826", null ], 4 | [ "arm_sub_q15", "group___basic_sub.html#ga997a8ee93088d15bda23c325d455b588", null ], 5 | [ "arm_sub_q31", "group___basic_sub.html#ga28aa6908d092752144413e21933dc878", null ], 6 | [ "arm_sub_q7", "group___basic_sub.html#gab09941de7dfeb247e5c29b406a435fcc", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___bilinear_interpolate.js: -------------------------------------------------------------------------------- 1 | var group___bilinear_interpolate = 2 | [ 3 | [ "arm_bilinear_interp_f32", "group___bilinear_interpolate.html#gab49a4c0f64854903d996d01ba38f711a", null ], 4 | [ "arm_bilinear_interp_q15", "group___bilinear_interpolate.html#gaa8dffbc2a01bb7accf231384498ec85e", null ], 5 | [ "arm_bilinear_interp_q31", "group___bilinear_interpolate.html#ga202a033c8a2ad3678b136f93153b6d13", null ], 6 | [ "arm_bilinear_interp_q7", "group___bilinear_interpolate.html#gade8db9706a3ae9ad03b2750a239d2ee6", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___biquad_cascade_d_f1__32x64.js: -------------------------------------------------------------------------------- 1 | var group___biquad_cascade_d_f1__32x64 = 2 | [ 3 | [ "arm_biquad_cas_df1_32x64_init_q31", "group___biquad_cascade_d_f1__32x64.html#ga44900cecb8083afcaabf905ffcd656bb", null ], 4 | [ "arm_biquad_cas_df1_32x64_q31", "group___biquad_cascade_d_f1__32x64.html#ga953a83e69685de6575cff37feb358a93", null ] 5 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___cmplx_by_cmplx_mult.js: -------------------------------------------------------------------------------- 1 | var group___cmplx_by_cmplx_mult = 2 | [ 3 | [ "arm_cmplx_mult_cmplx_f32", "group___cmplx_by_cmplx_mult.html#ga14b47080054a1ba1250a86805be1ff6b", null ], 4 | [ "arm_cmplx_mult_cmplx_q15", "group___cmplx_by_cmplx_mult.html#ga67e96abfc9c3e30efb70a2ec9d0fe7e8", null ], 5 | [ "arm_cmplx_mult_cmplx_q31", "group___cmplx_by_cmplx_mult.html#ga1829e50993a90742de225a0ce4213838", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___cmplx_by_real_mult.js: -------------------------------------------------------------------------------- 1 | var group___cmplx_by_real_mult = 2 | [ 3 | [ "arm_cmplx_mult_real_f32", "group___cmplx_by_real_mult.html#ga9c18616f56cb4d3c0889ce0b339221ca", null ], 4 | [ "arm_cmplx_mult_real_q15", "group___cmplx_by_real_mult.html#ga3bd8889dcb45980e1d3e53344df54e85", null ], 5 | [ "arm_cmplx_mult_real_q31", "group___cmplx_by_real_mult.html#ga715e4bb8e945b8ca51ec5237611697ce", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___cmplx_matrix_mult.js: -------------------------------------------------------------------------------- 1 | var group___cmplx_matrix_mult = 2 | [ 3 | [ "arm_mat_cmplx_mult_f32", "group___cmplx_matrix_mult.html#ga1adb839ac84445b8c2f04efa43faef35", null ], 4 | [ "arm_mat_cmplx_mult_q15", "group___cmplx_matrix_mult.html#ga63066615e7d6f6a44f4358725092419e", null ], 5 | [ "arm_mat_cmplx_mult_q31", "group___cmplx_matrix_mult.html#gaaf3c0b171ca8412c77bab9fa90804737", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___f_i_r___lattice.js: -------------------------------------------------------------------------------- 1 | var group___f_i_r___lattice = 2 | [ 3 | [ "arm_fir_lattice_f32", "group___f_i_r___lattice.html#gae63a45a63a11a65f2eae8b8b1fe370a8", null ], 4 | [ "arm_fir_lattice_init_f32", "group___f_i_r___lattice.html#ga86199a1590af2b8941c6532ee9d03229", null ], 5 | [ "arm_fir_lattice_init_q15", "group___f_i_r___lattice.html#ga1b22f30ce1cc19bf5a5d7c9fca154d72", null ], 6 | [ "arm_fir_lattice_init_q31", "group___f_i_r___lattice.html#gac05a17a0188bb851b58d19e572870a54", null ], 7 | [ "arm_fir_lattice_q15", "group___f_i_r___lattice.html#gabb0ab07fd313b4d863070c3ddca51542", null ], 8 | [ "arm_fir_lattice_q31", "group___f_i_r___lattice.html#ga2e36fd210e4a1a5dd333ce80dd6d9a88", null ] 9 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___fill.js: -------------------------------------------------------------------------------- 1 | var group___fill = 2 | [ 3 | [ "arm_fill_f32", "group___fill.html#ga2248e8d3901b4afb7827163132baad94", null ], 4 | [ "arm_fill_q15", "group___fill.html#ga76b21c32a3783a2b3334d930a646e5d8", null ], 5 | [ "arm_fill_q31", "group___fill.html#ga69cc781cf337bd0a31bb85c772a35f7f", null ], 6 | [ "arm_fill_q7", "group___fill.html#ga0465cf326ada039ed792f94b033d9ec5", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___i_i_r___lattice.js: -------------------------------------------------------------------------------- 1 | var group___i_i_r___lattice = 2 | [ 3 | [ "arm_iir_lattice_f32", "group___i_i_r___lattice.html#ga56164a0fe48619b8ceec160347bdd2ff", null ], 4 | [ "arm_iir_lattice_init_f32", "group___i_i_r___lattice.html#gaed3b0230bb77439dc902daa625985e04", null ], 5 | [ "arm_iir_lattice_init_q15", "group___i_i_r___lattice.html#ga1f4bc2dd3d5641e96815d3a5aad58998", null ], 6 | [ "arm_iir_lattice_init_q31", "group___i_i_r___lattice.html#gab686c14175581797d9c3ad7bf1d5cc1e", null ], 7 | [ "arm_iir_lattice_q15", "group___i_i_r___lattice.html#gaeb9e9599a288832ed123183eaa8b294a", null ], 8 | [ "arm_iir_lattice_q31", "group___i_i_r___lattice.html#ga123b26fa9156cd8d3622dd85931741ed", null ] 9 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___l_m_s.js: -------------------------------------------------------------------------------- 1 | var group___l_m_s = 2 | [ 3 | [ "arm_lms_f32", "group___l_m_s.html#gae266d009e682180421601627c79a3843", null ], 4 | [ "arm_lms_init_f32", "group___l_m_s.html#ga9fc7adca0966ff2cec1746fca8364cee", null ], 5 | [ "arm_lms_init_q15", "group___l_m_s.html#ga9544cc26f18cd4465cfbed371be822b3", null ], 6 | [ "arm_lms_init_q31", "group___l_m_s.html#ga8d4bc251169f4b102355097a9f7530d6", null ], 7 | [ "arm_lms_q15", "group___l_m_s.html#gacde16c17eb75979f81b34e2e2a58c7ac", null ], 8 | [ "arm_lms_q31", "group___l_m_s.html#ga6a0abfe6041253a6f91c63b383a64257", null ] 9 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___l_m_s___n_o_r_m.js: -------------------------------------------------------------------------------- 1 | var group___l_m_s___n_o_r_m = 2 | [ 3 | [ "arm_lms_norm_f32", "group___l_m_s___n_o_r_m.html#ga2418c929087c6eba719758eaae3f3300", null ], 4 | [ "arm_lms_norm_init_f32", "group___l_m_s___n_o_r_m.html#gac7ccbaea863882056eee815456464670", null ], 5 | [ "arm_lms_norm_init_q15", "group___l_m_s___n_o_r_m.html#ga213ab1ee2e154cc2fa30d667b1994b89", null ], 6 | [ "arm_lms_norm_init_q31", "group___l_m_s___n_o_r_m.html#ga1d9659dbbea4c89a7a9d14d5fc0dd490", null ], 7 | [ "arm_lms_norm_q15", "group___l_m_s___n_o_r_m.html#gad47486a399dedb0bc85a5990ec5cf981", null ], 8 | [ "arm_lms_norm_q31", "group___l_m_s___n_o_r_m.html#ga7128775e99817c183a7d7ad34e8b6e05", null ] 9 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___linear_interpolate.js: -------------------------------------------------------------------------------- 1 | var group___linear_interpolate = 2 | [ 3 | [ "arm_linear_interp_f32", "group___linear_interpolate.html#ga2269263d810cafcd19681957b37d5cf6", null ], 4 | [ "arm_linear_interp_q15", "group___linear_interpolate.html#ga42c9206e5d2d22b8808716dc30622846", null ], 5 | [ "arm_linear_interp_q31", "group___linear_interpolate.html#ga690e63e9a513ca0a741b1b174805d031", null ], 6 | [ "arm_linear_interp_q7", "group___linear_interpolate.html#gacb0d44fe00aca0ba1d036d469a1763fc", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___matrix_add.js: -------------------------------------------------------------------------------- 1 | var group___matrix_add = 2 | [ 3 | [ "arm_mat_add_f32", "group___matrix_add.html#ga04bbf64a5f9c9e57dd1efb26a768aba1", null ], 4 | [ "arm_mat_add_q15", "group___matrix_add.html#ga147e90b7c12a162735ab8824127a33ee", null ], 5 | [ "arm_mat_add_q31", "group___matrix_add.html#ga7d9d7d81a0832a17b831aad1e4a5dc16", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___matrix_init.js: -------------------------------------------------------------------------------- 1 | var group___matrix_init = 2 | [ 3 | [ "arm_mat_init_f32", "group___matrix_init.html#ga11e3dc41592a6401c13182fef9416a27", null ], 4 | [ "arm_mat_init_q15", "group___matrix_init.html#ga31a7c2b991803d49719393eb2d53dc26", null ], 5 | [ "arm_mat_init_q31", "group___matrix_init.html#ga48a5e5d37e1f062cc57fcfaf683343cc", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___matrix_inv.js: -------------------------------------------------------------------------------- 1 | var group___matrix_inv = 2 | [ 3 | [ "arm_mat_inverse_f32", "group___matrix_inv.html#ga542be7aabbf7a2297a4b62cf212910e3", null ], 4 | [ "arm_mat_inverse_f64", "group___matrix_inv.html#gaede2367c02df083cc915ddd5d8fae838", null ] 5 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___matrix_mult.js: -------------------------------------------------------------------------------- 1 | var group___matrix_mult = 2 | [ 3 | [ "arm_mat_mult_f32", "group___matrix_mult.html#ga917bf0270310c1d3f0eda1fc7c0026a0", null ], 4 | [ "arm_mat_mult_fast_q15", "group___matrix_mult.html#ga08f37d93a5bfef0c5000dc5e0a411f93", null ], 5 | [ "arm_mat_mult_fast_q31", "group___matrix_mult.html#ga2785e8c1b785348b0c439b56aaf585a3", null ], 6 | [ "arm_mat_mult_q15", "group___matrix_mult.html#ga3657b99a9667945373e520dbac0f4516", null ], 7 | [ "arm_mat_mult_q31", "group___matrix_mult.html#ga2ec612a8c2c4916477fb9bc1ab548a6e", null ] 8 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___matrix_scale.js: -------------------------------------------------------------------------------- 1 | var group___matrix_scale = 2 | [ 3 | [ "arm_mat_scale_f32", "group___matrix_scale.html#ga9cb4e385b18c9a0b9cbc940c1067ca12", null ], 4 | [ "arm_mat_scale_q15", "group___matrix_scale.html#ga7521769e2cf1c3d9c4656138cd2ae2ca", null ], 5 | [ "arm_mat_scale_q31", "group___matrix_scale.html#ga609743821ee81fa8c34c4bcdc1ed9744", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___matrix_sub.js: -------------------------------------------------------------------------------- 1 | var group___matrix_sub = 2 | [ 3 | [ "arm_mat_sub_f32", "group___matrix_sub.html#gac8b72fb70246ccfee3b372002345732c", null ], 4 | [ "arm_mat_sub_q15", "group___matrix_sub.html#gaf647776a425b7f9dd0aca3e11d81f02f", null ], 5 | [ "arm_mat_sub_q31", "group___matrix_sub.html#ga39f42e0e3b7f115fbb909d6ff4e1329d", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___matrix_trans.js: -------------------------------------------------------------------------------- 1 | var group___matrix_trans = 2 | [ 3 | [ "arm_mat_trans_f32", "group___matrix_trans.html#gad7dd9f108429da13d3864696ceeec789", null ], 4 | [ "arm_mat_trans_q15", "group___matrix_trans.html#ga4f4f821cc695fd0ef9061d702e08050a", null ], 5 | [ "arm_mat_trans_q31", "group___matrix_trans.html#ga30a4d49489ac67ff98a46b9f58f73bf1", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___max.js: -------------------------------------------------------------------------------- 1 | var group___max = 2 | [ 3 | [ "arm_max_f32", "group___max.html#ga5b89d1b04575aeec494f678695fb87d8", null ], 4 | [ "arm_max_q15", "group___max.html#gac132856c68f4bf2a056eaad5921c7880", null ], 5 | [ "arm_max_q31", "group___max.html#gaff7cbd4e955382def06724cc4cc85795", null ], 6 | [ "arm_max_q7", "group___max.html#ga6afd64d381b5c232de59163ebfe71e35", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___min.js: -------------------------------------------------------------------------------- 1 | var group___min = 2 | [ 3 | [ "arm_min_f32", "group___min.html#gaf62b1673740fc516ea64daf777b7d74a", null ], 4 | [ "arm_min_q15", "group___min.html#gad065e37535ebb726750ac1545cb3fa6f", null ], 5 | [ "arm_min_q31", "group___min.html#gab20faeceb5ff5d2d9dd628c2ecf41303", null ], 6 | [ "arm_min_q7", "group___min.html#ga3631d38ac8d715fc14f6f1b343f4c4ed", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___r_m_s.js: -------------------------------------------------------------------------------- 1 | var group___r_m_s = 2 | [ 3 | [ "arm_rms_f32", "group___r_m_s.html#ga0e3ab1b57da32d45388d1fa90d7fd88c", null ], 4 | [ "arm_rms_q15", "group___r_m_s.html#gaf5b836b72dda9e5dfbbd17c7906fd13f", null ], 5 | [ "arm_rms_q31", "group___r_m_s.html#gae33015fda23fc44e7ead5e5ed7e8d314", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___s_q_r_t.js: -------------------------------------------------------------------------------- 1 | var group___s_q_r_t = 2 | [ 3 | [ "arm_sqrt_f32", "group___s_q_r_t.html#ga56a40d1cf842b0b45267df6761975da0", null ], 4 | [ "arm_sqrt_q15", "group___s_q_r_t.html#ga5abe5ca724f3e15849662b03752c1238", null ], 5 | [ "arm_sqrt_q31", "group___s_q_r_t.html#ga119e25831e141d734d7ef10636670058", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___s_t_d.js: -------------------------------------------------------------------------------- 1 | var group___s_t_d = 2 | [ 3 | [ "arm_std_f32", "group___s_t_d.html#ga4969b5b5f3d001377bc401a3ee99dfc2", null ], 4 | [ "arm_std_q15", "group___s_t_d.html#gaf9d27afa9928ff28a63cd98ea9218a72", null ], 5 | [ "arm_std_q31", "group___s_t_d.html#ga39495e74f96116178be085c9dc7742f5", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group___sin_cos.js: -------------------------------------------------------------------------------- 1 | var group___sin_cos = 2 | [ 3 | [ "arm_sin_cos_f32", "group___sin_cos.html#ga4420d45c37d58c310ef9ae1b5fe58020", null ], 4 | [ "arm_sin_cos_q31", "group___sin_cos.html#gae9e4ddebff9d4eb5d0a093e28e0bc504", null ] 5 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__clarke.js: -------------------------------------------------------------------------------- 1 | var group__clarke = 2 | [ 3 | [ "arm_clarke_f32", "group__clarke.html#ga2b4ebec76215e1277c970c269ffdbd76", null ], 4 | [ "arm_clarke_q31", "group__clarke.html#ga7fd106ca8d346a2a472842e0656014c1", null ] 5 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__cmplx__conj.js: -------------------------------------------------------------------------------- 1 | var group__cmplx__conj = 2 | [ 3 | [ "arm_cmplx_conj_f32", "group__cmplx__conj.html#ga3a102aead6460ad9fcb0626f6b226ffb", null ], 4 | [ "arm_cmplx_conj_q15", "group__cmplx__conj.html#gaf47689ae07962acaecb8ddde556df4a4", null ], 5 | [ "arm_cmplx_conj_q31", "group__cmplx__conj.html#gafecc94879a383c5208ec3ef99485e4b5", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__cmplx__dot__prod.js: -------------------------------------------------------------------------------- 1 | var group__cmplx__dot__prod = 2 | [ 3 | [ "arm_cmplx_dot_prod_f32", "group__cmplx__dot__prod.html#gadcfaf567a25eb641da4043eafb9bb076", null ], 4 | [ "arm_cmplx_dot_prod_q15", "group__cmplx__dot__prod.html#ga2b08b5e8001d2c15204639d00893fc70", null ], 5 | [ "arm_cmplx_dot_prod_q31", "group__cmplx__dot__prod.html#ga5b731a59db062a9ad84562ef68a6c8af", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__cmplx__mag.js: -------------------------------------------------------------------------------- 1 | var group__cmplx__mag = 2 | [ 3 | [ "arm_cmplx_mag_f32", "group__cmplx__mag.html#gae45024c497392cde2ae358a76d435213", null ], 4 | [ "arm_cmplx_mag_q15", "group__cmplx__mag.html#ga0a4a8f77a6a51d9b3f3b9d729f85b7a4", null ], 5 | [ "arm_cmplx_mag_q31", "group__cmplx__mag.html#ga14f82f9230e9d96d5b9774e2fefcb7be", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__cmplx__mag__squared.js: -------------------------------------------------------------------------------- 1 | var group__cmplx__mag__squared = 2 | [ 3 | [ "arm_cmplx_mag_squared_f32", "group__cmplx__mag__squared.html#gaa7faccc0d96b061d8b7d0d7d82045074", null ], 4 | [ "arm_cmplx_mag_squared_q15", "group__cmplx__mag__squared.html#ga45537f576102d960d467eb722b8431f2", null ], 5 | [ "arm_cmplx_mag_squared_q31", "group__cmplx__mag__squared.html#ga384b0538101e8c03fa4fa14271e63b04", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__copy.js: -------------------------------------------------------------------------------- 1 | var group__copy = 2 | [ 3 | [ "arm_copy_f32", "group__copy.html#gadd1f737e677e0e6ca31767c7001417b3", null ], 4 | [ "arm_copy_q15", "group__copy.html#ga872ca4cfc18c680b8991ccd569a5fda0", null ], 5 | [ "arm_copy_q31", "group__copy.html#gaddf70be7e3f87e535c324862b501f3f9", null ], 6 | [ "arm_copy_q7", "group__copy.html#ga467579beda492aa92797529d794c88fb", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__cos.js: -------------------------------------------------------------------------------- 1 | var group__cos = 2 | [ 3 | [ "arm_cos_f32", "group__cos.html#gace15287f9c64b9b4084d1c797d4c49d8", null ], 4 | [ "arm_cos_q15", "group__cos.html#gadfd60c24def501638c0d5db20f4c869b", null ], 5 | [ "arm_cos_q31", "group__cos.html#gad80f121949ef885a77d83ab36e002567", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__dot__prod.js: -------------------------------------------------------------------------------- 1 | var group__dot__prod = 2 | [ 3 | [ "arm_dot_prod_f32", "group__dot__prod.html#ga55418d4362f6ba84c327f9b4f089a8c3", null ], 4 | [ "arm_dot_prod_q15", "group__dot__prod.html#ga436d5bed28a4b73b24acbde436a3044b", null ], 5 | [ "arm_dot_prod_q31", "group__dot__prod.html#gab15d8fa060fc85b4d948d091b7deaa11", null ], 6 | [ "arm_dot_prod_q7", "group__dot__prod.html#ga9c3293a50ac7ec8ba928bf8e3aaea6c1", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__float__to__x.js: -------------------------------------------------------------------------------- 1 | var group__float__to__x = 2 | [ 3 | [ "arm_float_to_q15", "group__float__to__x.html#ga215456e35a18db86882e1d3f0d24e1f2", null ], 4 | [ "arm_float_to_q31", "group__float__to__x.html#ga177704107f94564e9abe4daaa36f4554", null ], 5 | [ "arm_float_to_q7", "group__float__to__x.html#ga44a393818cdee8dce80f2d66add25411", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__group_cmplx_math.js: -------------------------------------------------------------------------------- 1 | var group__group_cmplx_math = 2 | [ 3 | [ "Complex Conjugate", "group__cmplx__conj.html", "group__cmplx__conj" ], 4 | [ "Complex Dot Product", "group__cmplx__dot__prod.html", "group__cmplx__dot__prod" ], 5 | [ "Complex Magnitude", "group__cmplx__mag.html", "group__cmplx__mag" ], 6 | [ "Complex Magnitude Squared", "group__cmplx__mag__squared.html", "group__cmplx__mag__squared" ], 7 | [ "Complex-by-Complex Multiplication", "group___cmplx_by_cmplx_mult.html", "group___cmplx_by_cmplx_mult" ], 8 | [ "Complex-by-Real Multiplication", "group___cmplx_by_real_mult.html", "group___cmplx_by_real_mult" ] 9 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__group_controller.js: -------------------------------------------------------------------------------- 1 | var group__group_controller = 2 | [ 3 | [ "Sine Cosine", "group___sin_cos.html", "group___sin_cos" ], 4 | [ "PID Motor Control", "group___p_i_d.html", "group___p_i_d" ], 5 | [ "Vector Clarke Transform", "group__clarke.html", "group__clarke" ], 6 | [ "Vector Inverse Clarke Transform", "group__inv__clarke.html", "group__inv__clarke" ], 7 | [ "Vector Park Transform", "group__park.html", "group__park" ], 8 | [ "Vector Inverse Park transform", "group__inv__park.html", "group__inv__park" ] 9 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__group_fast_math.js: -------------------------------------------------------------------------------- 1 | var group__group_fast_math = 2 | [ 3 | [ "Cosine", "group__cos.html", "group__cos" ], 4 | [ "Sine", "group__sin.html", "group__sin" ], 5 | [ "Square Root", "group___s_q_r_t.html", "group___s_q_r_t" ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__group_interpolation.js: -------------------------------------------------------------------------------- 1 | var group__group_interpolation = 2 | [ 3 | [ "Linear Interpolation", "group___linear_interpolate.html", "group___linear_interpolate" ], 4 | [ "Bilinear Interpolation", "group___bilinear_interpolate.html", "group___bilinear_interpolate" ] 5 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__group_math.js: -------------------------------------------------------------------------------- 1 | var group__group_math = 2 | [ 3 | [ "Vector Absolute Value", "group___basic_abs.html", "group___basic_abs" ], 4 | [ "Vector Addition", "group___basic_add.html", "group___basic_add" ], 5 | [ "Vector Dot Product", "group__dot__prod.html", "group__dot__prod" ], 6 | [ "Vector Multiplication", "group___basic_mult.html", "group___basic_mult" ], 7 | [ "Vector Negate", "group__negate.html", "group__negate" ], 8 | [ "Vector Offset", "group__offset.html", "group__offset" ], 9 | [ "Vector Scale", "group__scale.html", "group__scale" ], 10 | [ "Vector Shift", "group__shift.html", "group__shift" ], 11 | [ "Vector Subtraction", "group___basic_sub.html", "group___basic_sub" ] 12 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__group_matrix.js: -------------------------------------------------------------------------------- 1 | var group__group_matrix = 2 | [ 3 | [ "Matrix Addition", "group___matrix_add.html", "group___matrix_add" ], 4 | [ "Complex Matrix Multiplication", "group___cmplx_matrix_mult.html", "group___cmplx_matrix_mult" ], 5 | [ "Matrix Initialization", "group___matrix_init.html", "group___matrix_init" ], 6 | [ "Matrix Inverse", "group___matrix_inv.html", "group___matrix_inv" ], 7 | [ "Matrix Multiplication", "group___matrix_mult.html", "group___matrix_mult" ], 8 | [ "Matrix Scale", "group___matrix_scale.html", "group___matrix_scale" ], 9 | [ "Matrix Subtraction", "group___matrix_sub.html", "group___matrix_sub" ], 10 | [ "Matrix Transpose", "group___matrix_trans.html", "group___matrix_trans" ] 11 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__group_stats.js: -------------------------------------------------------------------------------- 1 | var group__group_stats = 2 | [ 3 | [ "Maximum", "group___max.html", "group___max" ], 4 | [ "Mean", "group__mean.html", "group__mean" ], 5 | [ "Minimum", "group___min.html", "group___min" ], 6 | [ "Power", "group__power.html", "group__power" ], 7 | [ "Root mean square (RMS)", "group___r_m_s.html", "group___r_m_s" ], 8 | [ "Standard deviation", "group___s_t_d.html", "group___s_t_d" ], 9 | [ "Variance", "group__variance.html", "group__variance" ] 10 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__group_support.js: -------------------------------------------------------------------------------- 1 | var group__group_support = 2 | [ 3 | [ "Vector Copy", "group__copy.html", "group__copy" ], 4 | [ "Vector Fill", "group___fill.html", "group___fill" ], 5 | [ "Convert 32-bit floating point value", "group__float__to__x.html", "group__float__to__x" ], 6 | [ "Convert 16-bit Integer value", "group__q15__to__x.html", "group__q15__to__x" ], 7 | [ "Convert 32-bit Integer value", "group__q31__to__x.html", "group__q31__to__x" ], 8 | [ "Convert 8-bit Integer value", "group__q7__to__x.html", "group__q7__to__x" ] 9 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__inv__clarke.js: -------------------------------------------------------------------------------- 1 | var group__inv__clarke = 2 | [ 3 | [ "arm_inv_clarke_f32", "group__inv__clarke.html#ga137f0396d837477b899ecae89f075a50", null ], 4 | [ "arm_inv_clarke_q31", "group__inv__clarke.html#ga2d0c60f114f095a2f27442d98781ba02", null ] 5 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__inv__park.js: -------------------------------------------------------------------------------- 1 | var group__inv__park = 2 | [ 3 | [ "arm_inv_park_f32", "group__inv__park.html#gaaf6bef0de21946f774d49df050dd8b05", null ], 4 | [ "arm_inv_park_q31", "group__inv__park.html#ga0b33822b988a15455773d28440c5579a", null ] 5 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__mean.js: -------------------------------------------------------------------------------- 1 | var group__mean = 2 | [ 3 | [ "arm_mean_f32", "group__mean.html#ga74ce08c49ab61e57bd50c3a0ca1fdb2b", null ], 4 | [ "arm_mean_q15", "group__mean.html#gac882495d5f098819fd3939c1ef7795b3", null ], 5 | [ "arm_mean_q31", "group__mean.html#gacf2526d8c2d75e486e8f0b0e31877ad0", null ], 6 | [ "arm_mean_q7", "group__mean.html#gaebc707ee539020357c25da4c75b52eb7", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__negate.js: -------------------------------------------------------------------------------- 1 | var group__negate = 2 | [ 3 | [ "arm_negate_f32", "group__negate.html#ga2e169c4de6cc6e3ba4be9473531e6657", null ], 4 | [ "arm_negate_q15", "group__negate.html#ga0239a833d72cf00290b9723c394e5042", null ], 5 | [ "arm_negate_q31", "group__negate.html#ga2784c6887686a73dc7c364e2e41c776c", null ], 6 | [ "arm_negate_q7", "group__negate.html#gaae78fc079a43bdaa3055f9b32e2a1f4c", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__offset.js: -------------------------------------------------------------------------------- 1 | var group__offset = 2 | [ 3 | [ "arm_offset_f32", "group__offset.html#ga989dfae15235799d82f62ef9d356abb4", null ], 4 | [ "arm_offset_q15", "group__offset.html#gab4c1d2391b599549e5a06fdfbc2747bf", null ], 5 | [ "arm_offset_q31", "group__offset.html#gac84ec42cbbebc5c197a87d0221819acf", null ], 6 | [ "arm_offset_q7", "group__offset.html#ga00bd9cc17c5bf905e76c91ad50886393", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__park.js: -------------------------------------------------------------------------------- 1 | var group__park = 2 | [ 3 | [ "arm_park_f32", "group__park.html#ga08b3a683197de7e143fb00497787683c", null ], 4 | [ "arm_park_q31", "group__park.html#gaf4cc6370c0cfc14ea66774ed3c5bb10f", null ] 5 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__power.js: -------------------------------------------------------------------------------- 1 | var group__power = 2 | [ 3 | [ "arm_power_f32", "group__power.html#ga993c00dd7f661d66bdb6e58426e893aa", null ], 4 | [ "arm_power_q15", "group__power.html#ga7050c04b7515e01a75c38f1abbaf71ba", null ], 5 | [ "arm_power_q31", "group__power.html#ga0b93d31bb5b5ed214c2b94d8a7744cd2", null ], 6 | [ "arm_power_q7", "group__power.html#gaf969c85c5655e3d72d7b99ff188f92c9", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__q15__to__x.js: -------------------------------------------------------------------------------- 1 | var group__q15__to__x = 2 | [ 3 | [ "arm_q15_to_float", "group__q15__to__x.html#gaf8b0d2324de273fc430b0e61ad4e9eb2", null ], 4 | [ "arm_q15_to_q31", "group__q15__to__x.html#ga7ba2d87366990ad5380439e2b4a4c0a5", null ], 5 | [ "arm_q15_to_q7", "group__q15__to__x.html#ga8fb31855ff8cce09c2ec9308f48ded69", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__q31__to__x.js: -------------------------------------------------------------------------------- 1 | var group__q31__to__x = 2 | [ 3 | [ "arm_q31_to_float", "group__q31__to__x.html#gacf407b007a37da18e99dabd9023c56b4", null ], 4 | [ "arm_q31_to_q15", "group__q31__to__x.html#ga901dede4661365c9e7c630d3eb31c32c", null ], 5 | [ "arm_q31_to_q7", "group__q31__to__x.html#ga7f297d1a7d776805395095fdb24a8071", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__q7__to__x.js: -------------------------------------------------------------------------------- 1 | var group__q7__to__x = 2 | [ 3 | [ "arm_q7_to_float", "group__q7__to__x.html#ga656620f957b65512ed83db03fd455ec5", null ], 4 | [ "arm_q7_to_q15", "group__q7__to__x.html#gabc02597fc3f01033daf43ec0547a2f78", null ], 5 | [ "arm_q7_to_q31", "group__q7__to__x.html#gad8958cd3cb7f521466168b46a25b7908", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__scale.js: -------------------------------------------------------------------------------- 1 | var group__scale = 2 | [ 3 | [ "arm_scale_f32", "group__scale.html#ga3487af88b112f682ee90589cd419e123", null ], 4 | [ "arm_scale_q15", "group__scale.html#gafaac0e1927daffeb68a42719b53ea780", null ], 5 | [ "arm_scale_q31", "group__scale.html#ga83e36cd82bf51ce35406a199e477d47c", null ], 6 | [ "arm_scale_q7", "group__scale.html#gabc9fd3d37904c58df56492b351d21fb0", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__shift.js: -------------------------------------------------------------------------------- 1 | var group__shift = 2 | [ 3 | [ "arm_shift_q15", "group__shift.html#gaa1757e53279780107acc92cf100adb61", null ], 4 | [ "arm_shift_q31", "group__shift.html#ga387dd8b7b87377378280978f16cdb13d", null ], 5 | [ "arm_shift_q7", "group__shift.html#ga47295d08a685f7de700a48dafb4db6fb", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__sin.js: -------------------------------------------------------------------------------- 1 | var group__sin = 2 | [ 3 | [ "arm_sin_f32", "group__sin.html#gae164899c4a3fc0e946dc5d55555fe541", null ], 4 | [ "arm_sin_q15", "group__sin.html#ga1fc6d6640be6cfa688a8bea0a48397ee", null ], 5 | [ "arm_sin_q31", "group__sin.html#ga57aade7d8892585992cdc6375bd82f9c", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/group__variance.js: -------------------------------------------------------------------------------- 1 | var group__variance = 2 | [ 3 | [ "arm_var_f32", "group__variance.html#ga393f26c5a3bfa05624fb8d32232a6d96", null ], 4 | [ "arm_var_q15", "group__variance.html#ga79dce009ed2de28a125aeb3f19631654", null ], 5 | [ "arm_var_q31", "group__variance.html#gac02873f1c2cc80adfd799305f0e6465d", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/linearInterpExampleMethod1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/linearInterpExampleMethod1.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/linearInterpExampleMethod2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/linearInterpExampleMethod2.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/matrixExample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/matrixExample.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/nav_f.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/nav_g.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/nav_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/open.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/park.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/park.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/parkFormula.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/parkFormula.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/parkInvFormula.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/parkInvFormula.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/all_68.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['high_20precision_20q31_20biquad_20cascade_20filter',['High Precision Q31 Biquad Cascade Filter',['../group___biquad_cascade_d_f1__32x64.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/all_71.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['q15_5ft',['q15_t',['../arm__math_8h.html#ab5a8fb21a5b3b983d5f54f31614052ea',1,'arm_math.h']]], 4 | ['q31_5ft',['q31_t',['../arm__math_8h.html#adc89a3547f5324b7b3b95adec3806bc0',1,'arm_math.h']]], 5 | ['q63_5ft',['q63_t',['../arm__math_8h.html#a5aea1cb12fc02d9d44c8abf217eaa5c6',1,'arm_math.h']]], 6 | ['q7_5ft',['q7_t',['../arm__math_8h.html#ae541b6f232c305361e9b416fc9eed263',1,'arm_math.h']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/all_75.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['use_5fstatic_5finit',['USE_STATIC_INIT',['../_a_r_m_2arm__class__marks__example__f32_8c.html#a821d6c5973940580f5a045e7cf64b7f2',1,'USE_STATIC_INIT(): arm_class_marks_example_f32.c'],['../_g_c_c_2arm__class__marks__example__f32_8c.html#a821d6c5973940580f5a045e7cf64b7f2',1,'USE_STATIC_INIT(): arm_class_marks_example_f32.c']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/search/close.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/defines_62.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['block_5fsize',['BLOCK_SIZE',['../arm__fir__example__f32_8c.html#ad51ded0bbd705f02f73fc60c0b721ced',1,'arm_fir_example_f32.c']]], 4 | ['blocksize',['BLOCKSIZE',['../arm__graphic__equalizer__example__q31_8c.html#afcf795f5a96fd55561abe69f56224630',1,'BLOCKSIZE(): arm_graphic_equalizer_example_q31.c'],['../arm__signal__converge__example__f32_8c.html#afcf795f5a96fd55561abe69f56224630',1,'BLOCKSIZE(): arm_signal_converge_example_f32.c']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/defines_63.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['controller_5fq31_5fshift',['CONTROLLER_Q31_SHIFT',['../arm__math_8h.html#aaff6d2358c4ada8de838a279254ab550',1,'arm_math.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/defines_66.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['fast_5fmath_5fq15_5fshift',['FAST_MATH_Q15_SHIFT',['../arm__math_8h.html#a34716b73c631e65e8dd855e08384ecb2',1,'arm_math.h']]], 4 | ['fast_5fmath_5fq31_5fshift',['FAST_MATH_Q31_SHIFT',['../arm__math_8h.html#a4268f77b1811a0c7fc2532a0bf6108b0',1,'arm_math.h']]], 5 | ['fast_5fmath_5ftable_5fsize',['FAST_MATH_TABLE_SIZE',['../arm__math_8h.html#afcb9147c96853bea484cfc2dde07463d',1,'arm_math.h']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/defines_69.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['index_5fmask',['INDEX_MASK',['../arm__math_8h.html#a29f839928f4752b73c8858d6dbb55294',1,'arm_math.h']]], 4 | ['input_5fspacing',['INPUT_SPACING',['../arm__math_8h.html#a1339e9abc11a3870e0c04f822a62166a',1,'arm_math.h']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/defines_70.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['pi',['PI',['../arm__math_8h.html#a598a3330b3c21701223ee0ca14316eca',1,'arm_math.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/defines_75.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['use_5fstatic_5finit',['USE_STATIC_INIT',['../_a_r_m_2arm__class__marks__example__f32_8c.html#a821d6c5973940580f5a045e7cf64b7f2',1,'USE_STATIC_INIT(): arm_class_marks_example_f32.c'],['../_g_c_c_2arm__class__marks__example__f32_8c.html#a821d6c5973940580f5a045e7cf64b7f2',1,'USE_STATIC_INIT(): arm_class_marks_example_f32.c']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/defines_78.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['xspacing',['XSPACING',['../arm__linear__interp__example__f32_8c.html#a0ecae49cebd837aac53411c8f877503d',1,'arm_linear_interp_example_f32.c']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/enums_61.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['arm_5fstatus',['arm_status',['../arm__math_8h.html#a5e459c6409dfcd2927bb8a57491d7cf6',1,'arm_math.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/files_63.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['change_20log_2etxt',['Change Log.txt',['../_change_01_log_8txt.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/files_67.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['arm_5fclass_5fmarks_5fexample_5ff32_2ec',['arm_class_marks_example_f32.c',['../_g_c_c_2arm__class__marks__example__f32_8c.html',1,'']]], 4 | ['arm_5fconvolution_5fexample_5ff32_2ec',['arm_convolution_example_f32.c',['../_g_c_c_2arm__convolution__example__f32_8c.html',1,'']]], 5 | ['arm_5fdotproduct_5fexample_5ff32_2ec',['arm_dotproduct_example_f32.c',['../_g_c_c_2arm__dotproduct__example__f32_8c.html',1,'']]], 6 | ['arm_5ffft_5fbin_5fdata_2ec',['arm_fft_bin_data.c',['../_g_c_c_2arm__fft__bin__data_8c.html',1,'']]], 7 | ['arm_5ffft_5fbin_5fexample_5ff32_2ec',['arm_fft_bin_example_f32.c',['../_g_c_c_2arm__fft__bin__example__f32_8c.html',1,'']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/functions_63.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['clip_5fq31_5fto_5fq15',['clip_q31_to_q15',['../arm__math_8h.html#a4af3ca330e14587289518e6565fd04bd',1,'arm_math.h']]], 4 | ['clip_5fq31_5fto_5fq7',['clip_q31_to_q7',['../arm__math_8h.html#aa9918ce19228b0d4f072fb84776eabc1',1,'arm_math.h']]], 5 | ['clip_5fq63_5fto_5fq15',['clip_q63_to_q15',['../arm__math_8h.html#aa6f1e5d0d276f42217e75f071ca84a2e',1,'arm_math.h']]], 6 | ['clip_5fq63_5fto_5fq31',['clip_q63_to_q31',['../arm__math_8h.html#ad7373e53d3c2e1adfeafc8c2e9720b5c',1,'arm_math.h']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/functions_67.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['getinput',['getinput',['../arm__signal__converge__example__f32_8c.html#afd2975c4763ec935771e6f63bfe7758b',1,'arm_signal_converge_example_f32.c']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/functions_74.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['test_5fsignal_5fconverge',['test_signal_converge',['../arm__signal__converge__example__f32_8c.html#a8f521e839d4fad24a4f12a18dfeae5d4',1,'arm_signal_converge_example_f32.c']]], 4 | ['test_5fsignal_5fconverge_5fexample',['test_signal_converge_example',['../arm__signal__converge__example__f32_8c.html#ac786d43cbc17bb09738447034ff8e22e',1,'arm_signal_converge_example_f32.c']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/groups_62.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['bilinear_20interpolation',['Bilinear Interpolation',['../group___bilinear_interpolate.html',1,'']]], 4 | ['biquad_20cascade_20iir_20filters_20using_20direct_20form_20i_20structure',['Biquad Cascade IIR Filters Using Direct Form I Structure',['../group___biquad_cascade_d_f1.html',1,'']]], 5 | ['biquad_20cascade_20iir_20filters_20using_20a_20direct_20form_20ii_20transposed_20structure',['Biquad Cascade IIR Filters Using a Direct Form II Transposed Structure',['../group___biquad_cascade_d_f2_t.html',1,'']]], 6 | ['basic_20math_20functions',['Basic Math Functions',['../group__group_math.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/groups_64.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['dct_20type_20iv_20functions',['DCT Type IV Functions',['../group___d_c_t4___i_d_c_t4.html',1,'']]], 4 | ['dot_20product_20example',['Dot Product Example',['../group___dotproduct_example.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/groups_65.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['examples',['Examples',['../group__group_examples.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/groups_67.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['graphic_20audio_20equalizer_20example',['Graphic Audio Equalizer Example',['../group___g_e_q5_band.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/groups_68.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['high_20precision_20q31_20biquad_20cascade_20filter',['High Precision Q31 Biquad Cascade Filter',['../group___biquad_cascade_d_f1__32x64.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/groups_69.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['interpolation_20functions',['Interpolation Functions',['../group__group_interpolation.html',1,'']]], 4 | ['infinite_20impulse_20response_20_28iir_29_20lattice_20filters',['Infinite Impulse Response (IIR) Lattice Filters',['../group___i_i_r___lattice.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/groups_6c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['linear_20interpolate_20example',['Linear Interpolate Example',['../group___linear_interp_example.html',1,'']]], 4 | ['linear_20interpolation',['Linear Interpolation',['../group___linear_interpolate.html',1,'']]], 5 | ['least_20mean_20square_20_28lms_29_20filters',['Least Mean Square (LMS) Filters',['../group___l_m_s.html',1,'']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/groups_6e.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['normalized_20lms_20filters',['Normalized LMS Filters',['../group___l_m_s___n_o_r_m.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/groups_70.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['partial_20convolution',['Partial Convolution',['../group___partial_conv.html',1,'']]], 4 | ['pid_20motor_20control',['PID Motor Control',['../group___p_i_d.html',1,'']]], 5 | ['power',['Power',['../group__power.html',1,'']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/groups_72.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['real_20fft_20functions',['Real FFT Functions',['../group___fast.html',1,'']]], 4 | ['radix_2d8_20complex_20fft_20functions',['Radix-8 Complex FFT Functions',['../group___radix8___c_f_f_t___c_i_f_f_t.html',1,'']]], 5 | ['realfft',['RealFFT',['../group___real_f_f_t.html',1,'']]], 6 | ['root_20mean_20square_20_28rms_29',['Root mean square (RMS)',['../group___r_m_s.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/groups_73.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['statistics_20functions',['Statistics Functions',['../group__group_stats.html',1,'']]], 4 | ['support_20functions',['Support Functions',['../group__group_support.html',1,'']]], 5 | ['signal_20convergence_20example',['Signal Convergence Example',['../group___signal_convergence.html',1,'']]], 6 | ['sine',['Sine',['../group__sin.html',1,'']]], 7 | ['sine_20cosine',['Sine Cosine',['../group___sin_cos.html',1,'']]], 8 | ['sinecosine_20example',['SineCosine Example',['../group___sin_cos_example.html',1,'']]], 9 | ['square_20root',['Square Root',['../group___s_q_r_t.html',1,'']]], 10 | ['standard_20deviation',['Standard deviation',['../group___s_t_d.html',1,'']]] 11 | ]; 12 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/groups_74.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['transform_20functions',['Transform Functions',['../group__group_transforms.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/search/mag_sel.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/nomatches.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
No Matches
10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/pages_63.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['change_20log',['Change Log',['../_change_log_pg.html',1,'']]], 4 | ['cmsis_20dsp_20software_20library',['CMSIS DSP Software Library',['../index.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/pages_64.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['deprecated_20list',['Deprecated List',['../deprecated.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/search/search_l.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/search/search_m.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/search/search_r.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/typedefs_66.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['float32_5ft',['float32_t',['../arm__math_8h.html#a4611b605e45ab401f02cab15c5e38715',1,'arm_math.h']]], 4 | ['float64_5ft',['float64_t',['../arm__math_8h.html#ac55f3ae81b5bc9053760baacf57e47f4',1,'arm_math.h']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/typedefs_71.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['q15_5ft',['q15_t',['../arm__math_8h.html#ab5a8fb21a5b3b983d5f54f31614052ea',1,'arm_math.h']]], 4 | ['q31_5ft',['q31_t',['../arm__math_8h.html#adc89a3547f5324b7b3b95adec3806bc0',1,'arm_math.h']]], 5 | ['q63_5ft',['q63_t',['../arm__math_8h.html#a5aea1cb12fc02d9d44c8abf217eaa5c6',1,'arm_math.h']]], 6 | ['q7_5ft',['q7_t',['../arm__math_8h.html#ae541b6f232c305361e9b416fc9eed263',1,'arm_math.h']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/variables_64.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['dobitreverse',['doBitReverse',['../_a_r_m_2arm__fft__bin__example__f32_8c.html#a4d2e31c38e8172505e0a369a6898657d',1,'doBitReverse(): arm_fft_bin_example_f32.c'],['../_g_c_c_2arm__fft__bin__example__f32_8c.html#a4d2e31c38e8172505e0a369a6898657d',1,'doBitReverse(): arm_fft_bin_example_f32.c']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/variables_65.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['energy',['energy',['../structarm__lms__norm__instance__f32.html#a6a4119e4f39447bbee31b066deafa16f',1,'arm_lms_norm_instance_f32::energy()'],['../structarm__lms__norm__instance__q31.html#a3c0ae42869afec8555dc8e3a7ef9b386',1,'arm_lms_norm_instance_q31::energy()'],['../structarm__lms__norm__instance__q15.html#a1c81ded399919d8181026bc1c8602e7b',1,'arm_lms_norm_instance_q15::energy()']]], 4 | ['err_5fsignal',['err_signal',['../arm__signal__converge__example__f32_8c.html#ae6bcc00ea126543ab33d6174549eacda',1,'arm_signal_converge_example_f32.c']]], 5 | ['erroutput',['errOutput',['../arm__signal__converge__example__f32_8c.html#a276e8a27484cf9389dabf047e76992ed',1,'arm_signal_converge_example_f32.c']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/variables_67.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['gaindb',['gainDB',['../arm__graphic__equalizer__example__q31_8c.html#a963aee85bb41a50fc943ac9048d123ab',1,'arm_graphic_equalizer_example_q31.c']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/search/variables_76.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['var',['var',['../_a_r_m_2arm__class__marks__example__f32_8c.html#a3bd39c4335d84be071cc1eaa9b0a8642',1,'var(): arm_class_marks_example_f32.c'],['../_g_c_c_2arm__class__marks__example__f32_8c.html#a3bd39c4335d84be071cc1eaa9b0a8642',1,'var(): arm_class_marks_example_f32.c']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/sinCos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/sinCos.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__bilinear__interp__instance__f32.js: -------------------------------------------------------------------------------- 1 | var structarm__bilinear__interp__instance__f32 = 2 | [ 3 | [ "numCols", "structarm__bilinear__interp__instance__f32.html#aede17bebfb1f835b61d71dd813eab3f8", null ], 4 | [ "numRows", "structarm__bilinear__interp__instance__f32.html#a34f2b17cc57b95011960df9718af6ed6", null ], 5 | [ "pData", "structarm__bilinear__interp__instance__f32.html#afd1e764591c991c212d56c893efb5ea4", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__bilinear__interp__instance__q15.js: -------------------------------------------------------------------------------- 1 | var structarm__bilinear__interp__instance__q15 = 2 | [ 3 | [ "numCols", "structarm__bilinear__interp__instance__q15.html#a7fa8772d01583374ff8ac18205a26a37", null ], 4 | [ "numRows", "structarm__bilinear__interp__instance__q15.html#a2130ae30a804995a9f5d0e2189e08565", null ], 5 | [ "pData", "structarm__bilinear__interp__instance__q15.html#a50d75b1316cee3e0dfad6dcc4c9a2954", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__bilinear__interp__instance__q31.js: -------------------------------------------------------------------------------- 1 | var structarm__bilinear__interp__instance__q31 = 2 | [ 3 | [ "numCols", "structarm__bilinear__interp__instance__q31.html#a6c3eff4eb17ff1d43f170efb84713a2d", null ], 4 | [ "numRows", "structarm__bilinear__interp__instance__q31.html#a2082e3eac56354d75291f03e96ce4aa5", null ], 5 | [ "pData", "structarm__bilinear__interp__instance__q31.html#a843eae0c9db5f815e77e1aaf9afea358", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__bilinear__interp__instance__q7.js: -------------------------------------------------------------------------------- 1 | var structarm__bilinear__interp__instance__q7 = 2 | [ 3 | [ "numCols", "structarm__bilinear__interp__instance__q7.html#a860dd0d24380ea06cfbb348fb3b12c9a", null ], 4 | [ "numRows", "structarm__bilinear__interp__instance__q7.html#ad5a8067cab5f9ea4688b11a623e16607", null ], 5 | [ "pData", "structarm__bilinear__interp__instance__q7.html#af05194d691bbefb02c34bafb22ca9ef0", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__biquad__cas__df1__32x64__ins__q31.js: -------------------------------------------------------------------------------- 1 | var structarm__biquad__cas__df1__32x64__ins__q31 = 2 | [ 3 | [ "numStages", "structarm__biquad__cas__df1__32x64__ins__q31.html#ad7cb9a9f5df8f4fcfc7a0b633672e574", null ], 4 | [ "pCoeffs", "structarm__biquad__cas__df1__32x64__ins__q31.html#a490462d6ebe0fecfb6acbf51bed22ecf", null ], 5 | [ "postShift", "structarm__biquad__cas__df1__32x64__ins__q31.html#a8e9d58e8dba5aa3b2fc4f36d2ed07996", null ], 6 | [ "pState", "structarm__biquad__cas__df1__32x64__ins__q31.html#a4c899cdfaf2bb955323e93637bd662e0", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__biquad__cascade__df2_t__instance__f32.js: -------------------------------------------------------------------------------- 1 | var structarm__biquad__cascade__df2_t__instance__f32 = 2 | [ 3 | [ "numStages", "structarm__biquad__cascade__df2_t__instance__f32.html#a4d17958c33c3d0a905f974bac50f033f", null ], 4 | [ "pCoeffs", "structarm__biquad__cascade__df2_t__instance__f32.html#a49a24fe1b6ad3b0b26779c32d8d80b2e", null ], 5 | [ "pState", "structarm__biquad__cascade__df2_t__instance__f32.html#a24d223addfd926a7177088cf2efe76b1", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__biquad__cascade__df2_t__instance__f64.js: -------------------------------------------------------------------------------- 1 | var structarm__biquad__cascade__df2_t__instance__f64 = 2 | [ 3 | [ "numStages", "structarm__biquad__cascade__df2_t__instance__f64.html#ad55380ff835b533aa5168f836db8a4de", null ], 4 | [ "pCoeffs", "structarm__biquad__cascade__df2_t__instance__f64.html#ae2f0180f9038c0393e1d6921bb3b878b", null ], 5 | [ "pState", "structarm__biquad__cascade__df2_t__instance__f64.html#a0bde57b618e3f9059b23b0de64e12ce3", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__biquad__cascade__stereo__df2_t__instance__f32.js: -------------------------------------------------------------------------------- 1 | var structarm__biquad__cascade__stereo__df2_t__instance__f32 = 2 | [ 3 | [ "numStages", "structarm__biquad__cascade__stereo__df2_t__instance__f32.html#a5655328252da5c2c2425ceed253bc4f1", null ], 4 | [ "pCoeffs", "structarm__biquad__cascade__stereo__df2_t__instance__f32.html#a58b15644de62a632c5e9d4a563569dc6", null ], 5 | [ "pState", "structarm__biquad__cascade__stereo__df2_t__instance__f32.html#a2cb00048bb1fe957a03c1ff56dfaf8f0", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__biquad__casd__df1__inst__f32.js: -------------------------------------------------------------------------------- 1 | var structarm__biquad__casd__df1__inst__f32 = 2 | [ 3 | [ "numStages", "structarm__biquad__casd__df1__inst__f32.html#af69820c37a87252c46453e4cfe120585", null ], 4 | [ "pCoeffs", "structarm__biquad__casd__df1__inst__f32.html#af9df3820576fb921809d1462c9c6d16c", null ], 5 | [ "pState", "structarm__biquad__casd__df1__inst__f32.html#a8c245d79e0d8cfabc82409d4b54fb682", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__biquad__casd__df1__inst__q15.js: -------------------------------------------------------------------------------- 1 | var structarm__biquad__casd__df1__inst__q15 = 2 | [ 3 | [ "numStages", "structarm__biquad__casd__df1__inst__q15.html#ad6d95e70abcf4ff1300181415ad92153", null ], 4 | [ "pCoeffs", "structarm__biquad__casd__df1__inst__q15.html#a1edaacdebb5b09d7635bf20c779855fc", null ], 5 | [ "postShift", "structarm__biquad__casd__df1__inst__q15.html#ada7e9d6269e6ed4eacf8f68729e9832d", null ], 6 | [ "pState", "structarm__biquad__casd__df1__inst__q15.html#a5481104ef2f8f81360b80b47d69ae932", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__biquad__casd__df1__inst__q31.js: -------------------------------------------------------------------------------- 1 | var structarm__biquad__casd__df1__inst__q31 = 2 | [ 3 | [ "numStages", "structarm__biquad__casd__df1__inst__q31.html#a2c2b579f1df1d8273a5d9d945c27e1b2", null ], 4 | [ "pCoeffs", "structarm__biquad__casd__df1__inst__q31.html#aa62366c632f3b5305086f841f079dbd2", null ], 5 | [ "postShift", "structarm__biquad__casd__df1__inst__q31.html#a636c7fbe09ec4bef0bc0a4b4e2151cbe", null ], 6 | [ "pState", "structarm__biquad__casd__df1__inst__q31.html#a5dcf4727f58eb4e8e8b392508d8657bb", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__cfft__instance__f32.js: -------------------------------------------------------------------------------- 1 | var structarm__cfft__instance__f32 = 2 | [ 3 | [ "bitRevLength", "structarm__cfft__instance__f32.html#a3ba329ed153d182746376208e773d648", null ], 4 | [ "fftLen", "structarm__cfft__instance__f32.html#acd8f9e9540e3dd348212726e5d6aaa95", null ], 5 | [ "pBitRevTable", "structarm__cfft__instance__f32.html#a21ceaf59a1bb8440af57c28d2dd9bbab", null ], 6 | [ "pTwiddle", "structarm__cfft__instance__f32.html#a59cc6f753f1498716e1444ac054c06de", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__cfft__instance__q15.js: -------------------------------------------------------------------------------- 1 | var structarm__cfft__instance__q15 = 2 | [ 3 | [ "bitRevLength", "structarm__cfft__instance__q15.html#a738907cf34bdbbaf724414ac2decbc3c", null ], 4 | [ "fftLen", "structarm__cfft__instance__q15.html#a5f9e1d3a8c127ee323b5e6929aeb90df", null ], 5 | [ "pBitRevTable", "structarm__cfft__instance__q15.html#ac9160b80243b99a0b6e2f75ddb5cf0ae", null ], 6 | [ "pTwiddle", "structarm__cfft__instance__q15.html#afdaf12ce4687cec021c5ae73d0987a3f", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__cfft__instance__q31.js: -------------------------------------------------------------------------------- 1 | var structarm__cfft__instance__q31 = 2 | [ 3 | [ "bitRevLength", "structarm__cfft__instance__q31.html#a2250fa6b8fe73292c5418c50c0549f87", null ], 4 | [ "fftLen", "structarm__cfft__instance__q31.html#a4406f23e8fd0bff8d555225612e2a2a8", null ], 5 | [ "pBitRevTable", "structarm__cfft__instance__q31.html#a8a464461649f023325ced1e10470f5d0", null ], 6 | [ "pTwiddle", "structarm__cfft__instance__q31.html#af751114feb91de3ace8600e91bdd0872", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__fir__decimate__instance__f32.js: -------------------------------------------------------------------------------- 1 | var structarm__fir__decimate__instance__f32 = 2 | [ 3 | [ "M", "structarm__fir__decimate__instance__f32.html#a76a8b2161731638eb3d67f277919f95d", null ], 4 | [ "numTaps", "structarm__fir__decimate__instance__f32.html#a2aa2986129db8affef03ede88dd45a03", null ], 5 | [ "pCoeffs", "structarm__fir__decimate__instance__f32.html#a268a8b0e80a3d9764baf33e4bc10dde2", null ], 6 | [ "pState", "structarm__fir__decimate__instance__f32.html#a5bddf29aaaf2011d2e3bcec59a83f633", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__fir__decimate__instance__q15.js: -------------------------------------------------------------------------------- 1 | var structarm__fir__decimate__instance__q15 = 2 | [ 3 | [ "M", "structarm__fir__decimate__instance__q15.html#aad9320284218b3aa378527ea518cf093", null ], 4 | [ "numTaps", "structarm__fir__decimate__instance__q15.html#ac1e9844488ec717da334fbd4c4f41990", null ], 5 | [ "pCoeffs", "structarm__fir__decimate__instance__q15.html#a01cacab67e73945e8289075598ede14d", null ], 6 | [ "pState", "structarm__fir__decimate__instance__q15.html#a3f7b5184bb28853ef401b001df121047", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__fir__decimate__instance__q31.js: -------------------------------------------------------------------------------- 1 | var structarm__fir__decimate__instance__q31 = 2 | [ 3 | [ "M", "structarm__fir__decimate__instance__q31.html#ad3d6936c36303b30dd38f1eddf248ae5", null ], 4 | [ "numTaps", "structarm__fir__decimate__instance__q31.html#a37915d42b0dc5e3057ebe83110798482", null ], 5 | [ "pCoeffs", "structarm__fir__decimate__instance__q31.html#a030d0391538c2481c5b348fd09a952ff", null ], 6 | [ "pState", "structarm__fir__decimate__instance__q31.html#a0ef0ef9e265f7ab873cfc6daa7593fdb", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__fir__instance__f32.js: -------------------------------------------------------------------------------- 1 | var structarm__fir__instance__f32 = 2 | [ 3 | [ "numTaps", "structarm__fir__instance__f32.html#a20cf98c92b5323799b7881c9ff4d2f7c", null ], 4 | [ "pCoeffs", "structarm__fir__instance__f32.html#a1c9cfca901d5902afeb640f2831488f4", null ], 5 | [ "pState", "structarm__fir__instance__f32.html#a7afcf4022e8560db9b8fd28b0d090a15", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__fir__instance__q15.js: -------------------------------------------------------------------------------- 1 | var structarm__fir__instance__q15 = 2 | [ 3 | [ "numTaps", "structarm__fir__instance__q15.html#a0e46f93cf51bfb18b1be808be9c5bfc9", null ], 4 | [ "pCoeffs", "structarm__fir__instance__q15.html#a6d16db16a5f8f0db54938f2967244d9e", null ], 5 | [ "pState", "structarm__fir__instance__q15.html#aa8d25f44f45b6a6c4cf38c31569b8a01", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__fir__instance__q31.js: -------------------------------------------------------------------------------- 1 | var structarm__fir__instance__q31 = 2 | [ 3 | [ "numTaps", "structarm__fir__instance__q31.html#a918fadd775b7a0482b21bf34dae2f094", null ], 4 | [ "pCoeffs", "structarm__fir__instance__q31.html#afaae4c884bdf11a4ec2f3b9bb2bb51d0", null ], 5 | [ "pState", "structarm__fir__instance__q31.html#a409f39c93b744784648bdc365541444d", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__fir__instance__q7.js: -------------------------------------------------------------------------------- 1 | var structarm__fir__instance__q7 = 2 | [ 3 | [ "numTaps", "structarm__fir__instance__q7.html#a9b50840e2c5ef5b17e1a584fb4cf0d06", null ], 4 | [ "pCoeffs", "structarm__fir__instance__q7.html#a0e45aedefc3fffad6cb315c5b6e5bd49", null ], 5 | [ "pState", "structarm__fir__instance__q7.html#aaddea3b9c7e16ddfd9428b7bf9f9c200", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__fir__interpolate__instance__f32.js: -------------------------------------------------------------------------------- 1 | var structarm__fir__interpolate__instance__f32 = 2 | [ 3 | [ "L", "structarm__fir__interpolate__instance__f32.html#ae6f94dcc0ccd8aa4bc699b20985d9df5", null ], 4 | [ "pCoeffs", "structarm__fir__interpolate__instance__f32.html#a86053b715980a93c9df630d6de5bb63c", null ], 5 | [ "phaseLength", "structarm__fir__interpolate__instance__f32.html#a389e669e13ec56292a70db8e92194b12", null ], 6 | [ "pState", "structarm__fir__interpolate__instance__f32.html#a42a8ba1bda85fa86d7b6c84d3da4c75b", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__fir__interpolate__instance__q15.js: -------------------------------------------------------------------------------- 1 | var structarm__fir__interpolate__instance__q15 = 2 | [ 3 | [ "L", "structarm__fir__interpolate__instance__q15.html#a5431bdc079e72a973b51d359f7f13603", null ], 4 | [ "pCoeffs", "structarm__fir__interpolate__instance__q15.html#a767d91d61d4c0beeddd4325d28d28e24", null ], 5 | [ "phaseLength", "structarm__fir__interpolate__instance__q15.html#ad5178a02a697a77e0d0e60705d9f0a19", null ], 6 | [ "pState", "structarm__fir__interpolate__instance__q15.html#a26b864363fa47954248f2590e3a82a3c", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__fir__interpolate__instance__q31.js: -------------------------------------------------------------------------------- 1 | var structarm__fir__interpolate__instance__q31 = 2 | [ 3 | [ "L", "structarm__fir__interpolate__instance__q31.html#a5cdf0a631cb74e0e9588c388abe5235c", null ], 4 | [ "pCoeffs", "structarm__fir__interpolate__instance__q31.html#afa719433687e1936ec3403d0d32f06e6", null ], 5 | [ "phaseLength", "structarm__fir__interpolate__instance__q31.html#a5d243796584afc7cd6c557f00b7acca5", null ], 6 | [ "pState", "structarm__fir__interpolate__instance__q31.html#addde04514b6e6ac72be3d609f0398b1a", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__fir__lattice__instance__f32.js: -------------------------------------------------------------------------------- 1 | var structarm__fir__lattice__instance__f32 = 2 | [ 3 | [ "numStages", "structarm__fir__lattice__instance__f32.html#ad369bd9997a250f195254df37408a38f", null ], 4 | [ "pCoeffs", "structarm__fir__lattice__instance__f32.html#a33bf5948c947f9ef80a99717cb0a0a43", null ], 5 | [ "pState", "structarm__fir__lattice__instance__f32.html#ae348884a1ba9b83fadccd5da640cbcaf", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__fir__lattice__instance__q15.js: -------------------------------------------------------------------------------- 1 | var structarm__fir__lattice__instance__q15 = 2 | [ 3 | [ "numStages", "structarm__fir__lattice__instance__q15.html#a38b179138d6a6c9cac4f8f79b6fd5357", null ], 4 | [ "pCoeffs", "structarm__fir__lattice__instance__q15.html#a78f872826140069cf67836fff87360bc", null ], 5 | [ "pState", "structarm__fir__lattice__instance__q15.html#a37b90dea2bc3ee7c9951a9fe74db0cbb", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__fir__lattice__instance__q31.js: -------------------------------------------------------------------------------- 1 | var structarm__fir__lattice__instance__q31 = 2 | [ 3 | [ "numStages", "structarm__fir__lattice__instance__q31.html#a9f3773bbb76bc5a8a5ee9d37786bf478", null ], 4 | [ "pCoeffs", "structarm__fir__lattice__instance__q31.html#a66c3364bf5863cd45e05f1652c3dc522", null ], 5 | [ "pState", "structarm__fir__lattice__instance__q31.html#a08fe9494ab7cd336b791e9657adadcf6", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__fir__sparse__instance__f32.js: -------------------------------------------------------------------------------- 1 | var structarm__fir__sparse__instance__f32 = 2 | [ 3 | [ "maxDelay", "structarm__fir__sparse__instance__f32.html#af8b8c775f4084c36774f06c082b4c078", null ], 4 | [ "numTaps", "structarm__fir__sparse__instance__f32.html#a5e19e7f234ac30a3db843352bf2a8515", null ], 5 | [ "pCoeffs", "structarm__fir__sparse__instance__f32.html#a04af7c738dfb0882ad102fcad501d94a", null ], 6 | [ "pState", "structarm__fir__sparse__instance__f32.html#a794af0916666d11cc564d6df08553555", null ], 7 | [ "pTapDelay", "structarm__fir__sparse__instance__f32.html#aaa54ae67e5d10c6dd0d697945c638d31", null ], 8 | [ "stateIndex", "structarm__fir__sparse__instance__f32.html#a57585aeca9dc8686e08df2865375a86d", null ] 9 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__fir__sparse__instance__q15.js: -------------------------------------------------------------------------------- 1 | var structarm__fir__sparse__instance__q15 = 2 | [ 3 | [ "maxDelay", "structarm__fir__sparse__instance__q15.html#ad14cc1070eecf7e1926d8f67a8273182", null ], 4 | [ "numTaps", "structarm__fir__sparse__instance__q15.html#a0f66b126dd8b85f7467cfb01b7bc4d77", null ], 5 | [ "pCoeffs", "structarm__fir__sparse__instance__q15.html#a78a6565473b5f0b8c77c3f0f58a76069", null ], 6 | [ "pState", "structarm__fir__sparse__instance__q15.html#a98b92b0f5208110129b9a67b1db90408", null ], 7 | [ "pTapDelay", "structarm__fir__sparse__instance__q15.html#aeab2855176c6efdb231a73a3672837d5", null ], 8 | [ "stateIndex", "structarm__fir__sparse__instance__q15.html#a89487f28cab52637426024005e478985", null ] 9 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__fir__sparse__instance__q31.js: -------------------------------------------------------------------------------- 1 | var structarm__fir__sparse__instance__q31 = 2 | [ 3 | [ "maxDelay", "structarm__fir__sparse__instance__q31.html#afdd3a1dc72132c854dc379154b68b674", null ], 4 | [ "numTaps", "structarm__fir__sparse__instance__q31.html#a07b6c01e58ec6dde384719130d36b0dc", null ], 5 | [ "pCoeffs", "structarm__fir__sparse__instance__q31.html#a093d6227f0d1597982cd083fb126f4e0", null ], 6 | [ "pState", "structarm__fir__sparse__instance__q31.html#a830be89daa5a393b225048889aa045d1", null ], 7 | [ "pTapDelay", "structarm__fir__sparse__instance__q31.html#ab87ae457adec8f727afefaa2599fc983", null ], 8 | [ "stateIndex", "structarm__fir__sparse__instance__q31.html#a557ed9d477e76e4ad2019344f19f568a", null ] 9 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__fir__sparse__instance__q7.js: -------------------------------------------------------------------------------- 1 | var structarm__fir__sparse__instance__q7 = 2 | [ 3 | [ "maxDelay", "structarm__fir__sparse__instance__q7.html#af74dacc1d34c078283e50f2530eb91df", null ], 4 | [ "numTaps", "structarm__fir__sparse__instance__q7.html#a54cdd27ca1c672b126c38763ce678b1c", null ], 5 | [ "pCoeffs", "structarm__fir__sparse__instance__q7.html#a3dac86f15e33553e8f3e19e0d712bae5", null ], 6 | [ "pState", "structarm__fir__sparse__instance__q7.html#a18072cf3ef3666d588f0d49512f2b28f", null ], 7 | [ "pTapDelay", "structarm__fir__sparse__instance__q7.html#ac625393c84bc0342ffdf26fc4eba1ac1", null ], 8 | [ "stateIndex", "structarm__fir__sparse__instance__q7.html#a2d2e65473fe3a3f2b953b4e0b60824df", null ] 9 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__iir__lattice__instance__f32.js: -------------------------------------------------------------------------------- 1 | var structarm__iir__lattice__instance__f32 = 2 | [ 3 | [ "numStages", "structarm__iir__lattice__instance__f32.html#af8de449af5efe1f30be82f9ba35587ee", null ], 4 | [ "pkCoeffs", "structarm__iir__lattice__instance__f32.html#aa69fcdd3775e828d450ce1bbd978fa31", null ], 5 | [ "pState", "structarm__iir__lattice__instance__f32.html#a30babe7815510219e6e3d28e6e4a5969", null ], 6 | [ "pvCoeffs", "structarm__iir__lattice__instance__f32.html#afc7c8f577e6f27d097fe55f57e707f72", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__iir__lattice__instance__q15.js: -------------------------------------------------------------------------------- 1 | var structarm__iir__lattice__instance__q15 = 2 | [ 3 | [ "numStages", "structarm__iir__lattice__instance__q15.html#a96fbed313bef01070409fa182d26ba3f", null ], 4 | [ "pkCoeffs", "structarm__iir__lattice__instance__q15.html#a41c214a1ec38d4a82fae8899d715dd29", null ], 5 | [ "pState", "structarm__iir__lattice__instance__q15.html#afd0136ab917b529554d93f41a5e04618", null ], 6 | [ "pvCoeffs", "structarm__iir__lattice__instance__q15.html#a4c4f57f45b223abbe2a9fb727bd2cad9", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__iir__lattice__instance__q31.js: -------------------------------------------------------------------------------- 1 | var structarm__iir__lattice__instance__q31 = 2 | [ 3 | [ "numStages", "structarm__iir__lattice__instance__q31.html#a9df4570ed28c50fd9193ab654ff236ad", null ], 4 | [ "pkCoeffs", "structarm__iir__lattice__instance__q31.html#a1d30aa16aac7722936ea9dee59211863", null ], 5 | [ "pState", "structarm__iir__lattice__instance__q31.html#a941282745effd26a889fbfadf4b95e6a", null ], 6 | [ "pvCoeffs", "structarm__iir__lattice__instance__q31.html#a04507e2b982b1dfa97b7b55752dea6b9", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__linear__interp__instance__f32.js: -------------------------------------------------------------------------------- 1 | var structarm__linear__interp__instance__f32 = 2 | [ 3 | [ "nValues", "structarm__linear__interp__instance__f32.html#a95f02a926b16d35359aca5b31e813b11", null ], 4 | [ "pYData", "structarm__linear__interp__instance__f32.html#ab373001f6afad0850359c344a4d7eee4", null ], 5 | [ "x1", "structarm__linear__interp__instance__f32.html#a08352dc6ea82fbc0827408e018535481", null ], 6 | [ "xSpacing", "structarm__linear__interp__instance__f32.html#aa8e2d686b5434a406d390b347b183511", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__lms__instance__f32.js: -------------------------------------------------------------------------------- 1 | var structarm__lms__instance__f32 = 2 | [ 3 | [ "mu", "structarm__lms__instance__f32.html#ae2af43d74c93dba16b876e10c97a5b99", null ], 4 | [ "numTaps", "structarm__lms__instance__f32.html#af73880d9009982f5d14529869494ec3d", null ], 5 | [ "pCoeffs", "structarm__lms__instance__f32.html#a4795c6f7d3f17cec15c2fd09f66edd1a", null ], 6 | [ "pState", "structarm__lms__instance__f32.html#aaf94285be2f99b5b9af40bea8dcb14b9", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__lms__instance__q15.js: -------------------------------------------------------------------------------- 1 | var structarm__lms__instance__q15 = 2 | [ 3 | [ "mu", "structarm__lms__instance__q15.html#aae46129d7cfd7f1c162cc502ed0a9d49", null ], 4 | [ "numTaps", "structarm__lms__instance__q15.html#a0078e894f805af1b360369e619fb57b3", null ], 5 | [ "pCoeffs", "structarm__lms__instance__q15.html#a42f95368b94898eb82608e1113d18cab", null ], 6 | [ "postShift", "structarm__lms__instance__q15.html#acca5fbaef4a52ae411de24c9a0b929cf", null ], 7 | [ "pState", "structarm__lms__instance__q15.html#a9a575ff82c1e68cbb583083439260d08", null ] 8 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__lms__instance__q31.js: -------------------------------------------------------------------------------- 1 | var structarm__lms__instance__q31 = 2 | [ 3 | [ "mu", "structarm__lms__instance__q31.html#acb6ca9996b3c5f740d5d6c8e9f4f1d46", null ], 4 | [ "numTaps", "structarm__lms__instance__q31.html#ac0d84f7d054555931ef8a62511fbcb8a", null ], 5 | [ "pCoeffs", "structarm__lms__instance__q31.html#a4afe56e991a5416adfd462aa88bda500", null ], 6 | [ "postShift", "structarm__lms__instance__q31.html#a4705a8f0011bb9166e09bf5bd51e595e", null ], 7 | [ "pState", "structarm__lms__instance__q31.html#a206d47b49de6f357f933ebe61520753c", null ] 8 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__lms__norm__instance__f32.js: -------------------------------------------------------------------------------- 1 | var structarm__lms__norm__instance__f32 = 2 | [ 3 | [ "energy", "structarm__lms__norm__instance__f32.html#a6a4119e4f39447bbee31b066deafa16f", null ], 4 | [ "mu", "structarm__lms__norm__instance__f32.html#a84401d3cfc6c40f69c08223cf341b886", null ], 5 | [ "numTaps", "structarm__lms__norm__instance__f32.html#ac95f8ca3d816524c2070643852fac5e8", null ], 6 | [ "pCoeffs", "structarm__lms__norm__instance__f32.html#a1ba688d90aba7de003ed4ad8e2e7ddda", null ], 7 | [ "pState", "structarm__lms__norm__instance__f32.html#a0bc03338687002ed5f2e4a363eb095ec", null ], 8 | [ "x0", "structarm__lms__norm__instance__f32.html#aec958fe89b164a30f38bcca9f5d96218", null ] 9 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__matrix__instance__f32.js: -------------------------------------------------------------------------------- 1 | var structarm__matrix__instance__f32 = 2 | [ 3 | [ "numCols", "structarm__matrix__instance__f32.html#acdd1fb73734df68b89565c54f1dd8ae2", null ], 4 | [ "numRows", "structarm__matrix__instance__f32.html#a23f4e34d70a82c9cad7612add5640b7b", null ], 5 | [ "pData", "structarm__matrix__instance__f32.html#af3917c032600a9dfd5ed4a96f074910a", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__matrix__instance__f64.js: -------------------------------------------------------------------------------- 1 | var structarm__matrix__instance__f64 = 2 | [ 3 | [ "numCols", "structarm__matrix__instance__f64.html#ab0f0399aff3201880e2d8a447de9a7ee", null ], 4 | [ "numRows", "structarm__matrix__instance__f64.html#a8b44d1e5003345047c4ead9e1593bf22", null ], 5 | [ "pData", "structarm__matrix__instance__f64.html#a5b2475f8ff1e4818955cdd18bc40a097", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__matrix__instance__q15.js: -------------------------------------------------------------------------------- 1 | var structarm__matrix__instance__q15 = 2 | [ 3 | [ "numCols", "structarm__matrix__instance__q15.html#acbbce67ba058d8e1c867c71d57288c97", null ], 4 | [ "numRows", "structarm__matrix__instance__q15.html#a9bac6ed54be287c4d4f01a1a28be65f5", null ], 5 | [ "pData", "structarm__matrix__instance__q15.html#a6da33a5553e634787d0f515cf8d724af", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__matrix__instance__q31.js: -------------------------------------------------------------------------------- 1 | var structarm__matrix__instance__q31 = 2 | [ 3 | [ "numCols", "structarm__matrix__instance__q31.html#abd161da7614eda927157f18b698074b1", null ], 4 | [ "numRows", "structarm__matrix__instance__q31.html#a63bacac158a821c8cfc06088d251598c", null ], 5 | [ "pData", "structarm__matrix__instance__q31.html#a09a64267c0579fef086efc9059741e56", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__pid__instance__f32.js: -------------------------------------------------------------------------------- 1 | var structarm__pid__instance__f32 = 2 | [ 3 | [ "A0", "structarm__pid__instance__f32.html#ad7b0bed64915d0a25a3409fa2dc45556", null ], 4 | [ "A1", "structarm__pid__instance__f32.html#a7def89571c50f7137a213326a396e560", null ], 5 | [ "A2", "structarm__pid__instance__f32.html#a155acf642ba2f521869f19d694cd7fa0", null ], 6 | [ "Kd", "structarm__pid__instance__f32.html#ad5b68fbf84d16188ae4747ff91f6f088", null ], 7 | [ "Ki", "structarm__pid__instance__f32.html#ac0feffde05fe391eeab3bf78e953830a", null ], 8 | [ "Kp", "structarm__pid__instance__f32.html#aa9b9aa9e413c6cec376a9dddc9f01ebe", null ], 9 | [ "state", "structarm__pid__instance__f32.html#afd394e1e52fb1d526aa472c83b8f2464", null ] 10 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__pid__instance__q15.js: -------------------------------------------------------------------------------- 1 | var structarm__pid__instance__q15 = 2 | [ 3 | [ "A0", "structarm__pid__instance__q15.html#ad77f3a2823c7f96de42c92a3fbf3246b", null ], 4 | [ "A1", "structarm__pid__instance__q15.html#a1b8412c517071962a9acfdc6778906ec", null ], 5 | [ "Kd", "structarm__pid__instance__q15.html#af5d4b53091f19eff7536636b7cc43111", null ], 6 | [ "Ki", "structarm__pid__instance__q15.html#a0dcc19d5c8f7bc401acea9e8318cd777", null ], 7 | [ "Kp", "structarm__pid__instance__q15.html#ad228aae24a1b6d855c93a8b9bbc1c4f1", null ], 8 | [ "state", "structarm__pid__instance__q15.html#a4a3f0a878b5b6b055e3478a2f244cd30", null ] 9 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__pid__instance__q31.js: -------------------------------------------------------------------------------- 1 | var structarm__pid__instance__q31 = 2 | [ 3 | [ "A0", "structarm__pid__instance__q31.html#aa5332635ce9c7078cdb4c1ecf442eadd", null ], 4 | [ "A1", "structarm__pid__instance__q31.html#a2f7492bd6fb92fae5e2de7fbbec39b0e", null ], 5 | [ "A2", "structarm__pid__instance__q31.html#a3e34537c53af4f9ad7bfffa4dff27c82", null ], 6 | [ "Kd", "structarm__pid__instance__q31.html#aab4ff371d14441df501f1169f71cbd17", null ], 7 | [ "Ki", "structarm__pid__instance__q31.html#aa861d69fd398f29aa0b4b455a823ed72", null ], 8 | [ "Kp", "structarm__pid__instance__q31.html#ac2410bf7f856d58dc1d773d4983cac8e", null ], 9 | [ "state", "structarm__pid__instance__q31.html#a228e4a64da6014844a0a671a1fa391d4", null ] 10 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/structarm__rfft__fast__instance__f32.js: -------------------------------------------------------------------------------- 1 | var structarm__rfft__fast__instance__f32 = 2 | [ 3 | [ "fftLenRFFT", "structarm__rfft__fast__instance__f32.html#aef06ab665041ec36f5b25d464f0cab14", null ], 4 | [ "pTwiddleRFFT", "structarm__rfft__fast__instance__f32.html#a9f30b04f163fabc1b24421d3c323d5fc", null ], 5 | [ "Sint", "structarm__rfft__fast__instance__f32.html#a37419ababdfb3151b1891ae6bcd21012", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/sync_off.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/sync_on.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/tab_a.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/tab_b.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/tab_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/tab_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/DSP/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/DSP/html/tab_topnav.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/CMSIS_END_USER_LICENCE_AGREEMENT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/CMSIS_END_USER_LICENCE_AGREEMENT.pdf -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/CMSISv4_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/CMSISv4_small.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/bc_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/bdwn.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/closed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/doxygen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/ftv2blank.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/ftv2cl.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/ftv2doc.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/ftv2folderopen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/ftv2lastnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/ftv2link.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/ftv2mnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/ftv2mo.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/ftv2node.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/ftv2ns.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/ftv2plastnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/ftv2pnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/ftv2splitbar.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/ftv2vertline.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/nav_f.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/nav_g.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/nav_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/navtreeindex0.js: -------------------------------------------------------------------------------- 1 | var NAVTREEINDEX0 = 2 | { 3 | "_c_m_revision_history.html":[1], 4 | "index.html":[], 5 | "index.html":[0], 6 | "pages.html":[] 7 | }; 8 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/open.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/sync_off.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/sync_on.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/tab_a.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/tab_b.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/tab_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/tab_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/General/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/General/html/tab_topnav.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/API_Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/API_Structure.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/CMSIS_RTOS_Files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/CMSIS_RTOS_Files.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/MailQueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/MailQueue.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/MessageQueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/MessageQueue.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/Mutex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/Mutex.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/Semaphore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/Semaphore.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/ThreadStatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/ThreadStatus.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/Timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/Timer.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/TimerValues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/TimerValues.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/annotated.js: -------------------------------------------------------------------------------- 1 | var annotated = 2 | [ 3 | [ "osMailQDef_t", "structos_mail_q_def__t.html", "structos_mail_q_def__t" ], 4 | [ "osMessageQDef_t", "structos_message_q_def__t.html", "structos_message_q_def__t" ], 5 | [ "osMutexDef_t", "structos_mutex_def__t.html", "structos_mutex_def__t" ], 6 | [ "osPoolDef_t", "structos_pool_def__t.html", "structos_pool_def__t" ], 7 | [ "osSemaphoreDef_t", "structos_semaphore_def__t.html", "structos_semaphore_def__t" ], 8 | [ "osThreadDef_t", "structos_thread_def__t.html", "structos_thread_def__t" ], 9 | [ "osTimerDef_t", "structos_timer_def__t.html", "structos_timer_def__t" ] 10 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/bc_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/bdwn.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/closed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/doxygen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/ftv2blank.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/ftv2cl.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/ftv2doc.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/ftv2folderopen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/ftv2lastnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/ftv2link.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/ftv2mnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/ftv2mo.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/ftv2node.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/ftv2ns.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/ftv2plastnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/ftv2pnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/ftv2splitbar.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/ftv2vertline.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___signal_mgmt.js: -------------------------------------------------------------------------------- 1 | var group___c_m_s_i_s___r_t_o_s___signal_mgmt = 2 | [ 3 | [ "osFeature_Signals", "group___c_m_s_i_s___r_t_o_s___signal_mgmt.html#ga01edde265710d883b6e237d34a6ef4a6", null ], 4 | [ "osSignalClear", "group___c_m_s_i_s___r_t_o_s___signal_mgmt.html#ga87283a6ebc31ce9ed42baf3ea7e4eab6", null ], 5 | [ "osSignalSet", "group___c_m_s_i_s___r_t_o_s___signal_mgmt.html#ga3de2730654589d6c3559c4b9e2825553", null ], 6 | [ "osSignalWait", "group___c_m_s_i_s___r_t_o_s___signal_mgmt.html#ga38860acda96df47da6923348d96fc4c9", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___wait.js: -------------------------------------------------------------------------------- 1 | var group___c_m_s_i_s___r_t_o_s___wait = 2 | [ 3 | [ "osFeature_Wait", "group___c_m_s_i_s___r_t_o_s___wait.html#ga6c97d38879ae86491628f6e647639bad", null ], 4 | [ "osDelay", "group___c_m_s_i_s___r_t_o_s___wait.html#ga02e19d5e723bfb06ba9324d625162255", null ], 5 | [ "osWait", "group___c_m_s_i_s___r_t_o_s___wait.html#ga8470c8aaedfde524a44e22e5b2328285", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/modules.js: -------------------------------------------------------------------------------- 1 | var modules = 2 | [ 3 | [ "CMSIS-RTOS API", "group___c_m_s_i_s___r_t_o_s.html", "group___c_m_s_i_s___r_t_o_s" ] 4 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/nav_f.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/nav_g.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/nav_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/open.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/simple_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/simple_signal.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/structos_mail_q_def__t.js: -------------------------------------------------------------------------------- 1 | var structos_mail_q_def__t = 2 | [ 3 | [ "item_sz", "structos_mail_q_def__t.html#a4c2a0c691de3365c00ecd22d8102811f", null ], 4 | [ "pool", "structos_mail_q_def__t.html#a269c3935f8bc66db70bccdd02cb05e3c", null ], 5 | [ "queue_sz", "structos_mail_q_def__t.html#a8a83a3a8c0aa8057b13807d2a54077e0", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/structos_message_q_def__t.js: -------------------------------------------------------------------------------- 1 | var structos_message_q_def__t = 2 | [ 3 | [ "item_sz", "structos_message_q_def__t.html#a4c2a0c691de3365c00ecd22d8102811f", null ], 4 | [ "pool", "structos_message_q_def__t.html#a269c3935f8bc66db70bccdd02cb05e3c", null ], 5 | [ "queue_sz", "structos_message_q_def__t.html#a8a83a3a8c0aa8057b13807d2a54077e0", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/structos_mutex_def__t.js: -------------------------------------------------------------------------------- 1 | var structos_mutex_def__t = 2 | [ 3 | [ "dummy", "structos_mutex_def__t.html#a44b7a3baf02bac7ad707e8f2f5eca1ca", null ] 4 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/structos_pool_def__t.js: -------------------------------------------------------------------------------- 1 | var structos_pool_def__t = 2 | [ 3 | [ "item_sz", "structos_pool_def__t.html#a4c2a0c691de3365c00ecd22d8102811f", null ], 4 | [ "pool", "structos_pool_def__t.html#a269c3935f8bc66db70bccdd02cb05e3c", null ], 5 | [ "pool_sz", "structos_pool_def__t.html#ac112e786b2a234e0e45cb5bdbee53763", null ] 6 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/structos_semaphore_def__t.js: -------------------------------------------------------------------------------- 1 | var structos_semaphore_def__t = 2 | [ 3 | [ "dummy", "structos_semaphore_def__t.html#a44b7a3baf02bac7ad707e8f2f5eca1ca", null ] 4 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/structos_thread_def__t.js: -------------------------------------------------------------------------------- 1 | var structos_thread_def__t = 2 | [ 3 | [ "instances", "structos_thread_def__t.html#aa4c4115851a098c0b87358ab6c025603", null ], 4 | [ "pthread", "structos_thread_def__t.html#ad3c9624ee214329fb34e71f544a6933e", null ], 5 | [ "stacksize", "structos_thread_def__t.html#a950b7f81ad4711959517296e63bc79d1", null ], 6 | [ "tpriority", "structos_thread_def__t.html#a15da8f23c6fe684b70a73646ada685e7", null ] 7 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/structos_timer_def__t.js: -------------------------------------------------------------------------------- 1 | var structos_timer_def__t = 2 | [ 3 | [ "ptimer", "structos_timer_def__t.html#a15773df83aba93f8e61f3737af5fae47", null ] 4 | ]; -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/sync_off.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/sync_on.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/tab_a.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/tab_b.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/tab_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/tab_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/RTOS/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Documentation/RTOS/html/tab_topnav.png -------------------------------------------------------------------------------- /Drivers/CMSIS/Documentation/index.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Redirect to the CMSIS main page after 0 seconds 5 | 6 | 7 | 8 | 9 | 10 | 11 | If the automatic redirection is failing, click open CMSIS Documentation. 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Lib/ARM/arm_cortexM3b_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Lib/ARM/arm_cortexM3b_math.lib -------------------------------------------------------------------------------- /Drivers/CMSIS/Lib/ARM/arm_cortexM3l_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Lib/ARM/arm_cortexM3l_math.lib -------------------------------------------------------------------------------- /Drivers/CMSIS/Lib/GCC/libarm_cortexM3l_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/CMSIS/Lib/GCC/libarm_cortexM3l_math.a -------------------------------------------------------------------------------- /Drivers/CMSIS/index.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Redirect to the CMSIS main page after 0 seconds 5 | 6 | 7 | 8 | 9 | 10 | 11 | If the automatic redirection is failing, click open CMSIS Documentation. 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/STM32F100xE_User_Manual.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/STM32F1xx_HAL_Driver/STM32F100xE_User_Manual.chm -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/STM32F103xG_User_Manual.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/STM32F1xx_HAL_Driver/STM32F103xG_User_Manual.chm -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/STM32F107xC_User_Manual.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/Drivers/STM32F1xx_HAL_Driver/STM32F107xC_User_Manual.chm -------------------------------------------------------------------------------- /Inc/delay.h: -------------------------------------------------------------------------------- 1 | #ifndef __DELAY_H 2 | #define __DELAY_H 3 | 4 | #define DELAY_TIM_FREQUENCY_US 1000000 /* = 1MHZ -> timer runs in microseconds */ 5 | #define DELAY_TIM_FREQUENCY_MS 1000 /* = 1kHZ -> timer runs in milliseconds */ 6 | 7 | 8 | void _init_us(void); 9 | void _init_ms(void); 10 | void _stop_timer(void); 11 | void Delay_ms(uint32_t mSecs); 12 | void Delay_us(uint32_t uSecs); 13 | 14 | 15 | #endif -------------------------------------------------------------------------------- /Inc/uart.h: -------------------------------------------------------------------------------- 1 | #ifndef __UART_H 2 | #define __UART_H 3 | 4 | #ifdef __cplusplus 5 | extern "C" { 6 | #endif 7 | 8 | #include "stm32f1xx_hal.h" 9 | 10 | struct UART_dati{ 11 | volatile __IO uint8_t bUartRx[101]; 12 | volatile __IO uint8_t bUartTx[20]; 13 | volatile __IO uint8_t UartRxReady; 14 | volatile __IO uint8_t UarttxReady; 15 | }; 16 | 17 | 18 | void MX_USART2_UART_Init(void); 19 | extern void Error_Handler(void); 20 | 21 | void Console_Log(char *message); 22 | void Uart2_TX(char *message); 23 | uint8_t Uart2_IS_TX_free(void); 24 | uint8_t Uart2_IS_RX_available(void); 25 | 26 | 27 | #ifdef __cplusplus 28 | } 29 | #endif 30 | 31 | #endif /* __STM32F1xx_IT_H */ 32 | -------------------------------------------------------------------------------- /build/hoverboard.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/build/hoverboard.bin -------------------------------------------------------------------------------- /build/hoverboard.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/build/hoverboard.elf -------------------------------------------------------------------------------- /pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucysrausch/Hoverboard-Board-Hack/4a0ecf17a2fd2ca237823c69aa00e6476852ba7b/pinout.png --------------------------------------------------------------------------------