├── .cproject ├── .mxproject ├── .project ├── .settings ├── language.settings.xml ├── org.eclipse.cdt.core.prefs └── stm32cubeide.project.prefs ├── Core ├── Inc │ ├── TJ_MPU6050.h │ ├── main.h │ ├── stm32f4xx_hal_conf.h │ └── stm32f4xx_it.h ├── Src │ ├── TJ_MPU6050.cpp │ ├── main.cpp │ ├── stm32f4xx_hal_msp.c │ ├── stm32f4xx_it.c │ ├── syscalls.c │ ├── sysmem.c │ └── system_stm32f4xx.c └── Startup │ └── startup_stm32f407vgtx.s ├── Debug ├── Core │ ├── Src │ │ ├── TJ_MPU6050.d │ │ ├── TJ_MPU6050.o │ │ ├── TJ_MPU6050.su │ │ ├── main.d │ │ ├── main.o │ │ ├── main.su │ │ ├── stm32f4xx_hal_msp.d │ │ ├── stm32f4xx_hal_msp.o │ │ ├── stm32f4xx_hal_msp.su │ │ ├── stm32f4xx_it.d │ │ ├── stm32f4xx_it.o │ │ ├── stm32f4xx_it.su │ │ ├── subdir.mk │ │ ├── syscalls.d │ │ ├── syscalls.o │ │ ├── syscalls.su │ │ ├── sysmem.d │ │ ├── sysmem.o │ │ ├── sysmem.su │ │ ├── system_stm32f4xx.d │ │ ├── system_stm32f4xx.o │ │ └── system_stm32f4xx.su │ └── Startup │ │ ├── startup_stm32f407vgtx.d │ │ ├── startup_stm32f407vgtx.o │ │ └── subdir.mk ├── Drivers │ └── STM32F4xx_HAL_Driver │ │ └── Src │ │ ├── stm32f4xx_hal.d │ │ ├── stm32f4xx_hal.o │ │ ├── stm32f4xx_hal.su │ │ ├── stm32f4xx_hal_cortex.d │ │ ├── stm32f4xx_hal_cortex.o │ │ ├── stm32f4xx_hal_cortex.su │ │ ├── stm32f4xx_hal_crc.d │ │ ├── stm32f4xx_hal_crc.o │ │ ├── stm32f4xx_hal_crc.su │ │ ├── stm32f4xx_hal_dma.d │ │ ├── stm32f4xx_hal_dma.o │ │ ├── stm32f4xx_hal_dma.su │ │ ├── stm32f4xx_hal_dma_ex.d │ │ ├── stm32f4xx_hal_dma_ex.o │ │ ├── stm32f4xx_hal_dma_ex.su │ │ ├── stm32f4xx_hal_exti.d │ │ ├── stm32f4xx_hal_exti.o │ │ ├── stm32f4xx_hal_exti.su │ │ ├── stm32f4xx_hal_flash.d │ │ ├── stm32f4xx_hal_flash.o │ │ ├── stm32f4xx_hal_flash.su │ │ ├── stm32f4xx_hal_flash_ex.d │ │ ├── stm32f4xx_hal_flash_ex.o │ │ ├── stm32f4xx_hal_flash_ex.su │ │ ├── stm32f4xx_hal_flash_ramfunc.d │ │ ├── stm32f4xx_hal_flash_ramfunc.o │ │ ├── stm32f4xx_hal_flash_ramfunc.su │ │ ├── stm32f4xx_hal_gpio.d │ │ ├── stm32f4xx_hal_gpio.o │ │ ├── stm32f4xx_hal_gpio.su │ │ ├── stm32f4xx_hal_i2c.d │ │ ├── stm32f4xx_hal_i2c.o │ │ ├── stm32f4xx_hal_i2c.su │ │ ├── stm32f4xx_hal_i2c_ex.d │ │ ├── stm32f4xx_hal_i2c_ex.o │ │ ├── stm32f4xx_hal_i2c_ex.su │ │ ├── stm32f4xx_hal_pwr.d │ │ ├── stm32f4xx_hal_pwr.o │ │ ├── stm32f4xx_hal_pwr.su │ │ ├── stm32f4xx_hal_pwr_ex.d │ │ ├── stm32f4xx_hal_pwr_ex.o │ │ ├── stm32f4xx_hal_pwr_ex.su │ │ ├── stm32f4xx_hal_rcc.d │ │ ├── stm32f4xx_hal_rcc.o │ │ ├── stm32f4xx_hal_rcc.su │ │ ├── stm32f4xx_hal_rcc_ex.d │ │ ├── stm32f4xx_hal_rcc_ex.o │ │ ├── stm32f4xx_hal_rcc_ex.su │ │ ├── stm32f4xx_hal_tim.d │ │ ├── stm32f4xx_hal_tim.o │ │ ├── stm32f4xx_hal_tim.su │ │ ├── stm32f4xx_hal_tim_ex.d │ │ ├── stm32f4xx_hal_tim_ex.o │ │ ├── stm32f4xx_hal_tim_ex.su │ │ ├── stm32f4xx_hal_uart.d │ │ ├── stm32f4xx_hal_uart.o │ │ ├── stm32f4xx_hal_uart.su │ │ └── subdir.mk ├── Middlewares │ └── Third_Party │ │ └── EdgeImpulse_MottionDetection_P1_MachineLearning │ │ └── edgeimpulse │ │ ├── cubeai-model │ │ ├── network.d │ │ ├── network.o │ │ ├── network.su │ │ ├── network_data.d │ │ ├── network_data.o │ │ ├── network_data.su │ │ └── subdir.mk │ │ └── edge-impulse-sdk │ │ ├── CMSIS │ │ └── DSP │ │ │ └── Source │ │ │ ├── BasicMathFunctions │ │ │ ├── BasicMathFunctionsF16.d │ │ │ ├── BasicMathFunctionsF16.o │ │ │ ├── BasicMathFunctionsF16.su │ │ │ ├── arm_abs_f16.d │ │ │ ├── arm_abs_f16.o │ │ │ ├── arm_abs_f16.su │ │ │ ├── arm_abs_f32.d │ │ │ ├── arm_abs_f32.o │ │ │ ├── arm_abs_f32.su │ │ │ ├── arm_abs_q15.d │ │ │ ├── arm_abs_q15.o │ │ │ ├── arm_abs_q15.su │ │ │ ├── arm_abs_q31.d │ │ │ ├── arm_abs_q31.o │ │ │ ├── arm_abs_q31.su │ │ │ ├── arm_abs_q7.d │ │ │ ├── arm_abs_q7.o │ │ │ ├── arm_abs_q7.su │ │ │ ├── arm_add_f16.d │ │ │ ├── arm_add_f16.o │ │ │ ├── arm_add_f16.su │ │ │ ├── arm_add_f32.d │ │ │ ├── arm_add_f32.o │ │ │ ├── arm_add_f32.su │ │ │ ├── arm_add_q15.d │ │ │ ├── arm_add_q15.o │ │ │ ├── arm_add_q15.su │ │ │ ├── arm_add_q31.d │ │ │ ├── arm_add_q31.o │ │ │ ├── arm_add_q31.su │ │ │ ├── arm_add_q7.d │ │ │ ├── arm_add_q7.o │ │ │ ├── arm_add_q7.su │ │ │ ├── arm_and_u16.d │ │ │ ├── arm_and_u16.o │ │ │ ├── arm_and_u16.su │ │ │ ├── arm_and_u32.d │ │ │ ├── arm_and_u32.o │ │ │ ├── arm_and_u32.su │ │ │ ├── arm_and_u8.d │ │ │ ├── arm_and_u8.o │ │ │ ├── arm_and_u8.su │ │ │ ├── arm_dot_prod_f16.d │ │ │ ├── arm_dot_prod_f16.o │ │ │ ├── arm_dot_prod_f16.su │ │ │ ├── arm_dot_prod_f32.d │ │ │ ├── arm_dot_prod_f32.o │ │ │ ├── arm_dot_prod_f32.su │ │ │ ├── arm_dot_prod_q15.d │ │ │ ├── arm_dot_prod_q15.o │ │ │ ├── arm_dot_prod_q15.su │ │ │ ├── arm_dot_prod_q31.d │ │ │ ├── arm_dot_prod_q31.o │ │ │ ├── arm_dot_prod_q31.su │ │ │ ├── arm_dot_prod_q7.d │ │ │ ├── arm_dot_prod_q7.o │ │ │ ├── arm_dot_prod_q7.su │ │ │ ├── arm_mult_f16.d │ │ │ ├── arm_mult_f16.o │ │ │ ├── arm_mult_f16.su │ │ │ ├── arm_mult_f32.d │ │ │ ├── arm_mult_f32.o │ │ │ ├── arm_mult_f32.su │ │ │ ├── arm_mult_q15.d │ │ │ ├── arm_mult_q15.o │ │ │ ├── arm_mult_q15.su │ │ │ ├── arm_mult_q31.d │ │ │ ├── arm_mult_q31.o │ │ │ ├── arm_mult_q31.su │ │ │ ├── arm_mult_q7.d │ │ │ ├── arm_mult_q7.o │ │ │ ├── arm_mult_q7.su │ │ │ ├── arm_negate_f16.d │ │ │ ├── arm_negate_f16.o │ │ │ ├── arm_negate_f16.su │ │ │ ├── arm_negate_f32.d │ │ │ ├── arm_negate_f32.o │ │ │ ├── arm_negate_f32.su │ │ │ ├── arm_negate_q15.d │ │ │ ├── arm_negate_q15.o │ │ │ ├── arm_negate_q15.su │ │ │ ├── arm_negate_q31.d │ │ │ ├── arm_negate_q31.o │ │ │ ├── arm_negate_q31.su │ │ │ ├── arm_negate_q7.d │ │ │ ├── arm_negate_q7.o │ │ │ ├── arm_negate_q7.su │ │ │ ├── arm_not_u16.d │ │ │ ├── arm_not_u16.o │ │ │ ├── arm_not_u16.su │ │ │ ├── arm_not_u32.d │ │ │ ├── arm_not_u32.o │ │ │ ├── arm_not_u32.su │ │ │ ├── arm_not_u8.d │ │ │ ├── arm_not_u8.o │ │ │ ├── arm_not_u8.su │ │ │ ├── arm_offset_f16.d │ │ │ ├── arm_offset_f16.o │ │ │ ├── arm_offset_f16.su │ │ │ ├── arm_offset_f32.d │ │ │ ├── arm_offset_f32.o │ │ │ ├── arm_offset_f32.su │ │ │ ├── arm_offset_q15.d │ │ │ ├── arm_offset_q15.o │ │ │ ├── arm_offset_q15.su │ │ │ ├── arm_offset_q31.d │ │ │ ├── arm_offset_q31.o │ │ │ ├── arm_offset_q31.su │ │ │ ├── arm_offset_q7.d │ │ │ ├── arm_offset_q7.o │ │ │ ├── arm_offset_q7.su │ │ │ ├── arm_or_u16.d │ │ │ ├── arm_or_u16.o │ │ │ ├── arm_or_u16.su │ │ │ ├── arm_or_u32.d │ │ │ ├── arm_or_u32.o │ │ │ ├── arm_or_u32.su │ │ │ ├── arm_or_u8.d │ │ │ ├── arm_or_u8.o │ │ │ ├── arm_or_u8.su │ │ │ ├── arm_scale_f16.d │ │ │ ├── arm_scale_f16.o │ │ │ ├── arm_scale_f16.su │ │ │ ├── arm_scale_f32.d │ │ │ ├── arm_scale_f32.o │ │ │ ├── arm_scale_f32.su │ │ │ ├── arm_scale_q15.d │ │ │ ├── arm_scale_q15.o │ │ │ ├── arm_scale_q15.su │ │ │ ├── arm_scale_q31.d │ │ │ ├── arm_scale_q31.o │ │ │ ├── arm_scale_q31.su │ │ │ ├── arm_scale_q7.d │ │ │ ├── arm_scale_q7.o │ │ │ ├── arm_scale_q7.su │ │ │ ├── arm_shift_q15.d │ │ │ ├── arm_shift_q15.o │ │ │ ├── arm_shift_q15.su │ │ │ ├── arm_shift_q31.d │ │ │ ├── arm_shift_q31.o │ │ │ ├── arm_shift_q31.su │ │ │ ├── arm_shift_q7.d │ │ │ ├── arm_shift_q7.o │ │ │ ├── arm_shift_q7.su │ │ │ ├── arm_sub_f16.d │ │ │ ├── arm_sub_f16.o │ │ │ ├── arm_sub_f16.su │ │ │ ├── arm_sub_f32.d │ │ │ ├── arm_sub_f32.o │ │ │ ├── arm_sub_f32.su │ │ │ ├── arm_sub_q15.d │ │ │ ├── arm_sub_q15.o │ │ │ ├── arm_sub_q15.su │ │ │ ├── arm_sub_q31.d │ │ │ ├── arm_sub_q31.o │ │ │ ├── arm_sub_q31.su │ │ │ ├── arm_sub_q7.d │ │ │ ├── arm_sub_q7.o │ │ │ ├── arm_sub_q7.su │ │ │ ├── arm_xor_u16.d │ │ │ ├── arm_xor_u16.o │ │ │ ├── arm_xor_u16.su │ │ │ ├── arm_xor_u32.d │ │ │ ├── arm_xor_u32.o │ │ │ ├── arm_xor_u32.su │ │ │ ├── arm_xor_u8.d │ │ │ ├── arm_xor_u8.o │ │ │ ├── arm_xor_u8.su │ │ │ └── subdir.mk │ │ │ ├── BayesFunctions │ │ │ ├── arm_gaussian_naive_bayes_predict_f32.d │ │ │ ├── arm_gaussian_naive_bayes_predict_f32.o │ │ │ ├── arm_gaussian_naive_bayes_predict_f32.su │ │ │ └── subdir.mk │ │ │ ├── CommonTables │ │ │ ├── CommonTablesF16.d │ │ │ ├── CommonTablesF16.o │ │ │ ├── CommonTablesF16.su │ │ │ ├── arm_common_tables.d │ │ │ ├── arm_common_tables.o │ │ │ ├── arm_common_tables.su │ │ │ ├── arm_common_tables_f16.d │ │ │ ├── arm_common_tables_f16.o │ │ │ ├── arm_common_tables_f16.su │ │ │ ├── arm_const_structs.d │ │ │ ├── arm_const_structs.o │ │ │ ├── arm_const_structs.su │ │ │ ├── arm_const_structs_f16.d │ │ │ ├── arm_const_structs_f16.o │ │ │ ├── arm_const_structs_f16.su │ │ │ ├── arm_mve_tables.d │ │ │ ├── arm_mve_tables.o │ │ │ ├── arm_mve_tables.su │ │ │ ├── arm_mve_tables_f16.d │ │ │ ├── arm_mve_tables_f16.o │ │ │ ├── arm_mve_tables_f16.su │ │ │ └── subdir.mk │ │ │ ├── ComplexMathFunctions │ │ │ ├── arm_cmplx_conj_f32.d │ │ │ ├── arm_cmplx_conj_f32.o │ │ │ ├── arm_cmplx_conj_f32.su │ │ │ ├── arm_cmplx_conj_q15.d │ │ │ ├── arm_cmplx_conj_q15.o │ │ │ ├── arm_cmplx_conj_q15.su │ │ │ ├── arm_cmplx_conj_q31.d │ │ │ ├── arm_cmplx_conj_q31.o │ │ │ ├── arm_cmplx_conj_q31.su │ │ │ ├── arm_cmplx_dot_prod_f32.d │ │ │ ├── arm_cmplx_dot_prod_f32.o │ │ │ ├── arm_cmplx_dot_prod_f32.su │ │ │ ├── arm_cmplx_dot_prod_q15.d │ │ │ ├── arm_cmplx_dot_prod_q15.o │ │ │ ├── arm_cmplx_dot_prod_q15.su │ │ │ ├── arm_cmplx_dot_prod_q31.d │ │ │ ├── arm_cmplx_dot_prod_q31.o │ │ │ ├── arm_cmplx_dot_prod_q31.su │ │ │ ├── arm_cmplx_mag_f32.d │ │ │ ├── arm_cmplx_mag_f32.o │ │ │ ├── arm_cmplx_mag_f32.su │ │ │ ├── arm_cmplx_mag_q15.d │ │ │ ├── arm_cmplx_mag_q15.o │ │ │ ├── arm_cmplx_mag_q15.su │ │ │ ├── arm_cmplx_mag_q31.d │ │ │ ├── arm_cmplx_mag_q31.o │ │ │ ├── arm_cmplx_mag_q31.su │ │ │ ├── arm_cmplx_mag_squared_f32.d │ │ │ ├── arm_cmplx_mag_squared_f32.o │ │ │ ├── arm_cmplx_mag_squared_f32.su │ │ │ ├── arm_cmplx_mag_squared_q15.d │ │ │ ├── arm_cmplx_mag_squared_q15.o │ │ │ ├── arm_cmplx_mag_squared_q15.su │ │ │ ├── arm_cmplx_mag_squared_q31.d │ │ │ ├── arm_cmplx_mag_squared_q31.o │ │ │ ├── arm_cmplx_mag_squared_q31.su │ │ │ ├── arm_cmplx_mult_cmplx_f32.d │ │ │ ├── arm_cmplx_mult_cmplx_f32.o │ │ │ ├── arm_cmplx_mult_cmplx_f32.su │ │ │ ├── arm_cmplx_mult_cmplx_q15.d │ │ │ ├── arm_cmplx_mult_cmplx_q15.o │ │ │ ├── arm_cmplx_mult_cmplx_q15.su │ │ │ ├── arm_cmplx_mult_cmplx_q31.d │ │ │ ├── arm_cmplx_mult_cmplx_q31.o │ │ │ ├── arm_cmplx_mult_cmplx_q31.su │ │ │ ├── arm_cmplx_mult_real_f32.d │ │ │ ├── arm_cmplx_mult_real_f32.o │ │ │ ├── arm_cmplx_mult_real_f32.su │ │ │ ├── arm_cmplx_mult_real_q15.d │ │ │ ├── arm_cmplx_mult_real_q15.o │ │ │ ├── arm_cmplx_mult_real_q15.su │ │ │ ├── arm_cmplx_mult_real_q31.d │ │ │ ├── arm_cmplx_mult_real_q31.o │ │ │ ├── arm_cmplx_mult_real_q31.su │ │ │ └── subdir.mk │ │ │ ├── ControllerFunctions │ │ │ ├── arm_pid_init_f32.d │ │ │ ├── arm_pid_init_f32.o │ │ │ ├── arm_pid_init_f32.su │ │ │ ├── arm_pid_init_q15.d │ │ │ ├── arm_pid_init_q15.o │ │ │ ├── arm_pid_init_q15.su │ │ │ ├── arm_pid_init_q31.d │ │ │ ├── arm_pid_init_q31.o │ │ │ ├── arm_pid_init_q31.su │ │ │ ├── arm_pid_reset_f32.d │ │ │ ├── arm_pid_reset_f32.o │ │ │ ├── arm_pid_reset_f32.su │ │ │ ├── arm_pid_reset_q15.d │ │ │ ├── arm_pid_reset_q15.o │ │ │ ├── arm_pid_reset_q15.su │ │ │ ├── arm_pid_reset_q31.d │ │ │ ├── arm_pid_reset_q31.o │ │ │ ├── arm_pid_reset_q31.su │ │ │ ├── arm_sin_cos_f32.d │ │ │ ├── arm_sin_cos_f32.o │ │ │ ├── arm_sin_cos_f32.su │ │ │ ├── arm_sin_cos_q31.d │ │ │ ├── arm_sin_cos_q31.o │ │ │ ├── arm_sin_cos_q31.su │ │ │ └── subdir.mk │ │ │ ├── DistanceFunctions │ │ │ ├── arm_boolean_distance.d │ │ │ ├── arm_boolean_distance.o │ │ │ ├── arm_boolean_distance.su │ │ │ ├── arm_braycurtis_distance_f32.d │ │ │ ├── arm_braycurtis_distance_f32.o │ │ │ ├── arm_braycurtis_distance_f32.su │ │ │ ├── arm_canberra_distance_f32.d │ │ │ ├── arm_canberra_distance_f32.o │ │ │ ├── arm_canberra_distance_f32.su │ │ │ ├── arm_chebyshev_distance_f32.d │ │ │ ├── arm_chebyshev_distance_f32.o │ │ │ ├── arm_chebyshev_distance_f32.su │ │ │ ├── arm_cityblock_distance_f32.d │ │ │ ├── arm_cityblock_distance_f32.o │ │ │ ├── arm_cityblock_distance_f32.su │ │ │ ├── arm_correlation_distance_f32.d │ │ │ ├── arm_correlation_distance_f32.o │ │ │ ├── arm_correlation_distance_f32.su │ │ │ ├── arm_cosine_distance_f32.d │ │ │ ├── arm_cosine_distance_f32.o │ │ │ ├── arm_cosine_distance_f32.su │ │ │ ├── arm_dice_distance.d │ │ │ ├── arm_dice_distance.o │ │ │ ├── arm_dice_distance.su │ │ │ ├── arm_euclidean_distance_f32.d │ │ │ ├── arm_euclidean_distance_f32.o │ │ │ ├── arm_euclidean_distance_f32.su │ │ │ ├── arm_hamming_distance.d │ │ │ ├── arm_hamming_distance.o │ │ │ ├── arm_hamming_distance.su │ │ │ ├── arm_jaccard_distance.d │ │ │ ├── arm_jaccard_distance.o │ │ │ ├── arm_jaccard_distance.su │ │ │ ├── arm_jensenshannon_distance_f32.d │ │ │ ├── arm_jensenshannon_distance_f32.o │ │ │ ├── arm_jensenshannon_distance_f32.su │ │ │ ├── arm_kulsinski_distance.d │ │ │ ├── arm_kulsinski_distance.o │ │ │ ├── arm_kulsinski_distance.su │ │ │ ├── arm_minkowski_distance_f32.d │ │ │ ├── arm_minkowski_distance_f32.o │ │ │ ├── arm_minkowski_distance_f32.su │ │ │ ├── arm_rogerstanimoto_distance.d │ │ │ ├── arm_rogerstanimoto_distance.o │ │ │ ├── arm_rogerstanimoto_distance.su │ │ │ ├── arm_russellrao_distance.d │ │ │ ├── arm_russellrao_distance.o │ │ │ ├── arm_russellrao_distance.su │ │ │ ├── arm_sokalmichener_distance.d │ │ │ ├── arm_sokalmichener_distance.o │ │ │ ├── arm_sokalmichener_distance.su │ │ │ ├── arm_sokalsneath_distance.d │ │ │ ├── arm_sokalsneath_distance.o │ │ │ ├── arm_sokalsneath_distance.su │ │ │ ├── arm_yule_distance.d │ │ │ ├── arm_yule_distance.o │ │ │ ├── arm_yule_distance.su │ │ │ └── subdir.mk │ │ │ ├── FastMathFunctions │ │ │ ├── arm_cos_f32.d │ │ │ ├── arm_cos_f32.o │ │ │ ├── arm_cos_f32.su │ │ │ ├── arm_cos_q15.d │ │ │ ├── arm_cos_q15.o │ │ │ ├── arm_cos_q15.su │ │ │ ├── arm_cos_q31.d │ │ │ ├── arm_cos_q31.o │ │ │ ├── arm_cos_q31.su │ │ │ ├── arm_sin_f32.d │ │ │ ├── arm_sin_f32.o │ │ │ ├── arm_sin_f32.su │ │ │ ├── arm_sin_q15.d │ │ │ ├── arm_sin_q15.o │ │ │ ├── arm_sin_q15.su │ │ │ ├── arm_sin_q31.d │ │ │ ├── arm_sin_q31.o │ │ │ ├── arm_sin_q31.su │ │ │ ├── arm_sqrt_q15.d │ │ │ ├── arm_sqrt_q15.o │ │ │ ├── arm_sqrt_q15.su │ │ │ ├── arm_sqrt_q31.d │ │ │ ├── arm_sqrt_q31.o │ │ │ ├── arm_sqrt_q31.su │ │ │ ├── arm_vexp_f32.d │ │ │ ├── arm_vexp_f32.o │ │ │ ├── arm_vexp_f32.su │ │ │ ├── arm_vlog_f32.d │ │ │ ├── arm_vlog_f32.o │ │ │ ├── arm_vlog_f32.su │ │ │ └── subdir.mk │ │ │ ├── FilteringFunctions │ │ │ ├── arm_biquad_cascade_df1_32x64_init_q31.d │ │ │ ├── arm_biquad_cascade_df1_32x64_init_q31.o │ │ │ ├── arm_biquad_cascade_df1_32x64_init_q31.su │ │ │ ├── arm_biquad_cascade_df1_32x64_q31.d │ │ │ ├── arm_biquad_cascade_df1_32x64_q31.o │ │ │ ├── arm_biquad_cascade_df1_32x64_q31.su │ │ │ ├── arm_biquad_cascade_df1_f32.d │ │ │ ├── arm_biquad_cascade_df1_f32.o │ │ │ ├── arm_biquad_cascade_df1_f32.su │ │ │ ├── arm_biquad_cascade_df1_fast_q15.d │ │ │ ├── arm_biquad_cascade_df1_fast_q15.o │ │ │ ├── arm_biquad_cascade_df1_fast_q15.su │ │ │ ├── arm_biquad_cascade_df1_fast_q31.d │ │ │ ├── arm_biquad_cascade_df1_fast_q31.o │ │ │ ├── arm_biquad_cascade_df1_fast_q31.su │ │ │ ├── arm_biquad_cascade_df1_init_f32.d │ │ │ ├── arm_biquad_cascade_df1_init_f32.o │ │ │ ├── arm_biquad_cascade_df1_init_f32.su │ │ │ ├── arm_biquad_cascade_df1_init_q15.d │ │ │ ├── arm_biquad_cascade_df1_init_q15.o │ │ │ ├── arm_biquad_cascade_df1_init_q15.su │ │ │ ├── arm_biquad_cascade_df1_init_q31.d │ │ │ ├── arm_biquad_cascade_df1_init_q31.o │ │ │ ├── arm_biquad_cascade_df1_init_q31.su │ │ │ ├── arm_biquad_cascade_df1_q15.d │ │ │ ├── arm_biquad_cascade_df1_q15.o │ │ │ ├── arm_biquad_cascade_df1_q15.su │ │ │ ├── arm_biquad_cascade_df1_q31.d │ │ │ ├── arm_biquad_cascade_df1_q31.o │ │ │ ├── arm_biquad_cascade_df1_q31.su │ │ │ ├── arm_biquad_cascade_df2T_f32.d │ │ │ ├── arm_biquad_cascade_df2T_f32.o │ │ │ ├── arm_biquad_cascade_df2T_f32.su │ │ │ ├── arm_biquad_cascade_df2T_f64.d │ │ │ ├── arm_biquad_cascade_df2T_f64.o │ │ │ ├── arm_biquad_cascade_df2T_f64.su │ │ │ ├── arm_biquad_cascade_df2T_init_f32.d │ │ │ ├── arm_biquad_cascade_df2T_init_f32.o │ │ │ ├── arm_biquad_cascade_df2T_init_f32.su │ │ │ ├── arm_biquad_cascade_df2T_init_f64.d │ │ │ ├── arm_biquad_cascade_df2T_init_f64.o │ │ │ ├── arm_biquad_cascade_df2T_init_f64.su │ │ │ ├── arm_biquad_cascade_stereo_df2T_f32.d │ │ │ ├── arm_biquad_cascade_stereo_df2T_f32.o │ │ │ ├── arm_biquad_cascade_stereo_df2T_f32.su │ │ │ ├── arm_biquad_cascade_stereo_df2T_init_f32.d │ │ │ ├── arm_biquad_cascade_stereo_df2T_init_f32.o │ │ │ ├── arm_biquad_cascade_stereo_df2T_init_f32.su │ │ │ ├── arm_conv_f32.d │ │ │ ├── arm_conv_f32.o │ │ │ ├── arm_conv_f32.su │ │ │ ├── arm_conv_fast_opt_q15.d │ │ │ ├── arm_conv_fast_opt_q15.o │ │ │ ├── arm_conv_fast_opt_q15.su │ │ │ ├── arm_conv_fast_q15.d │ │ │ ├── arm_conv_fast_q15.o │ │ │ ├── arm_conv_fast_q15.su │ │ │ ├── arm_conv_fast_q31.d │ │ │ ├── arm_conv_fast_q31.o │ │ │ ├── arm_conv_fast_q31.su │ │ │ ├── arm_conv_opt_q15.d │ │ │ ├── arm_conv_opt_q15.o │ │ │ ├── arm_conv_opt_q15.su │ │ │ ├── arm_conv_opt_q7.d │ │ │ ├── arm_conv_opt_q7.o │ │ │ ├── arm_conv_opt_q7.su │ │ │ ├── arm_conv_partial_f32.d │ │ │ ├── arm_conv_partial_f32.o │ │ │ ├── arm_conv_partial_f32.su │ │ │ ├── arm_conv_partial_fast_opt_q15.d │ │ │ ├── arm_conv_partial_fast_opt_q15.o │ │ │ ├── arm_conv_partial_fast_opt_q15.su │ │ │ ├── arm_conv_partial_fast_q15.d │ │ │ ├── arm_conv_partial_fast_q15.o │ │ │ ├── arm_conv_partial_fast_q15.su │ │ │ ├── arm_conv_partial_fast_q31.d │ │ │ ├── arm_conv_partial_fast_q31.o │ │ │ ├── arm_conv_partial_fast_q31.su │ │ │ ├── arm_conv_partial_opt_q15.d │ │ │ ├── arm_conv_partial_opt_q15.o │ │ │ ├── arm_conv_partial_opt_q15.su │ │ │ ├── arm_conv_partial_opt_q7.d │ │ │ ├── arm_conv_partial_opt_q7.o │ │ │ ├── arm_conv_partial_opt_q7.su │ │ │ ├── arm_conv_partial_q15.d │ │ │ ├── arm_conv_partial_q15.o │ │ │ ├── arm_conv_partial_q15.su │ │ │ ├── arm_conv_partial_q31.d │ │ │ ├── arm_conv_partial_q31.o │ │ │ ├── arm_conv_partial_q31.su │ │ │ ├── arm_conv_partial_q7.d │ │ │ ├── arm_conv_partial_q7.o │ │ │ ├── arm_conv_partial_q7.su │ │ │ ├── arm_conv_q15.d │ │ │ ├── arm_conv_q15.o │ │ │ ├── arm_conv_q15.su │ │ │ ├── arm_conv_q31.d │ │ │ ├── arm_conv_q31.o │ │ │ ├── arm_conv_q31.su │ │ │ ├── arm_conv_q7.d │ │ │ ├── arm_conv_q7.o │ │ │ ├── arm_conv_q7.su │ │ │ ├── arm_correlate_f32.d │ │ │ ├── arm_correlate_f32.o │ │ │ ├── arm_correlate_f32.su │ │ │ ├── arm_correlate_fast_opt_q15.d │ │ │ ├── arm_correlate_fast_opt_q15.o │ │ │ ├── arm_correlate_fast_opt_q15.su │ │ │ ├── arm_correlate_fast_q15.d │ │ │ ├── arm_correlate_fast_q15.o │ │ │ ├── arm_correlate_fast_q15.su │ │ │ ├── arm_correlate_fast_q31.d │ │ │ ├── arm_correlate_fast_q31.o │ │ │ ├── arm_correlate_fast_q31.su │ │ │ ├── arm_correlate_opt_q15.d │ │ │ ├── arm_correlate_opt_q15.o │ │ │ ├── arm_correlate_opt_q15.su │ │ │ ├── arm_correlate_opt_q7.d │ │ │ ├── arm_correlate_opt_q7.o │ │ │ ├── arm_correlate_opt_q7.su │ │ │ ├── arm_correlate_q15.d │ │ │ ├── arm_correlate_q15.o │ │ │ ├── arm_correlate_q15.su │ │ │ ├── arm_correlate_q31.d │ │ │ ├── arm_correlate_q31.o │ │ │ ├── arm_correlate_q31.su │ │ │ ├── arm_correlate_q7.d │ │ │ ├── arm_correlate_q7.o │ │ │ ├── arm_correlate_q7.su │ │ │ ├── arm_fir_decimate_f32.d │ │ │ ├── arm_fir_decimate_f32.o │ │ │ ├── arm_fir_decimate_f32.su │ │ │ ├── arm_fir_decimate_fast_q15.d │ │ │ ├── arm_fir_decimate_fast_q15.o │ │ │ ├── arm_fir_decimate_fast_q15.su │ │ │ ├── arm_fir_decimate_fast_q31.d │ │ │ ├── arm_fir_decimate_fast_q31.o │ │ │ ├── arm_fir_decimate_fast_q31.su │ │ │ ├── arm_fir_decimate_init_f32.d │ │ │ ├── arm_fir_decimate_init_f32.o │ │ │ ├── arm_fir_decimate_init_f32.su │ │ │ ├── arm_fir_decimate_init_q15.d │ │ │ ├── arm_fir_decimate_init_q15.o │ │ │ ├── arm_fir_decimate_init_q15.su │ │ │ ├── arm_fir_decimate_init_q31.d │ │ │ ├── arm_fir_decimate_init_q31.o │ │ │ ├── arm_fir_decimate_init_q31.su │ │ │ ├── arm_fir_decimate_q15.d │ │ │ ├── arm_fir_decimate_q15.o │ │ │ ├── arm_fir_decimate_q15.su │ │ │ ├── arm_fir_decimate_q31.d │ │ │ ├── arm_fir_decimate_q31.o │ │ │ ├── arm_fir_decimate_q31.su │ │ │ ├── arm_fir_f32.d │ │ │ ├── arm_fir_f32.o │ │ │ ├── arm_fir_f32.su │ │ │ ├── arm_fir_fast_q15.d │ │ │ ├── arm_fir_fast_q15.o │ │ │ ├── arm_fir_fast_q15.su │ │ │ ├── arm_fir_fast_q31.d │ │ │ ├── arm_fir_fast_q31.o │ │ │ ├── arm_fir_fast_q31.su │ │ │ ├── arm_fir_init_f32.d │ │ │ ├── arm_fir_init_f32.o │ │ │ ├── arm_fir_init_f32.su │ │ │ ├── arm_fir_init_q15.d │ │ │ ├── arm_fir_init_q15.o │ │ │ ├── arm_fir_init_q15.su │ │ │ ├── arm_fir_init_q31.d │ │ │ ├── arm_fir_init_q31.o │ │ │ ├── arm_fir_init_q31.su │ │ │ ├── arm_fir_init_q7.d │ │ │ ├── arm_fir_init_q7.o │ │ │ ├── arm_fir_init_q7.su │ │ │ ├── arm_fir_interpolate_f32.d │ │ │ ├── arm_fir_interpolate_f32.o │ │ │ ├── arm_fir_interpolate_f32.su │ │ │ ├── arm_fir_interpolate_init_f32.d │ │ │ ├── arm_fir_interpolate_init_f32.o │ │ │ ├── arm_fir_interpolate_init_f32.su │ │ │ ├── arm_fir_interpolate_init_q15.d │ │ │ ├── arm_fir_interpolate_init_q15.o │ │ │ ├── arm_fir_interpolate_init_q15.su │ │ │ ├── arm_fir_interpolate_init_q31.d │ │ │ ├── arm_fir_interpolate_init_q31.o │ │ │ ├── arm_fir_interpolate_init_q31.su │ │ │ ├── arm_fir_interpolate_q15.d │ │ │ ├── arm_fir_interpolate_q15.o │ │ │ ├── arm_fir_interpolate_q15.su │ │ │ ├── arm_fir_interpolate_q31.d │ │ │ ├── arm_fir_interpolate_q31.o │ │ │ ├── arm_fir_interpolate_q31.su │ │ │ ├── arm_fir_lattice_f32.d │ │ │ ├── arm_fir_lattice_f32.o │ │ │ ├── arm_fir_lattice_f32.su │ │ │ ├── arm_fir_lattice_init_f32.d │ │ │ ├── arm_fir_lattice_init_f32.o │ │ │ ├── arm_fir_lattice_init_f32.su │ │ │ ├── arm_fir_lattice_init_q15.d │ │ │ ├── arm_fir_lattice_init_q15.o │ │ │ ├── arm_fir_lattice_init_q15.su │ │ │ ├── arm_fir_lattice_init_q31.d │ │ │ ├── arm_fir_lattice_init_q31.o │ │ │ ├── arm_fir_lattice_init_q31.su │ │ │ ├── arm_fir_lattice_q15.d │ │ │ ├── arm_fir_lattice_q15.o │ │ │ ├── arm_fir_lattice_q15.su │ │ │ ├── arm_fir_lattice_q31.d │ │ │ ├── arm_fir_lattice_q31.o │ │ │ ├── arm_fir_lattice_q31.su │ │ │ ├── arm_fir_q15.d │ │ │ ├── arm_fir_q15.o │ │ │ ├── arm_fir_q15.su │ │ │ ├── arm_fir_q31.d │ │ │ ├── arm_fir_q31.o │ │ │ ├── arm_fir_q31.su │ │ │ ├── arm_fir_q7.d │ │ │ ├── arm_fir_q7.o │ │ │ ├── arm_fir_q7.su │ │ │ ├── arm_fir_sparse_f32.d │ │ │ ├── arm_fir_sparse_f32.o │ │ │ ├── arm_fir_sparse_f32.su │ │ │ ├── arm_fir_sparse_init_f32.d │ │ │ ├── arm_fir_sparse_init_f32.o │ │ │ ├── arm_fir_sparse_init_f32.su │ │ │ ├── arm_fir_sparse_init_q15.d │ │ │ ├── arm_fir_sparse_init_q15.o │ │ │ ├── arm_fir_sparse_init_q15.su │ │ │ ├── arm_fir_sparse_init_q31.d │ │ │ ├── arm_fir_sparse_init_q31.o │ │ │ ├── arm_fir_sparse_init_q31.su │ │ │ ├── arm_fir_sparse_init_q7.d │ │ │ ├── arm_fir_sparse_init_q7.o │ │ │ ├── arm_fir_sparse_init_q7.su │ │ │ ├── arm_fir_sparse_q15.d │ │ │ ├── arm_fir_sparse_q15.o │ │ │ ├── arm_fir_sparse_q15.su │ │ │ ├── arm_fir_sparse_q31.d │ │ │ ├── arm_fir_sparse_q31.o │ │ │ ├── arm_fir_sparse_q31.su │ │ │ ├── arm_fir_sparse_q7.d │ │ │ ├── arm_fir_sparse_q7.o │ │ │ ├── arm_fir_sparse_q7.su │ │ │ ├── arm_iir_lattice_f32.d │ │ │ ├── arm_iir_lattice_f32.o │ │ │ ├── arm_iir_lattice_f32.su │ │ │ ├── arm_iir_lattice_init_f32.d │ │ │ ├── arm_iir_lattice_init_f32.o │ │ │ ├── arm_iir_lattice_init_f32.su │ │ │ ├── arm_iir_lattice_init_q15.d │ │ │ ├── arm_iir_lattice_init_q15.o │ │ │ ├── arm_iir_lattice_init_q15.su │ │ │ ├── arm_iir_lattice_init_q31.d │ │ │ ├── arm_iir_lattice_init_q31.o │ │ │ ├── arm_iir_lattice_init_q31.su │ │ │ ├── arm_iir_lattice_q15.d │ │ │ ├── arm_iir_lattice_q15.o │ │ │ ├── arm_iir_lattice_q15.su │ │ │ ├── arm_iir_lattice_q31.d │ │ │ ├── arm_iir_lattice_q31.o │ │ │ ├── arm_iir_lattice_q31.su │ │ │ ├── arm_lms_f32.d │ │ │ ├── arm_lms_f32.o │ │ │ ├── arm_lms_f32.su │ │ │ ├── arm_lms_init_f32.d │ │ │ ├── arm_lms_init_f32.o │ │ │ ├── arm_lms_init_f32.su │ │ │ ├── arm_lms_init_q15.d │ │ │ ├── arm_lms_init_q15.o │ │ │ ├── arm_lms_init_q15.su │ │ │ ├── arm_lms_init_q31.d │ │ │ ├── arm_lms_init_q31.o │ │ │ ├── arm_lms_init_q31.su │ │ │ ├── arm_lms_norm_f32.d │ │ │ ├── arm_lms_norm_f32.o │ │ │ ├── arm_lms_norm_f32.su │ │ │ ├── arm_lms_norm_init_f32.d │ │ │ ├── arm_lms_norm_init_f32.o │ │ │ ├── arm_lms_norm_init_f32.su │ │ │ ├── arm_lms_norm_init_q15.d │ │ │ ├── arm_lms_norm_init_q15.o │ │ │ ├── arm_lms_norm_init_q15.su │ │ │ ├── arm_lms_norm_init_q31.d │ │ │ ├── arm_lms_norm_init_q31.o │ │ │ ├── arm_lms_norm_init_q31.su │ │ │ ├── arm_lms_norm_q15.d │ │ │ ├── arm_lms_norm_q15.o │ │ │ ├── arm_lms_norm_q15.su │ │ │ ├── arm_lms_norm_q31.d │ │ │ ├── arm_lms_norm_q31.o │ │ │ ├── arm_lms_norm_q31.su │ │ │ ├── arm_lms_q15.d │ │ │ ├── arm_lms_q15.o │ │ │ ├── arm_lms_q15.su │ │ │ ├── arm_lms_q31.d │ │ │ ├── arm_lms_q31.o │ │ │ ├── arm_lms_q31.su │ │ │ └── subdir.mk │ │ │ ├── MatrixFunctions │ │ │ ├── arm_mat_add_f32.d │ │ │ ├── arm_mat_add_f32.o │ │ │ ├── arm_mat_add_f32.su │ │ │ ├── arm_mat_add_q15.d │ │ │ ├── arm_mat_add_q15.o │ │ │ ├── arm_mat_add_q15.su │ │ │ ├── arm_mat_add_q31.d │ │ │ ├── arm_mat_add_q31.o │ │ │ ├── arm_mat_add_q31.su │ │ │ ├── arm_mat_cmplx_mult_f32.d │ │ │ ├── arm_mat_cmplx_mult_f32.o │ │ │ ├── arm_mat_cmplx_mult_f32.su │ │ │ ├── arm_mat_cmplx_mult_q15.d │ │ │ ├── arm_mat_cmplx_mult_q15.o │ │ │ ├── arm_mat_cmplx_mult_q15.su │ │ │ ├── arm_mat_cmplx_mult_q31.d │ │ │ ├── arm_mat_cmplx_mult_q31.o │ │ │ ├── arm_mat_cmplx_mult_q31.su │ │ │ ├── arm_mat_init_f32.d │ │ │ ├── arm_mat_init_f32.o │ │ │ ├── arm_mat_init_f32.su │ │ │ ├── arm_mat_init_q15.d │ │ │ ├── arm_mat_init_q15.o │ │ │ ├── arm_mat_init_q15.su │ │ │ ├── arm_mat_init_q31.d │ │ │ ├── arm_mat_init_q31.o │ │ │ ├── arm_mat_init_q31.su │ │ │ ├── arm_mat_inverse_f32.d │ │ │ ├── arm_mat_inverse_f32.o │ │ │ ├── arm_mat_inverse_f32.su │ │ │ ├── arm_mat_inverse_f64.d │ │ │ ├── arm_mat_inverse_f64.o │ │ │ ├── arm_mat_inverse_f64.su │ │ │ ├── arm_mat_mult_f32.d │ │ │ ├── arm_mat_mult_f32.o │ │ │ ├── arm_mat_mult_f32.su │ │ │ ├── arm_mat_mult_fast_q15.d │ │ │ ├── arm_mat_mult_fast_q15.o │ │ │ ├── arm_mat_mult_fast_q15.su │ │ │ ├── arm_mat_mult_fast_q31.d │ │ │ ├── arm_mat_mult_fast_q31.o │ │ │ ├── arm_mat_mult_fast_q31.su │ │ │ ├── arm_mat_mult_q15.d │ │ │ ├── arm_mat_mult_q15.o │ │ │ ├── arm_mat_mult_q15.su │ │ │ ├── arm_mat_mult_q31.d │ │ │ ├── arm_mat_mult_q31.o │ │ │ ├── arm_mat_mult_q31.su │ │ │ ├── arm_mat_scale_f32.d │ │ │ ├── arm_mat_scale_f32.o │ │ │ ├── arm_mat_scale_f32.su │ │ │ ├── arm_mat_scale_q15.d │ │ │ ├── arm_mat_scale_q15.o │ │ │ ├── arm_mat_scale_q15.su │ │ │ ├── arm_mat_scale_q31.d │ │ │ ├── arm_mat_scale_q31.o │ │ │ ├── arm_mat_scale_q31.su │ │ │ ├── arm_mat_sub_f32.d │ │ │ ├── arm_mat_sub_f32.o │ │ │ ├── arm_mat_sub_f32.su │ │ │ ├── arm_mat_sub_q15.d │ │ │ ├── arm_mat_sub_q15.o │ │ │ ├── arm_mat_sub_q15.su │ │ │ ├── arm_mat_sub_q31.d │ │ │ ├── arm_mat_sub_q31.o │ │ │ ├── arm_mat_sub_q31.su │ │ │ ├── arm_mat_trans_f32.d │ │ │ ├── arm_mat_trans_f32.o │ │ │ ├── arm_mat_trans_f32.su │ │ │ ├── arm_mat_trans_q15.d │ │ │ ├── arm_mat_trans_q15.o │ │ │ ├── arm_mat_trans_q15.su │ │ │ ├── arm_mat_trans_q31.d │ │ │ ├── arm_mat_trans_q31.o │ │ │ ├── arm_mat_trans_q31.su │ │ │ └── subdir.mk │ │ │ ├── SVMFunctions │ │ │ ├── arm_svm_linear_init_f32.d │ │ │ ├── arm_svm_linear_init_f32.o │ │ │ ├── arm_svm_linear_init_f32.su │ │ │ ├── arm_svm_linear_predict_f32.d │ │ │ ├── arm_svm_linear_predict_f32.o │ │ │ ├── arm_svm_linear_predict_f32.su │ │ │ ├── arm_svm_polynomial_init_f32.d │ │ │ ├── arm_svm_polynomial_init_f32.o │ │ │ ├── arm_svm_polynomial_init_f32.su │ │ │ ├── arm_svm_polynomial_predict_f32.d │ │ │ ├── arm_svm_polynomial_predict_f32.o │ │ │ ├── arm_svm_polynomial_predict_f32.su │ │ │ ├── arm_svm_rbf_init_f32.d │ │ │ ├── arm_svm_rbf_init_f32.o │ │ │ ├── arm_svm_rbf_init_f32.su │ │ │ ├── arm_svm_rbf_predict_f32.d │ │ │ ├── arm_svm_rbf_predict_f32.o │ │ │ ├── arm_svm_rbf_predict_f32.su │ │ │ ├── arm_svm_sigmoid_init_f32.d │ │ │ ├── arm_svm_sigmoid_init_f32.o │ │ │ ├── arm_svm_sigmoid_init_f32.su │ │ │ ├── arm_svm_sigmoid_predict_f32.d │ │ │ ├── arm_svm_sigmoid_predict_f32.o │ │ │ ├── arm_svm_sigmoid_predict_f32.su │ │ │ └── subdir.mk │ │ │ ├── StatisticsFunctions │ │ │ ├── arm_entropy_f32.d │ │ │ ├── arm_entropy_f32.o │ │ │ ├── arm_entropy_f32.su │ │ │ ├── arm_entropy_f64.d │ │ │ ├── arm_entropy_f64.o │ │ │ ├── arm_entropy_f64.su │ │ │ ├── arm_kullback_leibler_f32.d │ │ │ ├── arm_kullback_leibler_f32.o │ │ │ ├── arm_kullback_leibler_f32.su │ │ │ ├── arm_kullback_leibler_f64.d │ │ │ ├── arm_kullback_leibler_f64.o │ │ │ ├── arm_kullback_leibler_f64.su │ │ │ ├── arm_logsumexp_dot_prod_f32.d │ │ │ ├── arm_logsumexp_dot_prod_f32.o │ │ │ ├── arm_logsumexp_dot_prod_f32.su │ │ │ ├── arm_logsumexp_f32.d │ │ │ ├── arm_logsumexp_f32.o │ │ │ ├── arm_logsumexp_f32.su │ │ │ ├── arm_max_f32.d │ │ │ ├── arm_max_f32.o │ │ │ ├── arm_max_f32.su │ │ │ ├── arm_max_no_idx_f32.d │ │ │ ├── arm_max_no_idx_f32.o │ │ │ ├── arm_max_no_idx_f32.su │ │ │ ├── arm_max_q15.d │ │ │ ├── arm_max_q15.o │ │ │ ├── arm_max_q15.su │ │ │ ├── arm_max_q31.d │ │ │ ├── arm_max_q31.o │ │ │ ├── arm_max_q31.su │ │ │ ├── arm_max_q7.d │ │ │ ├── arm_max_q7.o │ │ │ ├── arm_max_q7.su │ │ │ ├── arm_mean_f32.d │ │ │ ├── arm_mean_f32.o │ │ │ ├── arm_mean_f32.su │ │ │ ├── arm_mean_q15.d │ │ │ ├── arm_mean_q15.o │ │ │ ├── arm_mean_q15.su │ │ │ ├── arm_mean_q31.d │ │ │ ├── arm_mean_q31.o │ │ │ ├── arm_mean_q31.su │ │ │ ├── arm_mean_q7.d │ │ │ ├── arm_mean_q7.o │ │ │ ├── arm_mean_q7.su │ │ │ ├── arm_min_f32.d │ │ │ ├── arm_min_f32.o │ │ │ ├── arm_min_f32.su │ │ │ ├── arm_min_q15.d │ │ │ ├── arm_min_q15.o │ │ │ ├── arm_min_q15.su │ │ │ ├── arm_min_q31.d │ │ │ ├── arm_min_q31.o │ │ │ ├── arm_min_q31.su │ │ │ ├── arm_min_q7.d │ │ │ ├── arm_min_q7.o │ │ │ ├── arm_min_q7.su │ │ │ ├── arm_power_f32.d │ │ │ ├── arm_power_f32.o │ │ │ ├── arm_power_f32.su │ │ │ ├── arm_power_q15.d │ │ │ ├── arm_power_q15.o │ │ │ ├── arm_power_q15.su │ │ │ ├── arm_power_q31.d │ │ │ ├── arm_power_q31.o │ │ │ ├── arm_power_q31.su │ │ │ ├── arm_power_q7.d │ │ │ ├── arm_power_q7.o │ │ │ ├── arm_power_q7.su │ │ │ ├── arm_rms_f32.d │ │ │ ├── arm_rms_f32.o │ │ │ ├── arm_rms_f32.su │ │ │ ├── arm_rms_q15.d │ │ │ ├── arm_rms_q15.o │ │ │ ├── arm_rms_q15.su │ │ │ ├── arm_rms_q31.d │ │ │ ├── arm_rms_q31.o │ │ │ ├── arm_rms_q31.su │ │ │ ├── arm_std_f32.d │ │ │ ├── arm_std_f32.o │ │ │ ├── arm_std_f32.su │ │ │ ├── arm_std_q15.d │ │ │ ├── arm_std_q15.o │ │ │ ├── arm_std_q15.su │ │ │ ├── arm_std_q31.d │ │ │ ├── arm_std_q31.o │ │ │ ├── arm_std_q31.su │ │ │ ├── arm_var_f32.d │ │ │ ├── arm_var_f32.o │ │ │ ├── arm_var_f32.su │ │ │ ├── arm_var_q15.d │ │ │ ├── arm_var_q15.o │ │ │ ├── arm_var_q15.su │ │ │ ├── arm_var_q31.d │ │ │ ├── arm_var_q31.o │ │ │ ├── arm_var_q31.su │ │ │ └── subdir.mk │ │ │ ├── SupportFunctions │ │ │ ├── arm_barycenter_f32.d │ │ │ ├── arm_barycenter_f32.o │ │ │ ├── arm_barycenter_f32.su │ │ │ ├── arm_bitonic_sort_f32.d │ │ │ ├── arm_bitonic_sort_f32.o │ │ │ ├── arm_bitonic_sort_f32.su │ │ │ ├── arm_bubble_sort_f32.d │ │ │ ├── arm_bubble_sort_f32.o │ │ │ ├── arm_bubble_sort_f32.su │ │ │ ├── arm_copy_f32.d │ │ │ ├── arm_copy_f32.o │ │ │ ├── arm_copy_f32.su │ │ │ ├── arm_copy_q15.d │ │ │ ├── arm_copy_q15.o │ │ │ ├── arm_copy_q15.su │ │ │ ├── arm_copy_q31.d │ │ │ ├── arm_copy_q31.o │ │ │ ├── arm_copy_q31.su │ │ │ ├── arm_copy_q7.d │ │ │ ├── arm_copy_q7.o │ │ │ ├── arm_copy_q7.su │ │ │ ├── arm_fill_f32.d │ │ │ ├── arm_fill_f32.o │ │ │ ├── arm_fill_f32.su │ │ │ ├── arm_fill_q15.d │ │ │ ├── arm_fill_q15.o │ │ │ ├── arm_fill_q15.su │ │ │ ├── arm_fill_q31.d │ │ │ ├── arm_fill_q31.o │ │ │ ├── arm_fill_q31.su │ │ │ ├── arm_fill_q7.d │ │ │ ├── arm_fill_q7.o │ │ │ ├── arm_fill_q7.su │ │ │ ├── arm_float_to_q15.d │ │ │ ├── arm_float_to_q15.o │ │ │ ├── arm_float_to_q15.su │ │ │ ├── arm_float_to_q31.d │ │ │ ├── arm_float_to_q31.o │ │ │ ├── arm_float_to_q31.su │ │ │ ├── arm_float_to_q7.d │ │ │ ├── arm_float_to_q7.o │ │ │ ├── arm_float_to_q7.su │ │ │ ├── arm_heap_sort_f32.d │ │ │ ├── arm_heap_sort_f32.o │ │ │ ├── arm_heap_sort_f32.su │ │ │ ├── arm_insertion_sort_f32.d │ │ │ ├── arm_insertion_sort_f32.o │ │ │ ├── arm_insertion_sort_f32.su │ │ │ ├── arm_merge_sort_f32.d │ │ │ ├── arm_merge_sort_f32.o │ │ │ ├── arm_merge_sort_f32.su │ │ │ ├── arm_merge_sort_init_f32.d │ │ │ ├── arm_merge_sort_init_f32.o │ │ │ ├── arm_merge_sort_init_f32.su │ │ │ ├── arm_q15_to_float.d │ │ │ ├── arm_q15_to_float.o │ │ │ ├── arm_q15_to_float.su │ │ │ ├── arm_q15_to_q31.d │ │ │ ├── arm_q15_to_q31.o │ │ │ ├── arm_q15_to_q31.su │ │ │ ├── arm_q15_to_q7.d │ │ │ ├── arm_q15_to_q7.o │ │ │ ├── arm_q15_to_q7.su │ │ │ ├── arm_q31_to_float.d │ │ │ ├── arm_q31_to_float.o │ │ │ ├── arm_q31_to_float.su │ │ │ ├── arm_q31_to_q15.d │ │ │ ├── arm_q31_to_q15.o │ │ │ ├── arm_q31_to_q15.su │ │ │ ├── arm_q31_to_q7.d │ │ │ ├── arm_q31_to_q7.o │ │ │ ├── arm_q31_to_q7.su │ │ │ ├── arm_q7_to_float.d │ │ │ ├── arm_q7_to_float.o │ │ │ ├── arm_q7_to_float.su │ │ │ ├── arm_q7_to_q15.d │ │ │ ├── arm_q7_to_q15.o │ │ │ ├── arm_q7_to_q15.su │ │ │ ├── arm_q7_to_q31.d │ │ │ ├── arm_q7_to_q31.o │ │ │ ├── arm_q7_to_q31.su │ │ │ ├── arm_quick_sort_f32.d │ │ │ ├── arm_quick_sort_f32.o │ │ │ ├── arm_quick_sort_f32.su │ │ │ ├── arm_selection_sort_f32.d │ │ │ ├── arm_selection_sort_f32.o │ │ │ ├── arm_selection_sort_f32.su │ │ │ ├── arm_sort_f32.d │ │ │ ├── arm_sort_f32.o │ │ │ ├── arm_sort_f32.su │ │ │ ├── arm_sort_init_f32.d │ │ │ ├── arm_sort_init_f32.o │ │ │ ├── arm_sort_init_f32.su │ │ │ ├── arm_spline_interp_f32.d │ │ │ ├── arm_spline_interp_f32.o │ │ │ ├── arm_spline_interp_f32.su │ │ │ ├── arm_spline_interp_init_f32.d │ │ │ ├── arm_spline_interp_init_f32.o │ │ │ ├── arm_spline_interp_init_f32.su │ │ │ ├── arm_weighted_sum_f32.d │ │ │ ├── arm_weighted_sum_f32.o │ │ │ ├── arm_weighted_sum_f32.su │ │ │ └── subdir.mk │ │ │ └── TransformFunctions │ │ │ ├── TransformFunctionsF16.d │ │ │ ├── TransformFunctionsF16.o │ │ │ ├── TransformFunctionsF16.su │ │ │ ├── arm_bitreversal.d │ │ │ ├── arm_bitreversal.o │ │ │ ├── arm_bitreversal.su │ │ │ ├── arm_bitreversal2.d │ │ │ ├── arm_bitreversal2.o │ │ │ ├── arm_bitreversal2.su │ │ │ ├── arm_cfft_f16.d │ │ │ ├── arm_cfft_f16.o │ │ │ ├── arm_cfft_f16.su │ │ │ ├── arm_cfft_f32.d │ │ │ ├── arm_cfft_f32.o │ │ │ ├── arm_cfft_f32.su │ │ │ ├── arm_cfft_f64.d │ │ │ ├── arm_cfft_f64.o │ │ │ ├── arm_cfft_f64.su │ │ │ ├── arm_cfft_init_f16.d │ │ │ ├── arm_cfft_init_f16.o │ │ │ ├── arm_cfft_init_f16.su │ │ │ ├── arm_cfft_init_f32.d │ │ │ ├── arm_cfft_init_f32.o │ │ │ ├── arm_cfft_init_f32.su │ │ │ ├── arm_cfft_init_f64.d │ │ │ ├── arm_cfft_init_f64.o │ │ │ ├── arm_cfft_init_f64.su │ │ │ ├── arm_cfft_init_q15.d │ │ │ ├── arm_cfft_init_q15.o │ │ │ ├── arm_cfft_init_q15.su │ │ │ ├── arm_cfft_init_q31.d │ │ │ ├── arm_cfft_init_q31.o │ │ │ ├── arm_cfft_init_q31.su │ │ │ ├── arm_cfft_q15.d │ │ │ ├── arm_cfft_q15.o │ │ │ ├── arm_cfft_q15.su │ │ │ ├── arm_cfft_q31.d │ │ │ ├── arm_cfft_q31.o │ │ │ ├── arm_cfft_q31.su │ │ │ ├── arm_cfft_radix2_f16.d │ │ │ ├── arm_cfft_radix2_f16.o │ │ │ ├── arm_cfft_radix2_f16.su │ │ │ ├── arm_cfft_radix2_f32.d │ │ │ ├── arm_cfft_radix2_f32.o │ │ │ ├── arm_cfft_radix2_f32.su │ │ │ ├── arm_cfft_radix2_init_f32.d │ │ │ ├── arm_cfft_radix2_init_f32.o │ │ │ ├── arm_cfft_radix2_init_f32.su │ │ │ ├── arm_cfft_radix2_init_q15.d │ │ │ ├── arm_cfft_radix2_init_q15.o │ │ │ ├── arm_cfft_radix2_init_q15.su │ │ │ ├── arm_cfft_radix2_init_q31.d │ │ │ ├── arm_cfft_radix2_init_q31.o │ │ │ ├── arm_cfft_radix2_init_q31.su │ │ │ ├── arm_cfft_radix2_q15.d │ │ │ ├── arm_cfft_radix2_q15.o │ │ │ ├── arm_cfft_radix2_q15.su │ │ │ ├── arm_cfft_radix2_q31.d │ │ │ ├── arm_cfft_radix2_q31.o │ │ │ ├── arm_cfft_radix2_q31.su │ │ │ ├── arm_cfft_radix4_f16.d │ │ │ ├── arm_cfft_radix4_f16.o │ │ │ ├── arm_cfft_radix4_f16.su │ │ │ ├── arm_cfft_radix4_f32.d │ │ │ ├── arm_cfft_radix4_f32.o │ │ │ ├── arm_cfft_radix4_f32.su │ │ │ ├── arm_cfft_radix4_init_f32.d │ │ │ ├── arm_cfft_radix4_init_f32.o │ │ │ ├── arm_cfft_radix4_init_f32.su │ │ │ ├── arm_cfft_radix4_init_q15.d │ │ │ ├── arm_cfft_radix4_init_q15.o │ │ │ ├── arm_cfft_radix4_init_q15.su │ │ │ ├── arm_cfft_radix4_init_q31.d │ │ │ ├── arm_cfft_radix4_init_q31.o │ │ │ ├── arm_cfft_radix4_init_q31.su │ │ │ ├── arm_cfft_radix4_q15.d │ │ │ ├── arm_cfft_radix4_q15.o │ │ │ ├── arm_cfft_radix4_q15.su │ │ │ ├── arm_cfft_radix4_q31.d │ │ │ ├── arm_cfft_radix4_q31.o │ │ │ ├── arm_cfft_radix4_q31.su │ │ │ ├── arm_cfft_radix8_f32.d │ │ │ ├── arm_cfft_radix8_f32.o │ │ │ ├── arm_cfft_radix8_f32.su │ │ │ ├── arm_dct4_f32.d │ │ │ ├── arm_dct4_f32.o │ │ │ ├── arm_dct4_f32.su │ │ │ ├── arm_dct4_init_f32.d │ │ │ ├── arm_dct4_init_f32.o │ │ │ ├── arm_dct4_init_f32.su │ │ │ ├── arm_dct4_init_q15.d │ │ │ ├── arm_dct4_init_q15.o │ │ │ ├── arm_dct4_init_q15.su │ │ │ ├── arm_dct4_init_q31.d │ │ │ ├── arm_dct4_init_q31.o │ │ │ ├── arm_dct4_init_q31.su │ │ │ ├── arm_dct4_q15.d │ │ │ ├── arm_dct4_q15.o │ │ │ ├── arm_dct4_q15.su │ │ │ ├── arm_dct4_q31.d │ │ │ ├── arm_dct4_q31.o │ │ │ ├── arm_dct4_q31.su │ │ │ ├── arm_rfft_f32.d │ │ │ ├── arm_rfft_f32.o │ │ │ ├── arm_rfft_f32.su │ │ │ ├── arm_rfft_fast_f32.d │ │ │ ├── arm_rfft_fast_f32.o │ │ │ ├── arm_rfft_fast_f32.su │ │ │ ├── arm_rfft_fast_f64.d │ │ │ ├── arm_rfft_fast_f64.o │ │ │ ├── arm_rfft_fast_f64.su │ │ │ ├── arm_rfft_fast_init_f32.d │ │ │ ├── arm_rfft_fast_init_f32.o │ │ │ ├── arm_rfft_fast_init_f32.su │ │ │ ├── arm_rfft_fast_init_f64.d │ │ │ ├── arm_rfft_fast_init_f64.o │ │ │ ├── arm_rfft_fast_init_f64.su │ │ │ ├── arm_rfft_init_f32.d │ │ │ ├── arm_rfft_init_f32.o │ │ │ ├── arm_rfft_init_f32.su │ │ │ ├── arm_rfft_init_q15.d │ │ │ ├── arm_rfft_init_q15.o │ │ │ ├── arm_rfft_init_q15.su │ │ │ ├── arm_rfft_init_q31.d │ │ │ ├── arm_rfft_init_q31.o │ │ │ ├── arm_rfft_init_q31.su │ │ │ ├── arm_rfft_q15.d │ │ │ ├── arm_rfft_q15.o │ │ │ ├── arm_rfft_q15.su │ │ │ ├── arm_rfft_q31.d │ │ │ ├── arm_rfft_q31.o │ │ │ ├── arm_rfft_q31.su │ │ │ └── subdir.mk │ │ ├── dsp │ │ ├── dct │ │ │ ├── fast-dct-fft.d │ │ │ ├── fast-dct-fft.o │ │ │ ├── fast-dct-fft.su │ │ │ └── subdir.mk │ │ ├── kissfft │ │ │ ├── kiss_fft.d │ │ │ ├── kiss_fft.o │ │ │ ├── kiss_fft.su │ │ │ ├── kiss_fftr.d │ │ │ ├── kiss_fftr.o │ │ │ ├── kiss_fftr.su │ │ │ └── subdir.mk │ │ ├── memory.d │ │ ├── memory.o │ │ ├── memory.su │ │ └── subdir.mk │ │ └── porting │ │ ├── himax │ │ ├── debug_log.d │ │ ├── debug_log.o │ │ ├── debug_log.su │ │ ├── ei_classifier_porting.d │ │ ├── ei_classifier_porting.o │ │ ├── ei_classifier_porting.su │ │ └── subdir.mk │ │ ├── mingw32 │ │ ├── debug_log.d │ │ ├── debug_log.o │ │ ├── debug_log.su │ │ ├── ei_classifier_porting.d │ │ ├── ei_classifier_porting.o │ │ ├── ei_classifier_porting.su │ │ └── subdir.mk │ │ ├── stm32-cubeai │ │ ├── debug_log.d │ │ ├── debug_log.o │ │ ├── debug_log.su │ │ ├── ei_classifier_porting.d │ │ ├── ei_classifier_porting.o │ │ ├── ei_classifier_porting.su │ │ └── subdir.mk │ │ └── zephyr │ │ ├── debug_log.d │ │ ├── debug_log.o │ │ ├── debug_log.su │ │ ├── ei_classifier_porting.d │ │ ├── ei_classifier_porting.o │ │ ├── ei_classifier_porting.su │ │ └── subdir.mk ├── MotionC_V1.bin ├── MotionC_V1.elf ├── MotionC_V1.hex ├── MotionC_V1.list ├── MotionC_V1.map ├── makefile ├── objects.list ├── objects.mk └── sources.mk ├── Drivers ├── CMSIS │ ├── Device │ │ └── ST │ │ │ └── STM32F4xx │ │ │ └── Include │ │ │ ├── stm32f407xx.h │ │ │ ├── stm32f4xx.h │ │ │ └── system_stm32f4xx.h │ └── Include │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armclang.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_iccarm.h │ │ ├── cmsis_version.h │ │ ├── core_armv8mbl.h │ │ ├── core_armv8mml.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm1.h │ │ ├── core_cm23.h │ │ ├── core_cm3.h │ │ ├── core_cm33.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_sc000.h │ │ ├── core_sc300.h │ │ ├── mpu_armv7.h │ │ ├── mpu_armv8.h │ │ └── tz_context.h └── STM32F4xx_HAL_Driver │ ├── Inc │ ├── Legacy │ │ └── stm32_hal_legacy.h │ ├── stm32f4xx_hal.h │ ├── stm32f4xx_hal_cortex.h │ ├── stm32f4xx_hal_crc.h │ ├── stm32f4xx_hal_def.h │ ├── stm32f4xx_hal_dma.h │ ├── stm32f4xx_hal_dma_ex.h │ ├── stm32f4xx_hal_exti.h │ ├── stm32f4xx_hal_flash.h │ ├── stm32f4xx_hal_flash_ex.h │ ├── stm32f4xx_hal_flash_ramfunc.h │ ├── stm32f4xx_hal_gpio.h │ ├── stm32f4xx_hal_gpio_ex.h │ ├── stm32f4xx_hal_i2c.h │ ├── stm32f4xx_hal_i2c_ex.h │ ├── stm32f4xx_hal_pwr.h │ ├── stm32f4xx_hal_pwr_ex.h │ ├── stm32f4xx_hal_rcc.h │ ├── stm32f4xx_hal_rcc_ex.h │ ├── stm32f4xx_hal_tim.h │ ├── stm32f4xx_hal_tim_ex.h │ └── stm32f4xx_hal_uart.h │ └── Src │ ├── stm32f4xx_hal.c │ ├── stm32f4xx_hal_cortex.c │ ├── stm32f4xx_hal_crc.c │ ├── stm32f4xx_hal_dma.c │ ├── stm32f4xx_hal_dma_ex.c │ ├── stm32f4xx_hal_exti.c │ ├── stm32f4xx_hal_flash.c │ ├── stm32f4xx_hal_flash_ex.c │ ├── stm32f4xx_hal_flash_ramfunc.c │ ├── stm32f4xx_hal_gpio.c │ ├── stm32f4xx_hal_i2c.c │ ├── stm32f4xx_hal_i2c_ex.c │ ├── stm32f4xx_hal_pwr.c │ ├── stm32f4xx_hal_pwr_ex.c │ ├── stm32f4xx_hal_rcc.c │ ├── stm32f4xx_hal_rcc_ex.c │ ├── stm32f4xx_hal_tim.c │ ├── stm32f4xx_hal_tim_ex.c │ └── stm32f4xx_hal_uart.c ├── Middlewares └── Third_Party │ └── EdgeImpulse_MottionDetection_P1_MachineLearning │ └── edgeimpulse │ ├── Middlewares │ └── ST │ │ └── AI │ │ ├── Inc │ │ ├── ai_common_config.h │ │ ├── ai_datatypes_defines.h │ │ ├── ai_datatypes_format.h │ │ ├── ai_datatypes_internal.h │ │ ├── ai_log.h │ │ ├── ai_math_helpers.h │ │ ├── ai_network_inspector.h │ │ ├── ai_platform.h │ │ ├── ai_platform_interface.h │ │ ├── core_common.h │ │ ├── core_convert.h │ │ ├── core_datatypes.h │ │ ├── core_log.h │ │ ├── core_net_inspect.h │ │ ├── core_net_inspect_interface.h │ │ ├── datatypes_network.h │ │ ├── formats_list.h │ │ ├── layers.h │ │ ├── layers_common.h │ │ ├── layers_conv2d.h │ │ ├── layers_dense.h │ │ ├── layers_generic.h │ │ ├── layers_list.h │ │ ├── layers_nl.h │ │ ├── layers_norm.h │ │ ├── layers_pool.h │ │ ├── layers_rnn.h │ │ └── layers_sm.h │ │ └── Lib │ │ ├── ABI2.1 │ │ ├── ARMCortexM33 │ │ │ └── NetworkRuntime500_CM33_IAR.a │ │ ├── ARMCortexM4 │ │ │ └── NetworkRuntime500_CM4_IAR.a │ │ ├── ARMCortexM7 │ │ │ └── NetworkRuntime500_CM7_IAR.a │ │ └── STM32H7 │ │ │ └── NetworkRuntime500_CM7_IAR.a │ │ └── MDK │ │ ├── ARMCortexM33 │ │ └── NetworkRuntime500_CM33_Keil.lib │ │ ├── ARMCortexM4 │ │ └── NetworkRuntime500_CM4_Keil.lib │ │ ├── ARMCortexM7 │ │ └── NetworkRuntime500_CM7_Keil.lib │ │ └── STM32H7 │ │ └── NetworkRuntime500_CM7_Keil.lib │ ├── cubeai-model │ ├── network.c │ ├── network.h │ ├── network_data.c │ ├── network_data.h │ └── network_generate_report.txt │ ├── edge-impulse-sdk │ ├── .gitignore │ ├── .mbedignore │ ├── CMSIS │ │ ├── .clang-format │ │ ├── DSP │ │ │ ├── Include │ │ │ │ ├── arm_common_tables.h │ │ │ │ ├── arm_common_tables_f16.h │ │ │ │ ├── arm_const_structs.h │ │ │ │ ├── arm_const_structs_f16.h │ │ │ │ ├── arm_helium_utils.h │ │ │ │ ├── arm_math.h │ │ │ │ ├── arm_math_f16.h │ │ │ │ ├── arm_mve_tables.h │ │ │ │ ├── arm_mve_tables_f16.h │ │ │ │ └── arm_vec_math.h │ │ │ ├── PrivateInclude │ │ │ │ ├── arm_sorting.h │ │ │ │ ├── arm_vec_fft.h │ │ │ │ └── arm_vec_filtering.h │ │ │ └── Source │ │ │ │ ├── BasicMathFunctions │ │ │ │ ├── BasicMathFunctionsF16.c │ │ │ │ ├── arm_abs_f16.c │ │ │ │ ├── arm_abs_f32.c │ │ │ │ ├── arm_abs_q15.c │ │ │ │ ├── arm_abs_q31.c │ │ │ │ ├── arm_abs_q7.c │ │ │ │ ├── arm_add_f16.c │ │ │ │ ├── arm_add_f32.c │ │ │ │ ├── arm_add_q15.c │ │ │ │ ├── arm_add_q31.c │ │ │ │ ├── arm_add_q7.c │ │ │ │ ├── arm_and_u16.c │ │ │ │ ├── arm_and_u32.c │ │ │ │ ├── arm_and_u8.c │ │ │ │ ├── arm_dot_prod_f16.c │ │ │ │ ├── arm_dot_prod_f32.c │ │ │ │ ├── arm_dot_prod_q15.c │ │ │ │ ├── arm_dot_prod_q31.c │ │ │ │ ├── arm_dot_prod_q7.c │ │ │ │ ├── arm_mult_f16.c │ │ │ │ ├── arm_mult_f32.c │ │ │ │ ├── arm_mult_q15.c │ │ │ │ ├── arm_mult_q31.c │ │ │ │ ├── arm_mult_q7.c │ │ │ │ ├── arm_negate_f16.c │ │ │ │ ├── arm_negate_f32.c │ │ │ │ ├── arm_negate_q15.c │ │ │ │ ├── arm_negate_q31.c │ │ │ │ ├── arm_negate_q7.c │ │ │ │ ├── arm_not_u16.c │ │ │ │ ├── arm_not_u32.c │ │ │ │ ├── arm_not_u8.c │ │ │ │ ├── arm_offset_f16.c │ │ │ │ ├── arm_offset_f32.c │ │ │ │ ├── arm_offset_q15.c │ │ │ │ ├── arm_offset_q31.c │ │ │ │ ├── arm_offset_q7.c │ │ │ │ ├── arm_or_u16.c │ │ │ │ ├── arm_or_u32.c │ │ │ │ ├── arm_or_u8.c │ │ │ │ ├── arm_scale_f16.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_f16.c │ │ │ │ ├── arm_sub_f32.c │ │ │ │ ├── arm_sub_q15.c │ │ │ │ ├── arm_sub_q31.c │ │ │ │ ├── arm_sub_q7.c │ │ │ │ ├── arm_xor_u16.c │ │ │ │ ├── arm_xor_u32.c │ │ │ │ └── arm_xor_u8.c │ │ │ │ ├── BayesFunctions │ │ │ │ └── arm_gaussian_naive_bayes_predict_f32.c │ │ │ │ ├── CommonTables │ │ │ │ ├── CommonTablesF16.c │ │ │ │ ├── arm_common_tables.c │ │ │ │ ├── arm_common_tables_f16.c │ │ │ │ ├── arm_const_structs.c │ │ │ │ ├── arm_const_structs_f16.c │ │ │ │ ├── arm_mve_tables.c │ │ │ │ └── arm_mve_tables_f16.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 │ │ │ │ ├── DistanceFunctions │ │ │ │ ├── arm_boolean_distance.c │ │ │ │ ├── arm_boolean_distance_template.h │ │ │ │ ├── arm_braycurtis_distance_f32.c │ │ │ │ ├── arm_canberra_distance_f32.c │ │ │ │ ├── arm_chebyshev_distance_f32.c │ │ │ │ ├── arm_cityblock_distance_f32.c │ │ │ │ ├── arm_correlation_distance_f32.c │ │ │ │ ├── arm_cosine_distance_f32.c │ │ │ │ ├── arm_dice_distance.c │ │ │ │ ├── arm_euclidean_distance_f32.c │ │ │ │ ├── arm_hamming_distance.c │ │ │ │ ├── arm_jaccard_distance.c │ │ │ │ ├── arm_jensenshannon_distance_f32.c │ │ │ │ ├── arm_kulsinski_distance.c │ │ │ │ ├── arm_minkowski_distance_f32.c │ │ │ │ ├── arm_rogerstanimoto_distance.c │ │ │ │ ├── arm_russellrao_distance.c │ │ │ │ ├── arm_sokalmichener_distance.c │ │ │ │ ├── arm_sokalsneath_distance.c │ │ │ │ └── arm_yule_distance.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 │ │ │ │ ├── arm_vexp_f32.c │ │ │ │ └── arm_vlog_f32.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 │ │ │ │ ├── SVMFunctions │ │ │ │ ├── arm_svm_linear_init_f32.c │ │ │ │ ├── arm_svm_linear_predict_f32.c │ │ │ │ ├── arm_svm_polynomial_init_f32.c │ │ │ │ ├── arm_svm_polynomial_predict_f32.c │ │ │ │ ├── arm_svm_rbf_init_f32.c │ │ │ │ ├── arm_svm_rbf_predict_f32.c │ │ │ │ ├── arm_svm_sigmoid_init_f32.c │ │ │ │ └── arm_svm_sigmoid_predict_f32.c │ │ │ │ ├── StatisticsFunctions │ │ │ │ ├── arm_entropy_f32.c │ │ │ │ ├── arm_entropy_f64.c │ │ │ │ ├── arm_kullback_leibler_f32.c │ │ │ │ ├── arm_kullback_leibler_f64.c │ │ │ │ ├── arm_logsumexp_dot_prod_f32.c │ │ │ │ ├── arm_logsumexp_f32.c │ │ │ │ ├── arm_max_f32.c │ │ │ │ ├── arm_max_no_idx_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_barycenter_f32.c │ │ │ │ ├── arm_bitonic_sort_f32.c │ │ │ │ ├── arm_bubble_sort_f32.c │ │ │ │ ├── arm_copy_f32.c │ │ │ │ ├── arm_copy_q15.c │ │ │ │ ├── arm_copy_q31.c │ │ │ │ ├── arm_copy_q7.c │ │ │ │ ├── arm_fill_f32.c │ │ │ │ ├── arm_fill_q15.c │ │ │ │ ├── arm_fill_q31.c │ │ │ │ ├── arm_fill_q7.c │ │ │ │ ├── arm_float_to_q15.c │ │ │ │ ├── arm_float_to_q31.c │ │ │ │ ├── arm_float_to_q7.c │ │ │ │ ├── arm_heap_sort_f32.c │ │ │ │ ├── arm_insertion_sort_f32.c │ │ │ │ ├── arm_merge_sort_f32.c │ │ │ │ ├── arm_merge_sort_init_f32.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 │ │ │ │ ├── arm_quick_sort_f32.c │ │ │ │ ├── arm_selection_sort_f32.c │ │ │ │ ├── arm_sort_f32.c │ │ │ │ ├── arm_sort_init_f32.c │ │ │ │ ├── arm_spline_interp_f32.c │ │ │ │ ├── arm_spline_interp_init_f32.c │ │ │ │ └── arm_weighted_sum_f32.c │ │ │ │ └── TransformFunctions │ │ │ │ ├── TransformFunctionsF16.c │ │ │ │ ├── arm_bitreversal.c │ │ │ │ ├── arm_bitreversal2.c │ │ │ │ ├── arm_cfft_f16.c │ │ │ │ ├── arm_cfft_f32.c │ │ │ │ ├── arm_cfft_f64.c │ │ │ │ ├── arm_cfft_init_f16.c │ │ │ │ ├── arm_cfft_init_f32.c │ │ │ │ ├── arm_cfft_init_f64.c │ │ │ │ ├── arm_cfft_init_q15.c │ │ │ │ ├── arm_cfft_init_q31.c │ │ │ │ ├── arm_cfft_q15.c │ │ │ │ ├── arm_cfft_q31.c │ │ │ │ ├── arm_cfft_radix2_f16.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_f16.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_f64.c │ │ │ │ ├── arm_rfft_fast_init_f32.c │ │ │ │ ├── arm_rfft_fast_init_f64.c │ │ │ │ ├── arm_rfft_init_f32.c │ │ │ │ ├── arm_rfft_init_q15.c │ │ │ │ ├── arm_rfft_init_q31.c │ │ │ │ ├── arm_rfft_q15.c │ │ │ │ └── arm_rfft_q31.c │ │ └── sources.txt │ ├── LICENSE │ ├── LICENSE-apache-2.0.txt │ ├── README.md │ ├── anomaly │ │ └── anomaly.h │ ├── classifier │ │ ├── ei_aligned_malloc.h │ │ ├── ei_classifier_config.h │ │ ├── ei_classifier_smooth.h │ │ ├── ei_classifier_types.h │ │ ├── ei_model_types.h │ │ ├── ei_run_classifier.h │ │ ├── ei_run_classifier_image.h │ │ └── ei_run_dsp.h │ ├── cmake │ │ ├── utils.cmake │ │ └── zephyr │ │ │ └── CMakeLists.txt │ ├── create-arduino-library.sh │ ├── dsp │ │ ├── config.hpp │ │ ├── dct │ │ │ ├── .clang-format │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fast-dct-fft.cpp │ │ │ └── fast-dct-fft.h │ │ ├── ei_utils.h │ │ ├── kissfft │ │ │ ├── .clang-format │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── kiss_fft.cpp │ │ │ ├── kiss_fft.h │ │ │ ├── kiss_fftr.cpp │ │ │ ├── kiss_fftr.h │ │ │ ├── kissfft.h │ │ │ ├── kissfft.hh │ │ │ └── kissfft_i32.hh │ │ ├── memory.cpp │ │ ├── memory.hpp │ │ ├── numpy.hpp │ │ ├── numpy_types.h │ │ ├── returntypes.hpp │ │ ├── spectral │ │ │ ├── feature.hpp │ │ │ ├── filters.hpp │ │ │ ├── fir_filter.hpp │ │ │ ├── processing.hpp │ │ │ └── spectral.hpp │ │ └── speechpy │ │ │ ├── feature.hpp │ │ │ ├── functions.hpp │ │ │ ├── processing.hpp │ │ │ └── speechpy.hpp │ ├── porting │ │ ├── .clang-format │ │ ├── ei_classifier_porting.h │ │ ├── himax │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── mingw32 │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── stm32-cubeai │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ └── zephyr │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ ├── sources.txt │ ├── tensorflow │ │ └── lite │ │ │ └── micro │ │ │ └── debug_log.h │ └── third_party │ │ ├── .clang-format │ │ ├── arc_mli_package │ │ ├── LICENSE │ │ ├── bin │ │ │ └── emsdp_em11d_em9d_dfss │ │ │ │ └── release │ │ │ │ └── libmli.a │ │ └── include │ │ │ ├── api │ │ │ ├── mli_helpers_api.h │ │ │ ├── mli_kernels_api.h │ │ │ ├── mli_krn_avepool_spec_api.h │ │ │ ├── mli_krn_conv2d_spec_api.h │ │ │ ├── mli_krn_depthwise_conv2d_spec_api.h │ │ │ ├── mli_krn_maxpool_spec_api.h │ │ │ └── mli_mov_api.h │ │ │ ├── mli_api.h │ │ │ ├── mli_config.h │ │ │ └── mli_types.h │ │ ├── flatbuffers │ │ ├── LICENSE.txt │ │ └── include │ │ │ └── flatbuffers │ │ │ ├── base.h │ │ │ ├── flatbuffers.h │ │ │ └── stl_emulation.h │ │ ├── gemmlowp │ │ ├── LICENSE │ │ ├── fixedpoint │ │ │ ├── fixedpoint.h │ │ │ ├── fixedpoint_neon.h │ │ │ └── fixedpoint_sse.h │ │ └── internal │ │ │ └── detect_platform.h │ │ └── ruy │ │ └── ruy │ │ └── profiler │ │ └── instrumentation.h │ └── model-parameters │ ├── dsp_blocks.h │ └── model_metadata.h ├── MotionC_V1 Debug.launch ├── MotionC_V1.ioc ├── README.md ├── STM32F407VGTX_FLASH.ld ├── STM32F407VGTX_RAM.ld ├── STM_Studio.tsc ├── STM_Studio.tsp └── images ├── Capture5.PNG ├── Capture6.PNG └── Capture7.PNG /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/.cproject -------------------------------------------------------------------------------- /.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/.mxproject -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/.project -------------------------------------------------------------------------------- /.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/.settings/language.settings.xml -------------------------------------------------------------------------------- /.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/.settings/org.eclipse.cdt.core.prefs -------------------------------------------------------------------------------- /.settings/stm32cubeide.project.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/.settings/stm32cubeide.project.prefs -------------------------------------------------------------------------------- /Core/Inc/TJ_MPU6050.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Core/Inc/TJ_MPU6050.h -------------------------------------------------------------------------------- /Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Core/Inc/main.h -------------------------------------------------------------------------------- /Core/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Core/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /Core/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Core/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /Core/Src/TJ_MPU6050.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Core/Src/TJ_MPU6050.cpp -------------------------------------------------------------------------------- /Core/Src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Core/Src/main.cpp -------------------------------------------------------------------------------- /Core/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Core/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /Core/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Core/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Core/Src/syscalls.c -------------------------------------------------------------------------------- /Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Core/Src/sysmem.c -------------------------------------------------------------------------------- /Core/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Core/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /Core/Startup/startup_stm32f407vgtx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Core/Startup/startup_stm32f407vgtx.s -------------------------------------------------------------------------------- /Debug/Core/Src/TJ_MPU6050.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/TJ_MPU6050.d -------------------------------------------------------------------------------- /Debug/Core/Src/TJ_MPU6050.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/TJ_MPU6050.o -------------------------------------------------------------------------------- /Debug/Core/Src/TJ_MPU6050.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/TJ_MPU6050.su -------------------------------------------------------------------------------- /Debug/Core/Src/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/main.d -------------------------------------------------------------------------------- /Debug/Core/Src/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/main.o -------------------------------------------------------------------------------- /Debug/Core/Src/main.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/main.su -------------------------------------------------------------------------------- /Debug/Core/Src/stm32f4xx_hal_msp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/stm32f4xx_hal_msp.d -------------------------------------------------------------------------------- /Debug/Core/Src/stm32f4xx_hal_msp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/stm32f4xx_hal_msp.o -------------------------------------------------------------------------------- /Debug/Core/Src/stm32f4xx_hal_msp.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/stm32f4xx_hal_msp.su -------------------------------------------------------------------------------- /Debug/Core/Src/stm32f4xx_it.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/stm32f4xx_it.d -------------------------------------------------------------------------------- /Debug/Core/Src/stm32f4xx_it.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/stm32f4xx_it.o -------------------------------------------------------------------------------- /Debug/Core/Src/stm32f4xx_it.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/stm32f4xx_it.su -------------------------------------------------------------------------------- /Debug/Core/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/subdir.mk -------------------------------------------------------------------------------- /Debug/Core/Src/syscalls.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/syscalls.d -------------------------------------------------------------------------------- /Debug/Core/Src/syscalls.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/syscalls.o -------------------------------------------------------------------------------- /Debug/Core/Src/syscalls.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/syscalls.su -------------------------------------------------------------------------------- /Debug/Core/Src/sysmem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/sysmem.d -------------------------------------------------------------------------------- /Debug/Core/Src/sysmem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/sysmem.o -------------------------------------------------------------------------------- /Debug/Core/Src/sysmem.su: -------------------------------------------------------------------------------- 1 | sysmem.c:54:7:_sbrk 32 static 2 | -------------------------------------------------------------------------------- /Debug/Core/Src/system_stm32f4xx.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/system_stm32f4xx.d -------------------------------------------------------------------------------- /Debug/Core/Src/system_stm32f4xx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/system_stm32f4xx.o -------------------------------------------------------------------------------- /Debug/Core/Src/system_stm32f4xx.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Src/system_stm32f4xx.su -------------------------------------------------------------------------------- /Debug/Core/Startup/startup_stm32f407vgtx.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Startup/startup_stm32f407vgtx.d -------------------------------------------------------------------------------- /Debug/Core/Startup/startup_stm32f407vgtx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Startup/startup_stm32f407vgtx.o -------------------------------------------------------------------------------- /Debug/Core/Startup/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Core/Startup/subdir.mk -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.su -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.su -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.su -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.su -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.su -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.su -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.su -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.su -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.su -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.su -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.su -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.su -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.su -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.su -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.d -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.su -------------------------------------------------------------------------------- /Debug/Drivers/STM32F4xx_HAL_Driver/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Drivers/STM32F4xx_HAL_Driver/Src/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network.su -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network_data.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network_data.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network_data.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network_data.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network_data.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network_data.su -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/BasicMathFunctionsF16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_dot_prod_f16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_f16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_negate_f16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_offset_f16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u8.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u8.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u8.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u8.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_scale_f16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_f16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BayesFunctions/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BayesFunctions/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/CommonTablesF16.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/CommonTablesF16.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/CommonTablesF16.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/CommonTablesF16.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/CommonTablesF16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_common_tables.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_common_tables_f16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_const_structs.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_const_structs_f16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_mve_tables.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_mve_tables.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_mve_tables.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_mve_tables.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_mve_tables.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_mve_tables_f16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/ComplexMathFunctions/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/ComplexMathFunctions/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/ControllerFunctions/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/ControllerFunctions/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/DistanceFunctions/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/DistanceFunctions/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SVMFunctions/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SVMFunctions/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q7.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q7.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q7.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q7.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q7.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q7.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q7.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q7.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/TransformFunctionsF16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_cfft_f16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_cfft_init_f16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix2_f16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix4_f16.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/dct/fast-dct-fft.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/dct/fast-dct-fft.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/dct/fast-dct-fft.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/dct/fast-dct-fft.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/dct/fast-dct-fft.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/dct/fast-dct-fft.su -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/dct/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/dct/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fft.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fft.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fft.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fft.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fft.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fft.su -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fftr.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fftr.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fftr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fftr.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fftr.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fftr.su -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/memory.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/memory.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/memory.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/memory.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/memory.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/himax/debug_log.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/himax/debug_log.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/himax/debug_log.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/himax/debug_log.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/himax/debug_log.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/himax/ei_classifier_porting.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/himax/ei_classifier_porting.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/himax/ei_classifier_porting.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/himax/ei_classifier_porting.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/himax/ei_classifier_porting.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/himax/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/himax/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/mingw32/debug_log.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/mingw32/debug_log.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/mingw32/debug_log.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/mingw32/debug_log.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/mingw32/debug_log.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/mingw32/ei_classifier_porting.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/mingw32/ei_classifier_porting.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/mingw32/ei_classifier_porting.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/mingw32/ei_classifier_porting.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/mingw32/ei_classifier_porting.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/mingw32/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/mingw32/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/stm32-cubeai/debug_log.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/stm32-cubeai/debug_log.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/stm32-cubeai/debug_log.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/stm32-cubeai/debug_log.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/stm32-cubeai/debug_log.su: -------------------------------------------------------------------------------- 1 | debug_log.cpp:34:6:void DebugLog(const char*) 16 static 2 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/stm32-cubeai/ei_classifier_porting.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/stm32-cubeai/ei_classifier_porting.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/stm32-cubeai/ei_classifier_porting.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/stm32-cubeai/ei_classifier_porting.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/stm32-cubeai/ei_classifier_porting.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/stm32-cubeai/ei_classifier_porting.su -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/stm32-cubeai/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/stm32-cubeai/subdir.mk -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/zephyr/debug_log.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/zephyr/debug_log.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/zephyr/debug_log.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/zephyr/debug_log.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/zephyr/debug_log.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/zephyr/ei_classifier_porting.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/zephyr/ei_classifier_porting.d -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/zephyr/ei_classifier_porting.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/zephyr/ei_classifier_porting.o -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/zephyr/ei_classifier_porting.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/zephyr/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/zephyr/subdir.mk -------------------------------------------------------------------------------- /Debug/MotionC_V1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/MotionC_V1.bin -------------------------------------------------------------------------------- /Debug/MotionC_V1.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/MotionC_V1.elf -------------------------------------------------------------------------------- /Debug/MotionC_V1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/MotionC_V1.hex -------------------------------------------------------------------------------- /Debug/MotionC_V1.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/MotionC_V1.list -------------------------------------------------------------------------------- /Debug/MotionC_V1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/MotionC_V1.map -------------------------------------------------------------------------------- /Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/makefile -------------------------------------------------------------------------------- /Debug/objects.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/objects.list -------------------------------------------------------------------------------- /Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/objects.mk -------------------------------------------------------------------------------- /Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Debug/sources.mk -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_common_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_common_config.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_datatypes_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_datatypes_defines.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_datatypes_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_datatypes_format.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_datatypes_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_datatypes_internal.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_log.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_math_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_math_helpers.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_network_inspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_network_inspector.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_platform.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_platform_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/ai_platform_interface.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/core_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/core_common.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/core_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/core_convert.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/core_datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/core_datatypes.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/core_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/core_log.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/core_net_inspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/core_net_inspect.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/core_net_inspect_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/core_net_inspect_interface.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/datatypes_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/datatypes_network.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/formats_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/formats_list.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_common.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_conv2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_conv2d.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_dense.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_generic.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_list.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_nl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_nl.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_norm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_norm.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_pool.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_rnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_rnn.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Inc/layers_sm.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Lib/ABI2.1/ARMCortexM33/NetworkRuntime500_CM33_IAR.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Lib/ABI2.1/ARMCortexM33/NetworkRuntime500_CM33_IAR.a -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Lib/ABI2.1/ARMCortexM4/NetworkRuntime500_CM4_IAR.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Lib/ABI2.1/ARMCortexM4/NetworkRuntime500_CM4_IAR.a -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Lib/ABI2.1/ARMCortexM7/NetworkRuntime500_CM7_IAR.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Lib/ABI2.1/ARMCortexM7/NetworkRuntime500_CM7_IAR.a -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Lib/ABI2.1/STM32H7/NetworkRuntime500_CM7_IAR.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Lib/ABI2.1/STM32H7/NetworkRuntime500_CM7_IAR.a -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Lib/MDK/ARMCortexM33/NetworkRuntime500_CM33_Keil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Lib/MDK/ARMCortexM33/NetworkRuntime500_CM33_Keil.lib -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Lib/MDK/ARMCortexM4/NetworkRuntime500_CM4_Keil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Lib/MDK/ARMCortexM4/NetworkRuntime500_CM4_Keil.lib -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Lib/MDK/ARMCortexM7/NetworkRuntime500_CM7_Keil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Lib/MDK/ARMCortexM7/NetworkRuntime500_CM7_Keil.lib -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Lib/MDK/STM32H7/NetworkRuntime500_CM7_Keil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/Middlewares/ST/AI/Lib/MDK/STM32H7/NetworkRuntime500_CM7_Keil.lib -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network_data.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network_data.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network_generate_report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/cubeai-model/network_generate_report.txt -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/.gitignore -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/.mbedignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/.mbedignore -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/.clang-format: -------------------------------------------------------------------------------- 1 | "DisableFormat": true 2 | "SortIncludes": false 3 | -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_common_tables.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_common_tables_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_common_tables_f16.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_const_structs.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_const_structs_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_const_structs_f16.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_helium_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_helium_utils.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_math.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_f16.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_mve_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_mve_tables.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_mve_tables_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_mve_tables_f16.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_math.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/PrivateInclude/arm_sorting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/PrivateInclude/arm_sorting.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/PrivateInclude/arm_vec_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/PrivateInclude/arm_vec_fft.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/PrivateInclude/arm_vec_filtering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/PrivateInclude/arm_vec_filtering.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f16.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f16.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u16.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u8.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_dot_prod_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_dot_prod_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_f16.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_negate_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_negate_f16.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_negate_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_negate_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_negate_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_negate_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_negate_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_negate_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_negate_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_negate_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_not_u16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_not_u16.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_not_u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_not_u32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_not_u8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_not_u8.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_offset_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_offset_f16.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_offset_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_offset_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_offset_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_offset_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_offset_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_offset_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_offset_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_offset_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u16.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u8.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_scale_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_scale_f16.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_scale_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_scale_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_scale_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_scale_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_scale_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_scale_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_scale_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_scale_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_shift_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_shift_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_shift_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_shift_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_shift_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_shift_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_f16.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_xor_u16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_xor_u16.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_xor_u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_xor_u32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_xor_u8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_xor_u8.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/CommonTablesF16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/CommonTablesF16.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_common_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_common_tables.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_common_tables_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_common_tables_f16.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_const_structs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_const_structs.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_const_structs_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_const_structs_f16.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_mve_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_mve_tables.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_mve_tables_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_mve_tables_f16.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_cos_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_cos_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_cos_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_cos_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_cos_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_cos_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sin_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sin_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sin_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sin_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sin_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sin_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sqrt_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sqrt_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sqrt_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sqrt_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vexp_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vexp_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vlog_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vlog_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_conv_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_conv_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_conv_opt_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_conv_opt_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_conv_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_conv_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_conv_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_conv_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_conv_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_conv_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_init_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_init_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_lms_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_lms_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_lms_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_lms_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_lms_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_lms_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_add_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_add_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_add_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_add_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_add_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_add_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_init_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_init_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_init_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_init_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_init_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_init_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_sub_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_sub_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_sub_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_sub_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_sub_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_sub_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_max_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_max_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_max_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_max_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_max_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_max_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_max_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_max_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_mean_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_mean_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_min_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_min_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_min_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_min_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_min_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_min_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_min_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_min_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_rms_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_rms_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_rms_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_rms_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_rms_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_rms_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_std_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_std_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_std_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_std_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_std_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_std_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_var_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_var_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_var_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_var_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_var_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_var_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q15_to_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q15_to_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q15_to_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q15_to_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q31_to_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q31_to_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q31_to_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q31_to_q7.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q7_to_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q7_to_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q7_to_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q7_to_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_sort_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_sort_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_cfft_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_cfft_f16.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_cfft_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_cfft_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_cfft_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_cfft_f64.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_cfft_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_cfft_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_cfft_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_cfft_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_dct4_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_dct4_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_dct4_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_dct4_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_dct4_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_dct4_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_rfft_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_rfft_f32.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_rfft_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_rfft_q15.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_rfft_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/DSP/Source/TransformFunctions/arm_rfft_q31.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/CMSIS/sources.txt: -------------------------------------------------------------------------------- 1 | Created by update_tflite.sh 2 | -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/LICENSE -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/LICENSE-apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/LICENSE-apache-2.0.txt -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/README.md -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/anomaly/anomaly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/anomaly/anomaly.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/classifier/ei_aligned_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/classifier/ei_aligned_malloc.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/classifier/ei_classifier_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/classifier/ei_classifier_config.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/classifier/ei_classifier_smooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/classifier/ei_classifier_smooth.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/classifier/ei_classifier_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/classifier/ei_classifier_types.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/classifier/ei_model_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/classifier/ei_model_types.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/classifier/ei_run_classifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/classifier/ei_run_classifier.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/classifier/ei_run_classifier_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/classifier/ei_run_classifier_image.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/classifier/ei_run_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/classifier/ei_run_dsp.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/cmake/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/cmake/utils.cmake -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/cmake/zephyr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/cmake/zephyr/CMakeLists.txt -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/create-arduino-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/create-arduino-library.sh -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/config.hpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/dct/.clang-format: -------------------------------------------------------------------------------- 1 | "DisableFormat": true 2 | "SortIncludes": false 3 | -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/dct/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/dct/LICENSE -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/dct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/dct/README.md -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/dct/fast-dct-fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/dct/fast-dct-fft.cpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/dct/fast-dct-fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/dct/fast-dct-fft.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/ei_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/ei_utils.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/.clang-format: -------------------------------------------------------------------------------- 1 | "DisableFormat": true 2 | "SortIncludes": false 3 | -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/LICENSE -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/README.md -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/_kiss_fft_guts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/_kiss_fft_guts.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fft.cpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fft.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fftr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fftr.cpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kiss_fftr.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kissfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kissfft.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kissfft.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kissfft.hh -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kissfft_i32.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/kissfft/kissfft_i32.hh -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/memory.cpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/memory.hpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/numpy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/numpy.hpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/numpy_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/numpy_types.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/returntypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/returntypes.hpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/spectral/feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/spectral/feature.hpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/spectral/filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/spectral/filters.hpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/spectral/fir_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/spectral/fir_filter.hpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/spectral/processing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/spectral/processing.hpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/spectral/spectral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/spectral/spectral.hpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/speechpy/feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/speechpy/feature.hpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/speechpy/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/speechpy/functions.hpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/speechpy/processing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/speechpy/processing.hpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/speechpy/speechpy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/dsp/speechpy/speechpy.hpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/.clang-format: -------------------------------------------------------------------------------- 1 | "DisableFormat": true 2 | "SortIncludes": false 3 | -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/ei_classifier_porting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/ei_classifier_porting.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/himax/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/himax/debug_log.cpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/himax/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/himax/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/mingw32/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/mingw32/debug_log.cpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/mingw32/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/mingw32/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/stm32-cubeai/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/stm32-cubeai/debug_log.cpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/stm32-cubeai/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/stm32-cubeai/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/zephyr/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/zephyr/debug_log.cpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/zephyr/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/porting/zephyr/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/sources.txt -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/tensorflow/lite/micro/debug_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/tensorflow/lite/micro/debug_log.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/.clang-format: -------------------------------------------------------------------------------- 1 | "DisableFormat": true 2 | "SortIncludes": false 3 | -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/arc_mli_package/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/arc_mli_package/LICENSE -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/arc_mli_package/include/mli_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/arc_mli_package/include/mli_api.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/arc_mli_package/include/mli_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/arc_mli_package/include/mli_config.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/arc_mli_package/include/mli_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/arc_mli_package/include/mli_types.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/flatbuffers/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/flatbuffers/LICENSE.txt -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/flatbuffers/include/flatbuffers/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/flatbuffers/include/flatbuffers/base.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/gemmlowp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/gemmlowp/LICENSE -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/gemmlowp/fixedpoint/fixedpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/gemmlowp/fixedpoint/fixedpoint.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/gemmlowp/fixedpoint/fixedpoint_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/gemmlowp/fixedpoint/fixedpoint_neon.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/gemmlowp/fixedpoint/fixedpoint_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/gemmlowp/fixedpoint/fixedpoint_sse.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/gemmlowp/internal/detect_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/gemmlowp/internal/detect_platform.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/ruy/ruy/profiler/instrumentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/edge-impulse-sdk/third_party/ruy/ruy/profiler/instrumentation.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/model-parameters/dsp_blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/model-parameters/dsp_blocks.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/model-parameters/model_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/Middlewares/Third_Party/EdgeImpulse_MottionDetection_P1_MachineLearning/edgeimpulse/model-parameters/model_metadata.h -------------------------------------------------------------------------------- /MotionC_V1 Debug.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/MotionC_V1 Debug.launch -------------------------------------------------------------------------------- /MotionC_V1.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/MotionC_V1.ioc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/README.md -------------------------------------------------------------------------------- /STM32F407VGTX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/STM32F407VGTX_FLASH.ld -------------------------------------------------------------------------------- /STM32F407VGTX_RAM.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/STM32F407VGTX_RAM.ld -------------------------------------------------------------------------------- /STM_Studio.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/STM_Studio.tsc -------------------------------------------------------------------------------- /STM_Studio.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/STM_Studio.tsp -------------------------------------------------------------------------------- /images/Capture5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/images/Capture5.PNG -------------------------------------------------------------------------------- /images/Capture6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/images/Capture6.PNG -------------------------------------------------------------------------------- /images/Capture7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RashadShubita/STM32F407-tinyML-EdgeImpulse-Motion/HEAD/images/Capture7.PNG --------------------------------------------------------------------------------