├── .dockerignore ├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── Kconfig ├── LICENSE.3-clause-bsd-clear ├── README.md ├── boards └── thingy91_nrf9160_ns.overlay ├── child_image └── prj.conf ├── connectivity_bridge ├── CMakeLists.txt ├── Kconfig ├── README.rst ├── app.overlay ├── prj.conf ├── sample.yaml └── src │ ├── disk │ ├── CMakeLists.txt │ ├── config.c │ ├── readme.c │ ├── thingy91_cdc_acm.cat │ ├── thingy91_cdc_acm.cat.c │ ├── thingy91_cdc_acm.inf │ └── thingy91_cdc_acm.inf.c │ ├── events │ ├── CMakeLists.txt │ ├── Kconfig │ ├── ble_ctrl_event.c │ ├── ble_ctrl_event.h │ ├── ble_data_event.c │ ├── ble_data_event.h │ ├── cdc_data_event.c │ ├── cdc_data_event.h │ ├── fs_event.c │ ├── fs_event.h │ ├── module_state_event.c │ ├── module_state_event.h │ ├── peer_conn_event.c │ ├── peer_conn_event.h │ ├── power_event.c │ ├── power_event.h │ ├── uart_data_event.c │ └── uart_data_event.h │ ├── main.c │ └── modules │ ├── CMakeLists.txt │ ├── Kconfig │ ├── ble_handler.c │ ├── fs_handler.c │ ├── power_handler.c │ ├── uart_handler.c │ └── usb_cdc_handler.c ├── doc ├── online-mqtt-client-connect.png ├── online-mqtt-client-messages.png ├── online-mqtt-client-subscribe.png ├── online-mqtt-client-topic.png └── thingy91-swd-select.png ├── ei-model ├── edge-impulse-sdk │ ├── .gitignore │ ├── .mbedignore │ ├── CMSIS │ │ ├── Core │ │ │ └── Include │ │ │ │ ├── cachel1_armv7.h │ │ │ │ ├── cmsis_armcc.h │ │ │ │ ├── cmsis_armclang.h │ │ │ │ ├── cmsis_armclang_ltm.h │ │ │ │ ├── cmsis_compiler.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ ├── cmsis_version.h │ │ │ │ ├── core_armv81mml.h │ │ │ │ ├── core_armv8mbl.h │ │ │ │ ├── core_armv8mml.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm1.h │ │ │ │ ├── core_cm23.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm33.h │ │ │ │ ├── core_cm35p.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm55.h │ │ │ │ ├── core_cm7.h │ │ │ │ ├── core_cm85.h │ │ │ │ ├── core_sc000.h │ │ │ │ ├── core_sc300.h │ │ │ │ ├── core_starmc1.h │ │ │ │ ├── mpu_armv7.h │ │ │ │ ├── mpu_armv8.h │ │ │ │ ├── pac_armv81.h │ │ │ │ ├── pmu_armv8.h │ │ │ │ └── tz_context.h │ │ ├── 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_math_memory.h │ │ │ │ ├── arm_math_types.h │ │ │ │ ├── arm_math_types_f16.h │ │ │ │ ├── arm_mve_tables.h │ │ │ │ ├── arm_mve_tables_f16.h │ │ │ │ ├── arm_sorting.h │ │ │ │ ├── arm_vec_fft.h │ │ │ │ ├── arm_vec_filtering.h │ │ │ │ ├── arm_vec_math.h │ │ │ │ ├── arm_vec_math_f16.h │ │ │ │ └── dsp │ │ │ │ │ ├── basic_math_functions.h │ │ │ │ │ ├── basic_math_functions_f16.h │ │ │ │ │ ├── bayes_functions.h │ │ │ │ │ ├── bayes_functions_f16.h │ │ │ │ │ ├── complex_math_functions.h │ │ │ │ │ ├── complex_math_functions_f16.h │ │ │ │ │ ├── controller_functions.h │ │ │ │ │ ├── controller_functions_f16.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── distance_functions.h │ │ │ │ │ ├── distance_functions_f16.h │ │ │ │ │ ├── fast_math_functions.h │ │ │ │ │ ├── fast_math_functions_f16.h │ │ │ │ │ ├── filtering_functions.h │ │ │ │ │ ├── filtering_functions_f16.h │ │ │ │ │ ├── interpolation_functions.h │ │ │ │ │ ├── interpolation_functions_f16.h │ │ │ │ │ ├── matrix_functions.h │ │ │ │ │ ├── matrix_functions_f16.h │ │ │ │ │ ├── matrix_utils.h │ │ │ │ │ ├── none.h │ │ │ │ │ ├── quaternion_math_functions.h │ │ │ │ │ ├── statistics_functions.h │ │ │ │ │ ├── statistics_functions_f16.h │ │ │ │ │ ├── support_functions.h │ │ │ │ │ ├── support_functions_f16.h │ │ │ │ │ ├── svm_defines.h │ │ │ │ │ ├── svm_functions.h │ │ │ │ │ ├── svm_functions_f16.h │ │ │ │ │ ├── transform_functions.h │ │ │ │ │ ├── transform_functions_f16.h │ │ │ │ │ └── utils.h │ │ │ ├── PrivateInclude │ │ │ │ └── README.md │ │ │ └── Source │ │ │ │ ├── BasicMathFunctions │ │ │ │ ├── arm_abs_f16.c │ │ │ │ ├── arm_abs_f32.c │ │ │ │ ├── arm_abs_f64.c │ │ │ │ ├── arm_abs_q15.c │ │ │ │ ├── arm_abs_q31.c │ │ │ │ ├── arm_abs_q7.c │ │ │ │ ├── arm_add_f16.c │ │ │ │ ├── arm_add_f32.c │ │ │ │ ├── arm_add_f64.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_clip_f16.c │ │ │ │ ├── arm_clip_f32.c │ │ │ │ ├── arm_clip_q15.c │ │ │ │ ├── arm_clip_q31.c │ │ │ │ ├── arm_clip_q7.c │ │ │ │ ├── arm_dot_prod_f16.c │ │ │ │ ├── arm_dot_prod_f32.c │ │ │ │ ├── arm_dot_prod_f64.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_f64.c │ │ │ │ ├── arm_mult_q15.c │ │ │ │ ├── arm_mult_q31.c │ │ │ │ ├── arm_mult_q7.c │ │ │ │ ├── arm_negate_f16.c │ │ │ │ ├── arm_negate_f32.c │ │ │ │ ├── arm_negate_f64.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_f64.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_f64.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_f64.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_f16.c │ │ │ │ └── arm_gaussian_naive_bayes_predict_f32.c │ │ │ │ ├── CommonTables │ │ │ │ ├── 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_f16.c │ │ │ │ ├── arm_cmplx_conj_f32.c │ │ │ │ ├── arm_cmplx_conj_q15.c │ │ │ │ ├── arm_cmplx_conj_q31.c │ │ │ │ ├── arm_cmplx_dot_prod_f16.c │ │ │ │ ├── arm_cmplx_dot_prod_f32.c │ │ │ │ ├── arm_cmplx_dot_prod_q15.c │ │ │ │ ├── arm_cmplx_dot_prod_q31.c │ │ │ │ ├── arm_cmplx_mag_f16.c │ │ │ │ ├── arm_cmplx_mag_f32.c │ │ │ │ ├── arm_cmplx_mag_f64.c │ │ │ │ ├── arm_cmplx_mag_fast_q15.c │ │ │ │ ├── arm_cmplx_mag_q15.c │ │ │ │ ├── arm_cmplx_mag_q31.c │ │ │ │ ├── arm_cmplx_mag_squared_f16.c │ │ │ │ ├── arm_cmplx_mag_squared_f32.c │ │ │ │ ├── arm_cmplx_mag_squared_f64.c │ │ │ │ ├── arm_cmplx_mag_squared_q15.c │ │ │ │ ├── arm_cmplx_mag_squared_q31.c │ │ │ │ ├── arm_cmplx_mult_cmplx_f16.c │ │ │ │ ├── arm_cmplx_mult_cmplx_f32.c │ │ │ │ ├── arm_cmplx_mult_cmplx_f64.c │ │ │ │ ├── arm_cmplx_mult_cmplx_q15.c │ │ │ │ ├── arm_cmplx_mult_cmplx_q31.c │ │ │ │ ├── arm_cmplx_mult_real_f16.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_f16.c │ │ │ │ ├── arm_braycurtis_distance_f32.c │ │ │ │ ├── arm_canberra_distance_f16.c │ │ │ │ ├── arm_canberra_distance_f32.c │ │ │ │ ├── arm_chebyshev_distance_f16.c │ │ │ │ ├── arm_chebyshev_distance_f32.c │ │ │ │ ├── arm_chebyshev_distance_f64.c │ │ │ │ ├── arm_cityblock_distance_f16.c │ │ │ │ ├── arm_cityblock_distance_f32.c │ │ │ │ ├── arm_cityblock_distance_f64.c │ │ │ │ ├── arm_correlation_distance_f16.c │ │ │ │ ├── arm_correlation_distance_f32.c │ │ │ │ ├── arm_cosine_distance_f16.c │ │ │ │ ├── arm_cosine_distance_f32.c │ │ │ │ ├── arm_cosine_distance_f64.c │ │ │ │ ├── arm_dice_distance.c │ │ │ │ ├── arm_euclidean_distance_f16.c │ │ │ │ ├── arm_euclidean_distance_f32.c │ │ │ │ ├── arm_euclidean_distance_f64.c │ │ │ │ ├── arm_hamming_distance.c │ │ │ │ ├── arm_jaccard_distance.c │ │ │ │ ├── arm_jensenshannon_distance_f16.c │ │ │ │ ├── arm_jensenshannon_distance_f32.c │ │ │ │ ├── arm_kulsinski_distance.c │ │ │ │ ├── arm_minkowski_distance_f16.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_atan2_f16.c │ │ │ │ ├── arm_atan2_f32.c │ │ │ │ ├── arm_atan2_q15.c │ │ │ │ ├── arm_atan2_q31.c │ │ │ │ ├── arm_cos_f32.c │ │ │ │ ├── arm_cos_q15.c │ │ │ │ ├── arm_cos_q31.c │ │ │ │ ├── arm_divide_q15.c │ │ │ │ ├── arm_divide_q31.c │ │ │ │ ├── arm_sin_f32.c │ │ │ │ ├── arm_sin_q15.c │ │ │ │ ├── arm_sin_q31.c │ │ │ │ ├── arm_sqrt_q15.c │ │ │ │ ├── arm_sqrt_q31.c │ │ │ │ ├── arm_vexp_f16.c │ │ │ │ ├── arm_vexp_f32.c │ │ │ │ ├── arm_vexp_f64.c │ │ │ │ ├── arm_vinverse_f16.c │ │ │ │ ├── arm_vlog_f16.c │ │ │ │ ├── arm_vlog_f32.c │ │ │ │ ├── arm_vlog_f64.c │ │ │ │ ├── arm_vlog_q15.c │ │ │ │ └── arm_vlog_q31.c │ │ │ │ ├── FilteringFunctions │ │ │ │ ├── arm_biquad_cascade_df1_32x64_init_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_32x64_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_f16.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_f16.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_f16.c │ │ │ │ ├── arm_biquad_cascade_df2T_f32.c │ │ │ │ ├── arm_biquad_cascade_df2T_f64.c │ │ │ │ ├── arm_biquad_cascade_df2T_init_f16.c │ │ │ │ ├── arm_biquad_cascade_df2T_init_f32.c │ │ │ │ ├── arm_biquad_cascade_df2T_init_f64.c │ │ │ │ ├── arm_biquad_cascade_stereo_df2T_f16.c │ │ │ │ ├── arm_biquad_cascade_stereo_df2T_f32.c │ │ │ │ ├── arm_biquad_cascade_stereo_df2T_init_f16.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_f16.c │ │ │ │ ├── arm_correlate_f32.c │ │ │ │ ├── arm_correlate_f64.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_f16.c │ │ │ │ ├── arm_fir_f32.c │ │ │ │ ├── arm_fir_f64.c │ │ │ │ ├── arm_fir_fast_q15.c │ │ │ │ ├── arm_fir_fast_q31.c │ │ │ │ ├── arm_fir_init_f16.c │ │ │ │ ├── arm_fir_init_f32.c │ │ │ │ ├── arm_fir_init_f64.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_levinson_durbin_f16.c │ │ │ │ ├── arm_levinson_durbin_f32.c │ │ │ │ ├── arm_levinson_durbin_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 │ │ │ │ ├── InterpolationFunctions │ │ │ │ ├── arm_bilinear_interp_f16.c │ │ │ │ ├── arm_bilinear_interp_f32.c │ │ │ │ ├── arm_bilinear_interp_q15.c │ │ │ │ ├── arm_bilinear_interp_q31.c │ │ │ │ ├── arm_bilinear_interp_q7.c │ │ │ │ ├── arm_linear_interp_f16.c │ │ │ │ ├── arm_linear_interp_f32.c │ │ │ │ ├── arm_linear_interp_q15.c │ │ │ │ ├── arm_linear_interp_q31.c │ │ │ │ ├── arm_linear_interp_q7.c │ │ │ │ ├── arm_spline_interp_f32.c │ │ │ │ └── arm_spline_interp_init_f32.c │ │ │ │ ├── MatrixFunctions │ │ │ │ ├── arm_householder_f16.c │ │ │ │ ├── arm_householder_f32.c │ │ │ │ ├── arm_householder_f64.c │ │ │ │ ├── arm_mat_add_f16.c │ │ │ │ ├── arm_mat_add_f32.c │ │ │ │ ├── arm_mat_add_q15.c │ │ │ │ ├── arm_mat_add_q31.c │ │ │ │ ├── arm_mat_cholesky_f16.c │ │ │ │ ├── arm_mat_cholesky_f32.c │ │ │ │ ├── arm_mat_cholesky_f64.c │ │ │ │ ├── arm_mat_cmplx_mult_f16.c │ │ │ │ ├── arm_mat_cmplx_mult_f32.c │ │ │ │ ├── arm_mat_cmplx_mult_q15.c │ │ │ │ ├── arm_mat_cmplx_mult_q31.c │ │ │ │ ├── arm_mat_cmplx_trans_f16.c │ │ │ │ ├── arm_mat_cmplx_trans_f32.c │ │ │ │ ├── arm_mat_cmplx_trans_q15.c │ │ │ │ ├── arm_mat_cmplx_trans_q31.c │ │ │ │ ├── arm_mat_init_f16.c │ │ │ │ ├── arm_mat_init_f32.c │ │ │ │ ├── arm_mat_init_q15.c │ │ │ │ ├── arm_mat_init_q31.c │ │ │ │ ├── arm_mat_inverse_f16.c │ │ │ │ ├── arm_mat_inverse_f32.c │ │ │ │ ├── arm_mat_inverse_f64.c │ │ │ │ ├── arm_mat_ldlt_f32.c │ │ │ │ ├── arm_mat_ldlt_f64.c │ │ │ │ ├── arm_mat_mult_f16.c │ │ │ │ ├── arm_mat_mult_f32.c │ │ │ │ ├── arm_mat_mult_f64.c │ │ │ │ ├── arm_mat_mult_fast_q15.c │ │ │ │ ├── arm_mat_mult_fast_q31.c │ │ │ │ ├── arm_mat_mult_opt_q31.c │ │ │ │ ├── arm_mat_mult_q15.c │ │ │ │ ├── arm_mat_mult_q31.c │ │ │ │ ├── arm_mat_mult_q7.c │ │ │ │ ├── arm_mat_qr_f16.c │ │ │ │ ├── arm_mat_qr_f32.c │ │ │ │ ├── arm_mat_qr_f64.c │ │ │ │ ├── arm_mat_scale_f16.c │ │ │ │ ├── arm_mat_scale_f32.c │ │ │ │ ├── arm_mat_scale_q15.c │ │ │ │ ├── arm_mat_scale_q31.c │ │ │ │ ├── arm_mat_solve_lower_triangular_f16.c │ │ │ │ ├── arm_mat_solve_lower_triangular_f32.c │ │ │ │ ├── arm_mat_solve_lower_triangular_f64.c │ │ │ │ ├── arm_mat_solve_upper_triangular_f16.c │ │ │ │ ├── arm_mat_solve_upper_triangular_f32.c │ │ │ │ ├── arm_mat_solve_upper_triangular_f64.c │ │ │ │ ├── arm_mat_sub_f16.c │ │ │ │ ├── arm_mat_sub_f32.c │ │ │ │ ├── arm_mat_sub_f64.c │ │ │ │ ├── arm_mat_sub_q15.c │ │ │ │ ├── arm_mat_sub_q31.c │ │ │ │ ├── arm_mat_trans_f16.c │ │ │ │ ├── arm_mat_trans_f32.c │ │ │ │ ├── arm_mat_trans_f64.c │ │ │ │ ├── arm_mat_trans_q15.c │ │ │ │ ├── arm_mat_trans_q31.c │ │ │ │ ├── arm_mat_trans_q7.c │ │ │ │ ├── arm_mat_vec_mult_f16.c │ │ │ │ ├── arm_mat_vec_mult_f32.c │ │ │ │ ├── arm_mat_vec_mult_q15.c │ │ │ │ ├── arm_mat_vec_mult_q31.c │ │ │ │ └── arm_mat_vec_mult_q7.c │ │ │ │ ├── QuaternionMathFunctions │ │ │ │ ├── arm_quaternion2rotation_f32.c │ │ │ │ ├── arm_quaternion_conjugate_f32.c │ │ │ │ ├── arm_quaternion_inverse_f32.c │ │ │ │ ├── arm_quaternion_norm_f32.c │ │ │ │ ├── arm_quaternion_normalize_f32.c │ │ │ │ ├── arm_quaternion_product_f32.c │ │ │ │ ├── arm_quaternion_product_single_f32.c │ │ │ │ └── arm_rotation2quaternion_f32.c │ │ │ │ ├── SVMFunctions │ │ │ │ ├── arm_svm_linear_init_f16.c │ │ │ │ ├── arm_svm_linear_init_f32.c │ │ │ │ ├── arm_svm_linear_predict_f16.c │ │ │ │ ├── arm_svm_linear_predict_f32.c │ │ │ │ ├── arm_svm_polynomial_init_f16.c │ │ │ │ ├── arm_svm_polynomial_init_f32.c │ │ │ │ ├── arm_svm_polynomial_predict_f16.c │ │ │ │ ├── arm_svm_polynomial_predict_f32.c │ │ │ │ ├── arm_svm_rbf_init_f16.c │ │ │ │ ├── arm_svm_rbf_init_f32.c │ │ │ │ ├── arm_svm_rbf_predict_f16.c │ │ │ │ ├── arm_svm_rbf_predict_f32.c │ │ │ │ ├── arm_svm_sigmoid_init_f16.c │ │ │ │ ├── arm_svm_sigmoid_init_f32.c │ │ │ │ ├── arm_svm_sigmoid_predict_f16.c │ │ │ │ └── arm_svm_sigmoid_predict_f32.c │ │ │ │ ├── StatisticsFunctions │ │ │ │ ├── arm_absmax_f16.c │ │ │ │ ├── arm_absmax_f32.c │ │ │ │ ├── arm_absmax_f64.c │ │ │ │ ├── arm_absmax_no_idx_f16.c │ │ │ │ ├── arm_absmax_no_idx_f32.c │ │ │ │ ├── arm_absmax_no_idx_f64.c │ │ │ │ ├── arm_absmax_no_idx_q15.c │ │ │ │ ├── arm_absmax_no_idx_q31.c │ │ │ │ ├── arm_absmax_no_idx_q7.c │ │ │ │ ├── arm_absmax_q15.c │ │ │ │ ├── arm_absmax_q31.c │ │ │ │ ├── arm_absmax_q7.c │ │ │ │ ├── arm_absmin_f16.c │ │ │ │ ├── arm_absmin_f32.c │ │ │ │ ├── arm_absmin_f64.c │ │ │ │ ├── arm_absmin_no_idx_f16.c │ │ │ │ ├── arm_absmin_no_idx_f32.c │ │ │ │ ├── arm_absmin_no_idx_f64.c │ │ │ │ ├── arm_absmin_no_idx_q15.c │ │ │ │ ├── arm_absmin_no_idx_q31.c │ │ │ │ ├── arm_absmin_no_idx_q7.c │ │ │ │ ├── arm_absmin_q15.c │ │ │ │ ├── arm_absmin_q31.c │ │ │ │ ├── arm_absmin_q7.c │ │ │ │ ├── arm_accumulate_f16.c │ │ │ │ ├── arm_accumulate_f32.c │ │ │ │ ├── arm_accumulate_f64.c │ │ │ │ ├── arm_entropy_f16.c │ │ │ │ ├── arm_entropy_f32.c │ │ │ │ ├── arm_entropy_f64.c │ │ │ │ ├── arm_kullback_leibler_f16.c │ │ │ │ ├── arm_kullback_leibler_f32.c │ │ │ │ ├── arm_kullback_leibler_f64.c │ │ │ │ ├── arm_logsumexp_dot_prod_f16.c │ │ │ │ ├── arm_logsumexp_dot_prod_f32.c │ │ │ │ ├── arm_logsumexp_f16.c │ │ │ │ ├── arm_logsumexp_f32.c │ │ │ │ ├── arm_max_f16.c │ │ │ │ ├── arm_max_f32.c │ │ │ │ ├── arm_max_f64.c │ │ │ │ ├── arm_max_no_idx_f16.c │ │ │ │ ├── arm_max_no_idx_f32.c │ │ │ │ ├── arm_max_no_idx_f64.c │ │ │ │ ├── arm_max_no_idx_q15.c │ │ │ │ ├── arm_max_no_idx_q31.c │ │ │ │ ├── arm_max_no_idx_q7.c │ │ │ │ ├── arm_max_q15.c │ │ │ │ ├── arm_max_q31.c │ │ │ │ ├── arm_max_q7.c │ │ │ │ ├── arm_mean_f16.c │ │ │ │ ├── arm_mean_f32.c │ │ │ │ ├── arm_mean_f64.c │ │ │ │ ├── arm_mean_q15.c │ │ │ │ ├── arm_mean_q31.c │ │ │ │ ├── arm_mean_q7.c │ │ │ │ ├── arm_min_f16.c │ │ │ │ ├── arm_min_f32.c │ │ │ │ ├── arm_min_f64.c │ │ │ │ ├── arm_min_no_idx_f16.c │ │ │ │ ├── arm_min_no_idx_f32.c │ │ │ │ ├── arm_min_no_idx_f64.c │ │ │ │ ├── arm_min_no_idx_q15.c │ │ │ │ ├── arm_min_no_idx_q31.c │ │ │ │ ├── arm_min_no_idx_q7.c │ │ │ │ ├── arm_min_q15.c │ │ │ │ ├── arm_min_q31.c │ │ │ │ ├── arm_min_q7.c │ │ │ │ ├── arm_mse_f16.c │ │ │ │ ├── arm_mse_f32.c │ │ │ │ ├── arm_mse_f64.c │ │ │ │ ├── arm_mse_q15.c │ │ │ │ ├── arm_mse_q31.c │ │ │ │ ├── arm_mse_q7.c │ │ │ │ ├── arm_power_f16.c │ │ │ │ ├── arm_power_f32.c │ │ │ │ ├── arm_power_f64.c │ │ │ │ ├── arm_power_q15.c │ │ │ │ ├── arm_power_q31.c │ │ │ │ ├── arm_power_q7.c │ │ │ │ ├── arm_rms_f16.c │ │ │ │ ├── arm_rms_f32.c │ │ │ │ ├── arm_rms_q15.c │ │ │ │ ├── arm_rms_q31.c │ │ │ │ ├── arm_std_f16.c │ │ │ │ ├── arm_std_f32.c │ │ │ │ ├── arm_std_f64.c │ │ │ │ ├── arm_std_q15.c │ │ │ │ ├── arm_std_q31.c │ │ │ │ ├── arm_var_f16.c │ │ │ │ ├── arm_var_f32.c │ │ │ │ ├── arm_var_f64.c │ │ │ │ ├── arm_var_q15.c │ │ │ │ └── arm_var_q31.c │ │ │ │ ├── SupportFunctions │ │ │ │ ├── arm_barycenter_f16.c │ │ │ │ ├── arm_barycenter_f32.c │ │ │ │ ├── arm_bitonic_sort_f32.c │ │ │ │ ├── arm_bubble_sort_f32.c │ │ │ │ ├── arm_copy_f16.c │ │ │ │ ├── arm_copy_f32.c │ │ │ │ ├── arm_copy_f64.c │ │ │ │ ├── arm_copy_q15.c │ │ │ │ ├── arm_copy_q31.c │ │ │ │ ├── arm_copy_q7.c │ │ │ │ ├── arm_f16_to_float.c │ │ │ │ ├── arm_f16_to_q15.c │ │ │ │ ├── arm_fill_f16.c │ │ │ │ ├── arm_fill_f32.c │ │ │ │ ├── arm_fill_f64.c │ │ │ │ ├── arm_fill_q15.c │ │ │ │ ├── arm_fill_q31.c │ │ │ │ ├── arm_fill_q7.c │ │ │ │ ├── arm_float_to_f16.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_f16.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_weighted_sum_f16.c │ │ │ │ └── arm_weighted_sum_f32.c │ │ │ │ └── TransformFunctions │ │ │ │ ├── arm_bitreversal.c │ │ │ │ ├── arm_bitreversal2.c │ │ │ │ ├── arm_bitreversal_f16.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_f16.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_f16.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_f16.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_mfcc_f16.c │ │ │ │ ├── arm_mfcc_f32.c │ │ │ │ ├── arm_mfcc_init_f16.c │ │ │ │ ├── arm_mfcc_init_f32.c │ │ │ │ ├── arm_mfcc_init_q15.c │ │ │ │ ├── arm_mfcc_init_q31.c │ │ │ │ ├── arm_mfcc_q15.c │ │ │ │ ├── arm_mfcc_q31.c │ │ │ │ ├── arm_rfft_f32.c │ │ │ │ ├── arm_rfft_fast_f16.c │ │ │ │ ├── arm_rfft_fast_f32.c │ │ │ │ ├── arm_rfft_fast_f64.c │ │ │ │ ├── arm_rfft_fast_init_f16.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 │ │ ├── NN │ │ │ ├── Include │ │ │ │ ├── arm_nn_math_types.h │ │ │ │ ├── arm_nn_tables.h │ │ │ │ ├── arm_nn_types.h │ │ │ │ ├── arm_nnfunctions.h │ │ │ │ └── arm_nnsupportfunctions.h │ │ │ └── Source │ │ │ │ ├── ActivationFunctions │ │ │ │ ├── arm_nn_activations_q15.c │ │ │ │ ├── arm_nn_activations_q7.c │ │ │ │ ├── arm_relu6_s8.c │ │ │ │ ├── arm_relu_q15.c │ │ │ │ └── arm_relu_q7.c │ │ │ │ ├── BasicMathFunctions │ │ │ │ ├── arm_elementwise_add_s16.c │ │ │ │ ├── arm_elementwise_add_s8.c │ │ │ │ ├── arm_elementwise_mul_s16.c │ │ │ │ └── arm_elementwise_mul_s8.c │ │ │ │ ├── ConcatenationFunctions │ │ │ │ ├── arm_concatenation_s8_w.c │ │ │ │ ├── arm_concatenation_s8_x.c │ │ │ │ ├── arm_concatenation_s8_y.c │ │ │ │ └── arm_concatenation_s8_z.c │ │ │ │ ├── ConvolutionFunctions │ │ │ │ ├── arm_convolve_1_x_n_s8.c │ │ │ │ ├── arm_convolve_1x1_HWC_q7_fast_nonsquare.c │ │ │ │ ├── arm_convolve_1x1_s8_fast.c │ │ │ │ ├── arm_convolve_HWC_q15_basic.c │ │ │ │ ├── arm_convolve_HWC_q15_fast.c │ │ │ │ ├── arm_convolve_HWC_q15_fast_nonsquare.c │ │ │ │ ├── arm_convolve_HWC_q7_RGB.c │ │ │ │ ├── arm_convolve_HWC_q7_basic.c │ │ │ │ ├── arm_convolve_HWC_q7_basic_nonsquare.c │ │ │ │ ├── arm_convolve_HWC_q7_fast.c │ │ │ │ ├── arm_convolve_HWC_q7_fast_nonsquare.c │ │ │ │ ├── arm_convolve_fast_s16.c │ │ │ │ ├── arm_convolve_s16.c │ │ │ │ ├── arm_convolve_s8.c │ │ │ │ ├── arm_convolve_wrapper_s16.c │ │ │ │ ├── arm_convolve_wrapper_s8.c │ │ │ │ ├── arm_depthwise_conv_3x3_s8.c │ │ │ │ ├── arm_depthwise_conv_fast_s16.c │ │ │ │ ├── arm_depthwise_conv_s16.c │ │ │ │ ├── arm_depthwise_conv_s8.c │ │ │ │ ├── arm_depthwise_conv_s8_opt.c │ │ │ │ ├── arm_depthwise_conv_u8_basic_ver1.c │ │ │ │ ├── arm_depthwise_conv_wrapper_s16.c │ │ │ │ ├── arm_depthwise_conv_wrapper_s8.c │ │ │ │ ├── arm_depthwise_separable_conv_HWC_q7.c │ │ │ │ ├── arm_depthwise_separable_conv_HWC_q7_nonsquare.c │ │ │ │ ├── arm_nn_depthwise_conv_s8_core.c │ │ │ │ ├── arm_nn_mat_mult_kernel_q7_q15.c │ │ │ │ ├── arm_nn_mat_mult_kernel_q7_q15_reordered.c │ │ │ │ ├── arm_nn_mat_mult_kernel_s8_s16.c │ │ │ │ └── arm_nn_mat_mult_s8.c │ │ │ │ ├── FullyConnectedFunctions │ │ │ │ ├── arm_fully_connected_mat_q7_vec_q15.c │ │ │ │ ├── arm_fully_connected_mat_q7_vec_q15_opt.c │ │ │ │ ├── arm_fully_connected_q15.c │ │ │ │ ├── arm_fully_connected_q15_opt.c │ │ │ │ ├── arm_fully_connected_q7.c │ │ │ │ ├── arm_fully_connected_q7_opt.c │ │ │ │ ├── arm_fully_connected_s16.c │ │ │ │ └── arm_fully_connected_s8.c │ │ │ │ ├── NNSupportFunctions │ │ │ │ ├── arm_nn_accumulate_q7_to_q15.c │ │ │ │ ├── arm_nn_add_q7.c │ │ │ │ ├── arm_nn_depthwise_conv_nt_t_padded_s8.c │ │ │ │ ├── arm_nn_depthwise_conv_nt_t_s16.c │ │ │ │ ├── arm_nn_depthwise_conv_nt_t_s8.c │ │ │ │ ├── arm_nn_mat_mul_core_1x_s8.c │ │ │ │ ├── arm_nn_mat_mul_core_4x_s8.c │ │ │ │ ├── arm_nn_mat_mul_kernel_s16.c │ │ │ │ ├── arm_nn_mat_mult_nt_t_s8.c │ │ │ │ ├── arm_nn_mult_q15.c │ │ │ │ ├── arm_nn_mult_q7.c │ │ │ │ ├── arm_nn_vec_mat_mult_t_s16.c │ │ │ │ ├── arm_nn_vec_mat_mult_t_s8.c │ │ │ │ ├── arm_nn_vec_mat_mult_t_svdf_s8.c │ │ │ │ ├── arm_nntables.c │ │ │ │ ├── arm_q7_to_q15_no_shift.c │ │ │ │ ├── arm_q7_to_q15_reordered_no_shift.c │ │ │ │ ├── arm_q7_to_q15_reordered_with_offset.c │ │ │ │ └── arm_q7_to_q15_with_offset.c │ │ │ │ ├── PoolingFunctions │ │ │ │ ├── arm_avgpool_s16.c │ │ │ │ ├── arm_avgpool_s8.c │ │ │ │ ├── arm_max_pool_s16.c │ │ │ │ ├── arm_max_pool_s8.c │ │ │ │ └── arm_pool_q7_HWC.c │ │ │ │ ├── ReshapeFunctions │ │ │ │ └── arm_reshape_s8.c │ │ │ │ ├── SVDFunctions │ │ │ │ ├── arm_svdf_s8.c │ │ │ │ └── arm_svdf_state_s16_s8.c │ │ │ │ └── SoftmaxFunctions │ │ │ │ ├── arm_nn_softmax_common_s8.c │ │ │ │ ├── arm_softmax_q15.c │ │ │ │ ├── arm_softmax_q7.c │ │ │ │ ├── arm_softmax_s16.c │ │ │ │ ├── arm_softmax_s8.c │ │ │ │ ├── arm_softmax_s8_s16.c │ │ │ │ ├── arm_softmax_u8.c │ │ │ │ └── arm_softmax_with_batch_q7.c │ │ └── sources.txt │ ├── LICENSE │ ├── LICENSE.3-clause-bsd-clear │ ├── README.md │ ├── classifier │ │ ├── ei_aligned_malloc.h │ │ ├── ei_classifier_config.h │ │ ├── ei_classifier_smooth.h │ │ ├── ei_classifier_types.h │ │ ├── ei_constants.h │ │ ├── ei_data_normalization.h │ │ ├── ei_model_types.h │ │ ├── ei_nms.h │ │ ├── ei_print_results.h │ │ ├── ei_quantize.h │ │ ├── ei_run_classifier.h │ │ ├── ei_run_classifier_c.cpp │ │ ├── ei_run_classifier_c.h │ │ ├── ei_run_classifier_image.h │ │ ├── ei_run_dsp.h │ │ ├── ei_signal_with_axes.h │ │ ├── ei_signal_with_range.h │ │ ├── inferencing_engines │ │ │ ├── akida.h │ │ │ ├── anomaly.h │ │ │ ├── aton.h │ │ │ ├── ceva_npn.h │ │ │ ├── drpai.h │ │ │ ├── engines.h │ │ │ ├── ethos_linux.h │ │ │ ├── memryx.h │ │ │ ├── nordic_axon.h │ │ │ ├── onnx_tidl.h │ │ │ ├── tensaiflow.h │ │ │ ├── tensorrt.h │ │ │ ├── tflite_eon.h │ │ │ ├── tflite_full.h │ │ │ ├── tflite_helper.h │ │ │ ├── tflite_micro.h │ │ │ └── tflite_tidl.h │ │ └── postprocessing │ │ │ ├── alignment │ │ │ ├── ei_alignment.hpp │ │ │ └── rectangular_lsap.hpp │ │ │ ├── ei_object_counting.h │ │ │ ├── ei_object_tracking.h │ │ │ ├── ei_performance_calibration.h │ │ │ ├── ei_postprocessing.h │ │ │ ├── ei_postprocessing_ai_hub.h │ │ │ ├── ei_postprocessing_common.h │ │ │ ├── ei_postprocessing_types.h │ │ │ └── tinyEKF │ │ │ ├── LICENSE.md │ │ │ ├── tinyekf.hpp │ │ │ └── tinyekf_custom.h │ ├── cmake │ │ ├── add_source.cmake │ │ ├── utils.cmake │ │ └── zephyr │ │ │ └── CMakeLists.txt │ ├── dsp │ │ ├── README.md │ │ ├── config.hpp │ │ ├── dct │ │ │ ├── .clang-format │ │ │ ├── fast-dct-fft.cpp │ │ │ └── fast-dct-fft.h │ │ ├── dsp_engines │ │ │ ├── ei_arm_cmsis_dsp.h │ │ │ ├── ei_ceva_dsp.h │ │ │ ├── ei_ceva_dsp_fixed.h │ │ │ ├── ei_esp_dsp.h │ │ │ └── ei_no_hw_dsp.h │ │ ├── ei_alloc.h │ │ ├── ei_dsp_handle.h │ │ ├── ei_eeg.hpp │ │ ├── ei_flatten.h │ │ ├── ei_hr.hpp │ │ ├── ei_profiler.h │ │ ├── ei_utils.h │ │ ├── ei_vector.h │ │ ├── image │ │ │ ├── image.hpp │ │ │ ├── processing.cpp │ │ │ └── processing.hpp │ │ ├── kissfft │ │ │ ├── .clang-format │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── kiss_fft.cpp │ │ │ ├── kiss_fft.h │ │ │ ├── kiss_fftr.cpp │ │ │ ├── kiss_fftr.h │ │ │ └── kissfft.h │ │ ├── memory.cpp │ │ ├── memory.hpp │ │ ├── numpy.hpp │ │ ├── numpy_types.h │ │ ├── returntypes.h │ │ ├── returntypes.hpp │ │ ├── spectral │ │ │ ├── feature.hpp │ │ │ ├── filters.hpp │ │ │ ├── fir_filter.hpp │ │ │ ├── processing.hpp │ │ │ ├── signal.hpp │ │ │ ├── spectral.hpp │ │ │ ├── wavelet.hpp │ │ │ └── wavelet_coeff.hpp │ │ └── speechpy │ │ │ ├── feature.hpp │ │ │ ├── functions.hpp │ │ │ ├── processing.hpp │ │ │ └── speechpy.hpp │ ├── porting │ │ ├── .clang-format │ │ ├── ambiq │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── android │ │ │ └── ei_classifier_porting.cpp │ │ ├── arduino │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── brickml │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── ceva-npn │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── clib │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── ei_classifier_porting.h │ │ ├── ei_logging.h │ │ ├── espressif │ │ │ ├── ESP-NN │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── Kconfig.projbuild │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── idf_component.yml │ │ │ │ ├── include │ │ │ │ │ ├── esp_nn.h │ │ │ │ │ ├── esp_nn_ansi_c.h │ │ │ │ │ ├── esp_nn_ansi_headers.h │ │ │ │ │ ├── esp_nn_defs.h │ │ │ │ │ ├── esp_nn_esp32p4.h │ │ │ │ │ ├── esp_nn_esp32s3.h │ │ │ │ │ └── esp_nn_generic_opt.h │ │ │ │ └── src │ │ │ │ │ ├── activation_functions │ │ │ │ │ ├── esp_nn_relu_ansi.c │ │ │ │ │ └── esp_nn_relu_s8_esp32s3.S │ │ │ │ │ ├── basic_math │ │ │ │ │ ├── esp_nn_add_ansi.c │ │ │ │ │ ├── esp_nn_add_s8_esp32s3.S │ │ │ │ │ ├── esp_nn_mul_ansi.c │ │ │ │ │ └── esp_nn_mul_s8_esp32s3.S │ │ │ │ │ ├── common │ │ │ │ │ ├── common_functions.h │ │ │ │ │ ├── esp_nn_common_functions_esp32s3.S │ │ │ │ │ ├── esp_nn_multiply_by_quantized_mult_esp32s3.S │ │ │ │ │ └── esp_nn_multiply_by_quantized_mult_ver1_esp32s3.S │ │ │ │ │ ├── convolution │ │ │ │ │ ├── esp_nn_conv_ansi.c │ │ │ │ │ ├── esp_nn_conv_esp32p4.c │ │ │ │ │ ├── esp_nn_conv_esp32s3.c │ │ │ │ │ ├── esp_nn_conv_opt.c │ │ │ │ │ ├── esp_nn_conv_s16_mult4_1x1_esp32s3.S │ │ │ │ │ ├── esp_nn_conv_s16_mult8_esp32s3.S │ │ │ │ │ ├── esp_nn_conv_s8_filter_aligned_input_padded_esp32s3.S │ │ │ │ │ ├── esp_nn_conv_s8_mult8_1x1_esp32s3.S │ │ │ │ │ ├── esp_nn_depthwise_conv_ansi.c │ │ │ │ │ ├── esp_nn_depthwise_conv_opt.c │ │ │ │ │ ├── esp_nn_depthwise_conv_s16_mult1_3x3_esp32s3.S │ │ │ │ │ ├── esp_nn_depthwise_conv_s16_mult1_3x3_no_pad_esp32s3.S │ │ │ │ │ ├── esp_nn_depthwise_conv_s16_mult1_esp32s3.S │ │ │ │ │ ├── esp_nn_depthwise_conv_s16_mult4_esp32s3.S │ │ │ │ │ ├── esp_nn_depthwise_conv_s16_mult8_3x3_esp32s3.S │ │ │ │ │ ├── esp_nn_depthwise_conv_s16_mult8_esp32s3.S │ │ │ │ │ ├── esp_nn_depthwise_conv_s8_esp32s3.c │ │ │ │ │ └── esp_nn_depthwise_conv_s8_mult1_3x3_padded_esp32s3.S │ │ │ │ │ ├── fully_connected │ │ │ │ │ ├── esp_nn_fully_connected_ansi.c │ │ │ │ │ └── esp_nn_fully_connected_s8_esp32s3.S │ │ │ │ │ ├── pooling │ │ │ │ │ ├── esp_nn_avg_pool_ansi.c │ │ │ │ │ ├── esp_nn_avg_pool_s8_esp32s3.S │ │ │ │ │ ├── esp_nn_max_pool_ansi.c │ │ │ │ │ └── esp_nn_max_pool_s8_esp32s3.S │ │ │ │ │ └── softmax │ │ │ │ │ ├── esp_nn_softmax_ansi.c │ │ │ │ │ ├── esp_nn_softmax_opt.c │ │ │ │ │ └── softmax_common.h │ │ │ ├── debug_log.cpp │ │ │ ├── ei_classifier_porting.cpp │ │ │ └── esp-dsp │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── modules │ │ │ │ ├── common │ │ │ │ ├── include │ │ │ │ │ ├── dsp_common.h │ │ │ │ │ ├── dsp_err.h │ │ │ │ │ ├── dsp_err_codes.h │ │ │ │ │ ├── dsp_platform.h │ │ │ │ │ ├── dsp_tests.h │ │ │ │ │ └── dsp_types.h │ │ │ │ └── misc │ │ │ │ │ └── dsps_pwroftwo.cpp │ │ │ │ └── fft │ │ │ │ ├── fixed │ │ │ │ ├── dsps_fft2r_sc16_ae32.S │ │ │ │ ├── dsps_fft2r_sc16_aes3.S │ │ │ │ ├── dsps_fft2r_sc16_ansi.c │ │ │ │ └── dsps_fft2r_sc16_arp4.S │ │ │ │ ├── float │ │ │ │ ├── dsps_bit_rev_lookup_fc32_aes3.S │ │ │ │ ├── dsps_fft2r_bitrev_tables_fc32.c │ │ │ │ ├── dsps_fft2r_fc32_ae32.c │ │ │ │ ├── dsps_fft2r_fc32_ae32_.S │ │ │ │ ├── dsps_fft2r_fc32_aes3_.S │ │ │ │ ├── dsps_fft2r_fc32_ansi.c │ │ │ │ └── dsps_fft2r_fc32_arp4.S │ │ │ │ └── include │ │ │ │ ├── dsps_fft2r.h │ │ │ │ ├── dsps_fft2r_platform.h │ │ │ │ └── dsps_fft_tables.h │ │ ├── ethos-core-driver │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.MD │ │ │ ├── SECURITY.md │ │ │ ├── include │ │ │ │ ├── ethosu_driver.h │ │ │ │ ├── ethosu_types.h │ │ │ │ └── pmu_ethosu.h │ │ │ ├── src │ │ │ │ ├── ehtosu_config_u65.h │ │ │ │ ├── ethosu55_interface.h │ │ │ │ ├── ethosu65_interface.h │ │ │ │ ├── ethosu85_interface.h │ │ │ │ ├── ethosu_config_u55.h │ │ │ │ ├── ethosu_config_u85.h │ │ │ │ ├── ethosu_device.h │ │ │ │ ├── ethosu_device_u55_u65.c │ │ │ │ ├── ethosu_device_u85.c │ │ │ │ ├── ethosu_driver.c │ │ │ │ ├── ethosu_interface.h │ │ │ │ ├── ethosu_log.h │ │ │ │ └── ethosu_pmu.c │ │ │ └── version.txt │ │ ├── himax-we2 │ │ │ ├── debug_log.cpp │ │ │ ├── ei_classifier_porting.cpp │ │ │ └── ethosu_driver.c │ │ ├── himax │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── iar │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── infineon-psoc62 │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── mbed │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── mingw32 │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── particle │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── posix │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── raspberry │ │ │ └── ei_classifier_porting.cpp │ │ ├── renesas-ra │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── seeed-vision-ai │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── silabs │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── sony │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── stm32-cubeai │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── synaptics │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ ├── ti │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ │ └── zephyr │ │ │ ├── debug_log.cpp │ │ │ └── ei_classifier_porting.cpp │ ├── sources.txt │ ├── tensorflow │ │ ├── LICENSE │ │ └── lite │ │ │ ├── builtin_op_data.h │ │ │ ├── builtin_ops.h │ │ │ ├── c │ │ │ ├── builtin_op_data.h │ │ │ ├── c_api_types.h │ │ │ ├── common.c │ │ │ └── common.h │ │ │ ├── context_util.h │ │ │ ├── core │ │ │ ├── api │ │ │ │ ├── common.cc │ │ │ │ ├── error_reporter.cc │ │ │ │ ├── error_reporter.h │ │ │ │ ├── flatbuffer_conversions.cc │ │ │ │ ├── flatbuffer_conversions.h │ │ │ │ ├── op_resolver.cc │ │ │ │ ├── op_resolver.h │ │ │ │ ├── tensor_utils.cc │ │ │ │ └── tensor_utils.h │ │ │ └── c │ │ │ │ ├── builtin_op_data.h │ │ │ │ ├── c_api_types.h │ │ │ │ └── common.h │ │ │ ├── kernels │ │ │ ├── custom │ │ │ │ ├── tree_ensemble_classifier.cc │ │ │ │ └── tree_ensemble_classifier.h │ │ │ ├── internal │ │ │ │ ├── common.h │ │ │ │ ├── compatibility.h │ │ │ │ ├── cppmath.h │ │ │ │ ├── max.h │ │ │ │ ├── min.h │ │ │ │ ├── optimized │ │ │ │ │ └── neon_check.h │ │ │ │ ├── portable_tensor.h │ │ │ │ ├── portable_tensor_utils.cc │ │ │ │ ├── portable_tensor_utils.h │ │ │ │ ├── quantization_util.cc │ │ │ │ ├── quantization_util.h │ │ │ │ ├── reduce_common.h │ │ │ │ ├── reference │ │ │ │ │ ├── add.h │ │ │ │ │ ├── add_n.h │ │ │ │ │ ├── arg_min_max.h │ │ │ │ │ ├── batch_matmul.h │ │ │ │ │ ├── batch_to_space_nd.h │ │ │ │ │ ├── binary_function.h │ │ │ │ │ ├── broadcast_args.h │ │ │ │ │ ├── broadcast_to.h │ │ │ │ │ ├── ceil.h │ │ │ │ │ ├── comparisons.h │ │ │ │ │ ├── concatenation.h │ │ │ │ │ ├── conv.h │ │ │ │ │ ├── cumsum.h │ │ │ │ │ ├── depth_to_space.h │ │ │ │ │ ├── depthwiseconv_float.h │ │ │ │ │ ├── depthwiseconv_uint8.h │ │ │ │ │ ├── dequantize.h │ │ │ │ │ ├── div.h │ │ │ │ │ ├── elu.h │ │ │ │ │ ├── exp.h │ │ │ │ │ ├── fill.h │ │ │ │ │ ├── floor.h │ │ │ │ │ ├── floor_div.h │ │ │ │ │ ├── floor_mod.h │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ ├── hard_swish.h │ │ │ │ │ ├── integer_ops │ │ │ │ │ │ ├── add.h │ │ │ │ │ │ ├── conv.h │ │ │ │ │ │ ├── depthwise_conv.h │ │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ │ ├── l2normalization.h │ │ │ │ │ │ ├── logistic.h │ │ │ │ │ │ ├── mean.h │ │ │ │ │ │ ├── mul.h │ │ │ │ │ │ ├── pooling.h │ │ │ │ │ │ ├── tanh.h │ │ │ │ │ │ └── transpose_conv.h │ │ │ │ │ ├── l2normalization.h │ │ │ │ │ ├── leaky_relu.h │ │ │ │ │ ├── log_softmax.h │ │ │ │ │ ├── logistic.h │ │ │ │ │ ├── lstm_cell.h │ │ │ │ │ ├── maximum_minimum.h │ │ │ │ │ ├── mul.h │ │ │ │ │ ├── neg.h │ │ │ │ │ ├── pad.h │ │ │ │ │ ├── pooling.h │ │ │ │ │ ├── prelu.h │ │ │ │ │ ├── process_broadcast_shapes.h │ │ │ │ │ ├── quantize.h │ │ │ │ │ ├── reduce.h │ │ │ │ │ ├── requantize.h │ │ │ │ │ ├── resize_bilinear.h │ │ │ │ │ ├── resize_nearest_neighbor.h │ │ │ │ │ ├── round.h │ │ │ │ │ ├── scatter_nd.h │ │ │ │ │ ├── select.h │ │ │ │ │ ├── slice.h │ │ │ │ │ ├── softmax.h │ │ │ │ │ ├── space_to_batch_nd.h │ │ │ │ │ ├── space_to_depth.h │ │ │ │ │ ├── strided_slice.h │ │ │ │ │ ├── sub.h │ │ │ │ │ ├── tanh.h │ │ │ │ │ ├── transpose.h │ │ │ │ │ └── transpose_conv.h │ │ │ │ ├── reference_portable_tensor_utils.cc │ │ │ │ ├── reference_portable_tensor_utils.h │ │ │ │ ├── reference_portable_tensor_utils_impl.h │ │ │ │ ├── runtime_shape.h │ │ │ │ ├── strided_slice_logic.h │ │ │ │ ├── tensor_ctypes.h │ │ │ │ ├── tensor_utils.cc │ │ │ │ └── types.h │ │ │ ├── kernel_util.h │ │ │ ├── kernel_util_lite.cc │ │ │ ├── op_macros.h │ │ │ └── padding.h │ │ │ ├── micro │ │ │ ├── all_ops_resolver.cc │ │ │ ├── all_ops_resolver.h │ │ │ ├── compatibility.h │ │ │ ├── debug_log.h │ │ │ ├── fake_micro_context.cc │ │ │ ├── fake_micro_context.h │ │ │ ├── flatbuffer_conversions_bridge.cc │ │ │ ├── flatbuffer_conversions_bridge.h │ │ │ ├── flatbuffer_utils.cc │ │ │ ├── flatbuffer_utils.h │ │ │ ├── ibuffer_allocator.h │ │ │ ├── kernels │ │ │ │ ├── activation_utils.h │ │ │ │ ├── activations.cc │ │ │ │ ├── activations.h │ │ │ │ ├── activations_common.cc │ │ │ │ ├── add.cc │ │ │ │ ├── add.h │ │ │ │ ├── add_common.cc │ │ │ │ ├── add_n.cc │ │ │ │ ├── arg_min_max.cc │ │ │ │ ├── assign_variable.cc │ │ │ │ ├── batch_matmul.cc │ │ │ │ ├── batch_to_space_nd.cc │ │ │ │ ├── broadcast_args.cc │ │ │ │ ├── broadcast_to.cc │ │ │ │ ├── call_once.cc │ │ │ │ ├── cast.cc │ │ │ │ ├── ceil.cc │ │ │ │ ├── circular_buffer.cc │ │ │ │ ├── circular_buffer.h │ │ │ │ ├── circular_buffer_common.cc │ │ │ │ ├── circular_buffer_flexbuffers_generated_data.h │ │ │ │ ├── comparisons.cc │ │ │ │ ├── complex_abs.cc │ │ │ │ ├── concatenation.cc │ │ │ │ ├── conv.cc │ │ │ │ ├── conv.h │ │ │ │ ├── conv_common.cc │ │ │ │ ├── conv_test.h │ │ │ │ ├── cumsum.cc │ │ │ │ ├── depth_to_space.cc │ │ │ │ ├── depthwise_conv.cc │ │ │ │ ├── depthwise_conv.h │ │ │ │ ├── depthwise_conv_common.cc │ │ │ │ ├── dequantize.cc │ │ │ │ ├── dequantize.h │ │ │ │ ├── dequantize_common.cc │ │ │ │ ├── detection_postprocess.cc │ │ │ │ ├── detection_postprocess_flexbuffers_generated_data.h │ │ │ │ ├── div.cc │ │ │ │ ├── elementwise.cc │ │ │ │ ├── elu.cc │ │ │ │ ├── ethosu.cc │ │ │ │ ├── ethosu.h │ │ │ │ ├── exp.cc │ │ │ │ ├── expand_dims.cc │ │ │ │ ├── fill.cc │ │ │ │ ├── floor.cc │ │ │ │ ├── floor_div.cc │ │ │ │ ├── floor_mod.cc │ │ │ │ ├── fully_connected.cc │ │ │ │ ├── fully_connected.h │ │ │ │ ├── fully_connected_common.cc │ │ │ │ ├── gather.cc │ │ │ │ ├── gather_nd.cc │ │ │ │ ├── hard_swish.cc │ │ │ │ ├── hard_swish.h │ │ │ │ ├── hard_swish_common.cc │ │ │ │ ├── if.cc │ │ │ │ ├── kernel_runner.cc │ │ │ │ ├── kernel_runner.h │ │ │ │ ├── kernel_util.h │ │ │ │ ├── kernel_util_micro.cc │ │ │ │ ├── l2_pool_2d.cc │ │ │ │ ├── l2norm.cc │ │ │ │ ├── leaky_relu.cc │ │ │ │ ├── leaky_relu.h │ │ │ │ ├── leaky_relu_common.cc │ │ │ │ ├── log_softmax.cc │ │ │ │ ├── logical.cc │ │ │ │ ├── logical.h │ │ │ │ ├── logical_common.cc │ │ │ │ ├── logistic.cc │ │ │ │ ├── logistic.h │ │ │ │ ├── logistic_common.cc │ │ │ │ ├── lstm_eval.cc │ │ │ │ ├── lstm_eval.h │ │ │ │ ├── lstm_eval_test.h │ │ │ │ ├── lstm_shared.h │ │ │ │ ├── maximum_minimum.cc │ │ │ │ ├── micro_ops.h │ │ │ │ ├── micro_tensor_utils.cc │ │ │ │ ├── micro_tensor_utils.h │ │ │ │ ├── mirror_pad.cc │ │ │ │ ├── mli_function_specializations.h │ │ │ │ ├── mli_interface.cc │ │ │ │ ├── mli_interface.h │ │ │ │ ├── mli_slicers.cc │ │ │ │ ├── mli_slicers.h │ │ │ │ ├── mli_tf_utils.h │ │ │ │ ├── mul.cc │ │ │ │ ├── mul.h │ │ │ │ ├── mul_common.cc │ │ │ │ ├── neg.cc │ │ │ │ ├── pack.cc │ │ │ │ ├── pad.cc │ │ │ │ ├── pad.h │ │ │ │ ├── pooling.cc │ │ │ │ ├── pooling.h │ │ │ │ ├── pooling_common.cc │ │ │ │ ├── prelu.cc │ │ │ │ ├── prelu.h │ │ │ │ ├── prelu_common.cc │ │ │ │ ├── quantize.cc │ │ │ │ ├── quantize.h │ │ │ │ ├── quantize_common.cc │ │ │ │ ├── read_variable.cc │ │ │ │ ├── real.cc │ │ │ │ ├── reduce.cc │ │ │ │ ├── reduce.h │ │ │ │ ├── reduce_common.cc │ │ │ │ ├── reshape.cc │ │ │ │ ├── resize_bilinear.cc │ │ │ │ ├── resize_nearest_neighbor.cc │ │ │ │ ├── rfft2d.cc │ │ │ │ ├── round.cc │ │ │ │ ├── scatter_nd.cc │ │ │ │ ├── scratch_buf_mgr.cc │ │ │ │ ├── scratch_buf_mgr.h │ │ │ │ ├── scratch_buffers.cc │ │ │ │ ├── scratch_buffers.h │ │ │ │ ├── select.cc │ │ │ │ ├── shape.cc │ │ │ │ ├── slice.cc │ │ │ │ ├── softmax.cc │ │ │ │ ├── softmax.h │ │ │ │ ├── softmax_common.cc │ │ │ │ ├── space_to_batch_nd.cc │ │ │ │ ├── space_to_depth.cc │ │ │ │ ├── split.cc │ │ │ │ ├── split_v.cc │ │ │ │ ├── squared_difference.cc │ │ │ │ ├── squeeze.cc │ │ │ │ ├── strided_slice.cc │ │ │ │ ├── sub.cc │ │ │ │ ├── sub.h │ │ │ │ ├── sub_common.cc │ │ │ │ ├── svdf.cc │ │ │ │ ├── svdf.h │ │ │ │ ├── svdf_common.cc │ │ │ │ ├── tanh.cc │ │ │ │ ├── tile.cc │ │ │ │ ├── topk_v2.cc │ │ │ │ ├── transpose.cc │ │ │ │ ├── transpose_conv.cc │ │ │ │ ├── tree_ensemble_classifier.cc │ │ │ │ ├── tree_ensemble_classifier.h │ │ │ │ ├── unidirectional_sequence_lstm.cc │ │ │ │ ├── unpack.cc │ │ │ │ ├── var_handle.cc │ │ │ │ ├── while.cc │ │ │ │ └── zeros_like.cc │ │ │ ├── memory_helpers.cc │ │ │ ├── memory_helpers.h │ │ │ ├── memory_planner │ │ │ │ ├── greedy_memory_planner.cc │ │ │ │ ├── greedy_memory_planner.h │ │ │ │ ├── linear_memory_planner.cc │ │ │ │ ├── linear_memory_planner.h │ │ │ │ ├── memory_plan_struct.h │ │ │ │ ├── micro_memory_planner.h │ │ │ │ ├── non_persistent_buffer_planner_shim.cc │ │ │ │ └── non_persistent_buffer_planner_shim.h │ │ │ ├── micro_allocation_info.cc │ │ │ ├── micro_allocation_info.h │ │ │ ├── micro_allocator.cc │ │ │ ├── micro_allocator.h │ │ │ ├── micro_arena_constants.h │ │ │ ├── micro_context.cc │ │ │ ├── micro_context.h │ │ │ ├── micro_error_reporter.cc │ │ │ ├── micro_error_reporter.h │ │ │ ├── micro_graph.cc │ │ │ ├── micro_graph.h │ │ │ ├── micro_interpreter.cc │ │ │ ├── micro_interpreter.h │ │ │ ├── micro_log.cc │ │ │ ├── micro_log.h │ │ │ ├── micro_mutable_op_resolver.h │ │ │ ├── micro_op_resolver.h │ │ │ ├── micro_profiler.cc │ │ │ ├── micro_profiler.h │ │ │ ├── micro_profiler_interface.h │ │ │ ├── micro_resource_variable.cc │ │ │ ├── micro_resource_variable.h │ │ │ ├── micro_string.cc │ │ │ ├── micro_string.h │ │ │ ├── micro_time.cc │ │ │ ├── micro_time.h │ │ │ ├── micro_utils.cc │ │ │ ├── micro_utils.h │ │ │ ├── mock_micro_graph.cc │ │ │ ├── mock_micro_graph.h │ │ │ ├── non_persistent_arena_buffer_allocator.cc │ │ │ ├── non_persistent_arena_buffer_allocator.h │ │ │ ├── op_resolver_bridge.cc │ │ │ ├── op_resolver_bridge.h │ │ │ ├── persistent_arena_buffer_allocator.cc │ │ │ ├── persistent_arena_buffer_allocator.h │ │ │ ├── recording_micro_allocator.cc │ │ │ ├── recording_micro_allocator.h │ │ │ ├── recording_micro_interpreter.h │ │ │ ├── recording_single_arena_buffer_allocator.cc │ │ │ ├── recording_single_arena_buffer_allocator.h │ │ │ ├── schema_utils.cc │ │ │ ├── single_arena_buffer_allocator.cc │ │ │ ├── single_arena_buffer_allocator.h │ │ │ ├── system_setup.cc │ │ │ ├── system_setup.h │ │ │ ├── test_helper_custom_ops.cc │ │ │ ├── test_helper_custom_ops.h │ │ │ ├── test_helpers.cc │ │ │ └── test_helpers.h │ │ │ ├── portable_type_to_tflitetype.h │ │ │ └── schema │ │ │ ├── schema_generated.h │ │ │ ├── schema_generated_full.h │ │ │ └── schema_utils.h │ └── third_party │ │ ├── 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 │ │ │ ├── fb_allocator.h │ │ │ ├── fb_array.h │ │ │ ├── fb_base.h │ │ │ ├── fb_buffer.h │ │ │ ├── fb_buffer_ref.h │ │ │ ├── fb_default_allocator.h │ │ │ ├── fb_detached_buffer.h │ │ │ ├── fb_flatbuffer_builder.h │ │ │ ├── fb_stl_emulation.h │ │ │ ├── fb_string.h │ │ │ ├── fb_struct.h │ │ │ ├── fb_table.h │ │ │ ├── fb_util.h │ │ │ ├── fb_vector.h │ │ │ ├── fb_vector_downward.h │ │ │ ├── fb_verifier.h │ │ │ ├── flatbuffers.h │ │ │ └── flexbuffers.h │ │ ├── gemmlowp │ │ ├── LICENSE │ │ ├── fixedpoint │ │ │ ├── fixedpoint.h │ │ │ ├── fixedpoint_neon.h │ │ │ └── fixedpoint_sse.h │ │ └── internal │ │ │ └── detect_platform.h │ │ ├── incbin │ │ └── incbin.h │ │ └── ruy │ │ └── ruy │ │ └── profiler │ │ └── instrumentation.h ├── model-parameters │ ├── anomaly_metadata.h │ ├── model_metadata.h │ └── model_variables.h └── tflite-model │ ├── tflite_learn_43_3_compiled.cpp │ ├── tflite_learn_43_3_compiled.h │ └── trained_model_ops_define.h ├── firmware-sdk ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── QCBOR │ ├── inc │ │ ├── UsefulBuf.h │ │ └── qcbor.h │ └── src │ │ ├── UsefulBuf.c │ │ ├── ieee754.c │ │ ├── ieee754.h │ │ ├── qcbor_decode.c │ │ └── qcbor_encode.c ├── README.md ├── at-server │ ├── ei_at_command_set.cpp │ ├── ei_at_command_set.h │ ├── ei_at_history.h │ ├── ei_at_parser.cpp │ ├── ei_at_parser.h │ ├── ei_at_server.cpp │ ├── ei_at_server.h │ ├── ei_at_server_singleton.cpp │ └── ei_line_buffer.h ├── at_base64_lib.cpp ├── at_base64_lib.h ├── ei_camera_interface.h ├── ei_config_types.h ├── ei_device_info_lib.h ├── ei_device_interface.h ├── ei_device_lib.cpp ├── ei_device_lib.h ├── ei_device_memory.h ├── ei_fusion.cpp ├── ei_fusion.h ├── ei_image_lib.cpp ├── ei_image_lib.h ├── ei_image_nn.h ├── jpeg │ ├── JPEGENC.cpp │ ├── JPEGENC.h │ ├── encode_as_jpg.h │ └── jpeg.h ├── remote-mgmt.cpp ├── remote-mgmt.h └── sensor-aq │ ├── sensor_aq.cpp │ ├── sensor_aq.h │ ├── sensor_aq_none.cpp │ └── sensor_aq_none.h ├── overlay-remote-ingestion.conf ├── prj.conf └── src ├── CMakeLists.txt ├── ei_at_handlers.cpp ├── ei_at_handlers.h ├── ei_device_nrf91.cpp ├── ei_device_nrf91.h ├── ei_memory.cpp ├── ei_memory.h ├── ei_sampler.cpp ├── ei_sampler.h ├── ei_ws_client.cpp ├── ei_ws_client.h ├── inference ├── CMakeLists.txt ├── ei_run_fusion_impulse.cpp └── ei_run_impulse.h ├── main.cpp └── sensors ├── CMakeLists.txt ├── ei_accelerometer.cpp ├── ei_accelerometer.h ├── ei_environment.cpp ├── ei_environment.h ├── ei_fusion_sensors_config.h ├── ei_light.cpp └── ei_light.h /.dockerignore: -------------------------------------------------------------------------------- 1 | # Ignore everything 2 | * 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/Dockerfile -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/Kconfig -------------------------------------------------------------------------------- /LICENSE.3-clause-bsd-clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/LICENSE.3-clause-bsd-clear -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/README.md -------------------------------------------------------------------------------- /boards/thingy91_nrf9160_ns.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/boards/thingy91_nrf9160_ns.overlay -------------------------------------------------------------------------------- /child_image/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/child_image/prj.conf -------------------------------------------------------------------------------- /connectivity_bridge/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/CMakeLists.txt -------------------------------------------------------------------------------- /connectivity_bridge/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/Kconfig -------------------------------------------------------------------------------- /connectivity_bridge/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/README.rst -------------------------------------------------------------------------------- /connectivity_bridge/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/app.overlay -------------------------------------------------------------------------------- /connectivity_bridge/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/prj.conf -------------------------------------------------------------------------------- /connectivity_bridge/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/sample.yaml -------------------------------------------------------------------------------- /connectivity_bridge/src/disk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/disk/CMakeLists.txt -------------------------------------------------------------------------------- /connectivity_bridge/src/disk/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/disk/config.c -------------------------------------------------------------------------------- /connectivity_bridge/src/disk/readme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/disk/readme.c -------------------------------------------------------------------------------- /connectivity_bridge/src/disk/thingy91_cdc_acm.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/disk/thingy91_cdc_acm.cat -------------------------------------------------------------------------------- /connectivity_bridge/src/disk/thingy91_cdc_acm.cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/disk/thingy91_cdc_acm.cat.c -------------------------------------------------------------------------------- /connectivity_bridge/src/disk/thingy91_cdc_acm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/disk/thingy91_cdc_acm.inf -------------------------------------------------------------------------------- /connectivity_bridge/src/disk/thingy91_cdc_acm.inf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/disk/thingy91_cdc_acm.inf.c -------------------------------------------------------------------------------- /connectivity_bridge/src/events/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/CMakeLists.txt -------------------------------------------------------------------------------- /connectivity_bridge/src/events/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/Kconfig -------------------------------------------------------------------------------- /connectivity_bridge/src/events/ble_ctrl_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/ble_ctrl_event.c -------------------------------------------------------------------------------- /connectivity_bridge/src/events/ble_ctrl_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/ble_ctrl_event.h -------------------------------------------------------------------------------- /connectivity_bridge/src/events/ble_data_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/ble_data_event.c -------------------------------------------------------------------------------- /connectivity_bridge/src/events/ble_data_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/ble_data_event.h -------------------------------------------------------------------------------- /connectivity_bridge/src/events/cdc_data_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/cdc_data_event.c -------------------------------------------------------------------------------- /connectivity_bridge/src/events/cdc_data_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/cdc_data_event.h -------------------------------------------------------------------------------- /connectivity_bridge/src/events/fs_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/fs_event.c -------------------------------------------------------------------------------- /connectivity_bridge/src/events/fs_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/fs_event.h -------------------------------------------------------------------------------- /connectivity_bridge/src/events/module_state_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/module_state_event.c -------------------------------------------------------------------------------- /connectivity_bridge/src/events/module_state_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/module_state_event.h -------------------------------------------------------------------------------- /connectivity_bridge/src/events/peer_conn_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/peer_conn_event.c -------------------------------------------------------------------------------- /connectivity_bridge/src/events/peer_conn_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/peer_conn_event.h -------------------------------------------------------------------------------- /connectivity_bridge/src/events/power_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/power_event.c -------------------------------------------------------------------------------- /connectivity_bridge/src/events/power_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/power_event.h -------------------------------------------------------------------------------- /connectivity_bridge/src/events/uart_data_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/uart_data_event.c -------------------------------------------------------------------------------- /connectivity_bridge/src/events/uart_data_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/events/uart_data_event.h -------------------------------------------------------------------------------- /connectivity_bridge/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/main.c -------------------------------------------------------------------------------- /connectivity_bridge/src/modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/modules/CMakeLists.txt -------------------------------------------------------------------------------- /connectivity_bridge/src/modules/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/modules/Kconfig -------------------------------------------------------------------------------- /connectivity_bridge/src/modules/ble_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/modules/ble_handler.c -------------------------------------------------------------------------------- /connectivity_bridge/src/modules/fs_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/modules/fs_handler.c -------------------------------------------------------------------------------- /connectivity_bridge/src/modules/power_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/modules/power_handler.c -------------------------------------------------------------------------------- /connectivity_bridge/src/modules/uart_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/modules/uart_handler.c -------------------------------------------------------------------------------- /connectivity_bridge/src/modules/usb_cdc_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/connectivity_bridge/src/modules/usb_cdc_handler.c -------------------------------------------------------------------------------- /doc/online-mqtt-client-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/doc/online-mqtt-client-connect.png -------------------------------------------------------------------------------- /doc/online-mqtt-client-messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/doc/online-mqtt-client-messages.png -------------------------------------------------------------------------------- /doc/online-mqtt-client-subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/doc/online-mqtt-client-subscribe.png -------------------------------------------------------------------------------- /doc/online-mqtt-client-topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/doc/online-mqtt-client-topic.png -------------------------------------------------------------------------------- /doc/thingy91-swd-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/doc/thingy91-swd-select.png -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/.gitignore -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/.mbedignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/.mbedignore -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/cachel1_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/cachel1_armv7.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/cmsis_armclang_ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/cmsis_armclang_ltm.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/cmsis_version.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_armv81mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_armv81mml.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_armv8mml.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm0.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm0plus.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm1.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm23.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm3.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm33.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm35p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm35p.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm4.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm55.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm55.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm7.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm85.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_cm85.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_sc000.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_sc300.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_starmc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/core_starmc1.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/mpu_armv7.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/mpu_armv8.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/pac_armv81.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/pac_armv81.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/pmu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/pmu_armv8.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/Core/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/Core/Include/tz_context.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_common_tables.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_common_tables_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_common_tables_f16.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_const_structs.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_const_structs_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_const_structs_f16.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_helium_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_helium_utils.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_math.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_f16.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_memory.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_types.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_types_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_types_f16.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_mve_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_mve_tables.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_mve_tables_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_mve_tables_f16.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_sorting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_sorting.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_fft.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_filtering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_filtering.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_math.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_math_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_math_f16.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/basic_math_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/basic_math_functions.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/basic_math_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/basic_math_functions_f16.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/bayes_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/bayes_functions.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/bayes_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/bayes_functions_f16.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/complex_math_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/complex_math_functions.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions_f16.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/debug.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/distance_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/distance_functions.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/distance_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/distance_functions_f16.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/fast_math_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/fast_math_functions.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/fast_math_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/fast_math_functions_f16.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/filtering_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/filtering_functions.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/filtering_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/filtering_functions_f16.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/interpolation_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/interpolation_functions.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/matrix_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/matrix_functions.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/matrix_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/matrix_functions_f16.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/matrix_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/matrix_utils.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/quaternion_math_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/quaternion_math_functions.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/statistics_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/statistics_functions.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/statistics_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/statistics_functions_f16.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/support_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/support_functions.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/support_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/support_functions_f16.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/svm_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/svm_defines.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/svm_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/svm_functions.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/svm_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/svm_functions_f16.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/transform_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/transform_functions.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/transform_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/transform_functions_f16.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Include/dsp/utils.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/PrivateInclude/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/PrivateInclude/README.md -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f16.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f32.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f64.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q15.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q31.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q7.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f16.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f32.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f64.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q15.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q31.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q7.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u16.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u32.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u8.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_clip_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_clip_q7.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_q7.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_not_u16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_not_u16.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_not_u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_not_u32.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_not_u8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_not_u8.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u16.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u32.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u8.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_f16.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_f32.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_f64.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_q15.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_q31.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_q7.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_xor_u16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_xor_u16.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_xor_u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_xor_u32.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_xor_u8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_xor_u8.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_common_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_common_tables.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_const_structs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_const_structs.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_mve_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_mve_tables.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_cos_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_cos_f32.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_cos_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_cos_q15.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_cos_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_cos_q31.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sin_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sin_f32.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sin_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sin_q15.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sin_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sin_q31.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sqrt_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sqrt_q15.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sqrt_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_sqrt_q31.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vexp_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vexp_f16.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vexp_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vexp_f32.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vexp_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vexp_f64.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vlog_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vlog_f16.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vlog_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vlog_f32.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vlog_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vlog_f64.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vlog_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vlog_q15.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vlog_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FastMathFunctions/arm_vlog_q31.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_conv_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_conv_q7.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_f16.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_f32.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_f64.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_q15.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_q31.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_fir_q7.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_lms_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_lms_f32.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_lms_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_lms_q15.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_lms_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/FilteringFunctions/arm_lms_q31.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_qr_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_qr_f16.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_qr_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_qr_f32.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_qr_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/MatrixFunctions/arm_mat_qr_f64.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_max_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_max_q7.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_min_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_min_q7.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_mse_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/StatisticsFunctions/arm_mse_q7.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_f16.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_f32.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_f64.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q15.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q31.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q7.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_f16.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_f32.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_f64.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q15.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q31.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q7.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q15_to_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q15_to_q7.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q31_to_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q31_to_q7.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q7_to_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q7_to_q15.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q7_to_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_q7_to_q31.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_sort_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_sort_f32.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/NN/Include/arm_nn_math_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/NN/Include/arm_nn_math_types.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/NN/Include/arm_nn_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/NN/Include/arm_nn_tables.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/NN/Include/arm_nn_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/NN/Include/arm_nn_types.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/NN/Include/arm_nnfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/NN/Include/arm_nnfunctions.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/NN/Include/arm_nnsupportfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/NN/Include/arm_nnsupportfunctions.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/NN/Source/ActivationFunctions/arm_relu_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/NN/Source/ActivationFunctions/arm_relu_q7.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/NN/Source/NNSupportFunctions/arm_nntables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/NN/Source/NNSupportFunctions/arm_nntables.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/NN/Source/PoolingFunctions/arm_avgpool_s8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/NN/Source/PoolingFunctions/arm_avgpool_s8.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/NN/Source/ReshapeFunctions/arm_reshape_s8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/NN/Source/ReshapeFunctions/arm_reshape_s8.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/NN/Source/SVDFunctions/arm_svdf_s8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/NN/Source/SVDFunctions/arm_svdf_s8.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/NN/Source/SoftmaxFunctions/arm_softmax_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/NN/Source/SoftmaxFunctions/arm_softmax_q7.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/NN/Source/SoftmaxFunctions/arm_softmax_s8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/NN/Source/SoftmaxFunctions/arm_softmax_s8.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/NN/Source/SoftmaxFunctions/arm_softmax_u8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/CMSIS/NN/Source/SoftmaxFunctions/arm_softmax_u8.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/CMSIS/sources.txt: -------------------------------------------------------------------------------- 1 | Created by update_tflite.sh 2 | -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/LICENSE -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/LICENSE.3-clause-bsd-clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/LICENSE.3-clause-bsd-clear -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/README.md -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/ei_aligned_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/ei_aligned_malloc.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/ei_classifier_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/ei_classifier_config.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/ei_classifier_smooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/ei_classifier_smooth.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/ei_classifier_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/ei_classifier_types.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/ei_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/ei_constants.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/ei_data_normalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/ei_data_normalization.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/ei_model_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/ei_model_types.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/ei_nms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/ei_nms.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/ei_print_results.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/ei_print_results.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/ei_quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/ei_quantize.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/ei_run_classifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/ei_run_classifier.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/ei_run_classifier_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/ei_run_classifier_c.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/ei_run_classifier_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/ei_run_classifier_c.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/ei_run_classifier_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/ei_run_classifier_image.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/ei_run_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/ei_run_dsp.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/ei_signal_with_axes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/ei_signal_with_axes.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/ei_signal_with_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/ei_signal_with_range.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/inferencing_engines/akida.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/inferencing_engines/akida.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/inferencing_engines/anomaly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/inferencing_engines/anomaly.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/inferencing_engines/aton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/inferencing_engines/aton.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/inferencing_engines/ceva_npn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/inferencing_engines/ceva_npn.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/inferencing_engines/drpai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/inferencing_engines/drpai.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/inferencing_engines/engines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/inferencing_engines/engines.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/inferencing_engines/ethos_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/inferencing_engines/ethos_linux.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/inferencing_engines/memryx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/inferencing_engines/memryx.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/inferencing_engines/nordic_axon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/inferencing_engines/nordic_axon.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/inferencing_engines/onnx_tidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/inferencing_engines/onnx_tidl.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/inferencing_engines/tensaiflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/inferencing_engines/tensaiflow.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/inferencing_engines/tensorrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/inferencing_engines/tensorrt.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/inferencing_engines/tflite_eon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/inferencing_engines/tflite_eon.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/inferencing_engines/tflite_full.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/inferencing_engines/tflite_full.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/inferencing_engines/tflite_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/inferencing_engines/tflite_helper.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/inferencing_engines/tflite_micro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/inferencing_engines/tflite_micro.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/inferencing_engines/tflite_tidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/inferencing_engines/tflite_tidl.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/postprocessing/ei_object_counting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/postprocessing/ei_object_counting.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/postprocessing/ei_object_tracking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/postprocessing/ei_object_tracking.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/postprocessing/ei_postprocessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/postprocessing/ei_postprocessing.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/postprocessing/tinyEKF/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/postprocessing/tinyEKF/LICENSE.md -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/classifier/postprocessing/tinyEKF/tinyekf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/classifier/postprocessing/tinyEKF/tinyekf.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/cmake/add_source.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/cmake/add_source.cmake -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/cmake/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/cmake/utils.cmake -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/cmake/zephyr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/cmake/zephyr/CMakeLists.txt -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/README.md -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/config.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/dct/.clang-format: -------------------------------------------------------------------------------- 1 | "DisableFormat": true 2 | "SortIncludes": false 3 | -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/dct/fast-dct-fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/dct/fast-dct-fft.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/dct/fast-dct-fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/dct/fast-dct-fft.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/dsp_engines/ei_arm_cmsis_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/dsp_engines/ei_arm_cmsis_dsp.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/dsp_engines/ei_ceva_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/dsp_engines/ei_ceva_dsp.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/dsp_engines/ei_ceva_dsp_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/dsp_engines/ei_ceva_dsp_fixed.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/dsp_engines/ei_esp_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/dsp_engines/ei_esp_dsp.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/dsp_engines/ei_no_hw_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/dsp_engines/ei_no_hw_dsp.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/ei_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/ei_alloc.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/ei_dsp_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/ei_dsp_handle.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/ei_eeg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/ei_eeg.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/ei_flatten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/ei_flatten.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/ei_hr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/ei_hr.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/ei_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/ei_profiler.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/ei_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/ei_utils.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/ei_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/ei_vector.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/image/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/image/image.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/image/processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/image/processing.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/image/processing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/image/processing.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/kissfft/.clang-format: -------------------------------------------------------------------------------- 1 | "DisableFormat": true 2 | "SortIncludes": false 3 | -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/kissfft/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/kissfft/LICENSE -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/kissfft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/kissfft/README.md -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/kissfft/_kiss_fft_guts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/kissfft/_kiss_fft_guts.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/kissfft/kiss_fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/kissfft/kiss_fft.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/kissfft/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/kissfft/kiss_fft.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/kissfft/kiss_fftr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/kissfft/kiss_fftr.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/kissfft/kiss_fftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/kissfft/kiss_fftr.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/kissfft/kissfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/kissfft/kissfft.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/memory.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/memory.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/numpy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/numpy.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/numpy_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/numpy_types.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/returntypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/returntypes.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/returntypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/returntypes.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/spectral/feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/spectral/feature.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/spectral/filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/spectral/filters.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/spectral/fir_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/spectral/fir_filter.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/spectral/processing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/spectral/processing.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/spectral/signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/spectral/signal.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/spectral/spectral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/spectral/spectral.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/spectral/wavelet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/spectral/wavelet.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/spectral/wavelet_coeff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/spectral/wavelet_coeff.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/speechpy/feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/speechpy/feature.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/speechpy/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/speechpy/functions.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/speechpy/processing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/speechpy/processing.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/dsp/speechpy/speechpy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/dsp/speechpy/speechpy.hpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/.clang-format: -------------------------------------------------------------------------------- 1 | "DisableFormat": true 2 | "SortIncludes": false 3 | -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ambiq/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ambiq/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ambiq/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ambiq/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/android/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/android/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/arduino/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/arduino/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/arduino/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/arduino/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/brickml/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/brickml/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/brickml/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/brickml/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ceva-npn/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ceva-npn/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ceva-npn/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ceva-npn/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/clib/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/clib/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/clib/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/clib/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ei_classifier_porting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ei_classifier_porting.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ei_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ei_logging.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/CMakeLists.txt -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/CONTRIBUTING.md -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/Kconfig.projbuild -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/LICENSE -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/README.md -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/idf_component.yml -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/include/esp_nn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/include/esp_nn.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/include/esp_nn_ansi_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/include/esp_nn_ansi_c.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/include/esp_nn_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/include/esp_nn_defs.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/include/esp_nn_esp32p4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/include/esp_nn_esp32p4.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/include/esp_nn_esp32s3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/espressif/ESP-NN/include/esp_nn_esp32s3.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/espressif/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/espressif/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/espressif/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/espressif/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/espressif/esp-dsp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/espressif/esp-dsp/LICENSE -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/espressif/esp-dsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/espressif/esp-dsp/README.md -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ethos-core-driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ethos-core-driver/CMakeLists.txt -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ethos-core-driver/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ethos-core-driver/LICENSE.txt -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ethos-core-driver/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ethos-core-driver/README.MD -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ethos-core-driver/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ethos-core-driver/SECURITY.md -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ethos-core-driver/include/ethosu_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ethos-core-driver/include/ethosu_driver.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ethos-core-driver/include/ethosu_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ethos-core-driver/include/ethosu_types.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ethos-core-driver/include/pmu_ethosu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ethos-core-driver/include/pmu_ethosu.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ehtosu_config_u65.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ehtosu_config_u65.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_config_u55.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_config_u55.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_config_u85.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_config_u85.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_device.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_device_u85.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_device_u85.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_driver.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_interface.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_log.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_pmu.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ethos-core-driver/version.txt: -------------------------------------------------------------------------------- 1 | v1.24.11 -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/himax-we2/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/himax-we2/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/himax-we2/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/himax-we2/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/himax-we2/ethosu_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/himax-we2/ethosu_driver.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/himax/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/himax/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/himax/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/himax/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/iar/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/iar/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/iar/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/iar/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/infineon-psoc62/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/infineon-psoc62/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/infineon-psoc62/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/infineon-psoc62/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/mbed/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/mbed/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/mbed/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/mbed/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/mingw32/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/mingw32/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/mingw32/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/mingw32/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/particle/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/particle/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/particle/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/particle/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/posix/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/posix/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/posix/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/posix/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/raspberry/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/raspberry/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/renesas-ra/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/renesas-ra/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/renesas-ra/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/renesas-ra/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/seeed-vision-ai/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/seeed-vision-ai/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/seeed-vision-ai/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/seeed-vision-ai/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/silabs/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/silabs/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/silabs/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/silabs/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/sony/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/sony/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/sony/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/sony/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/stm32-cubeai/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/stm32-cubeai/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/stm32-cubeai/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/stm32-cubeai/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/synaptics/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/synaptics/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/synaptics/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/synaptics/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ti/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ti/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/ti/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/ti/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/zephyr/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/zephyr/debug_log.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/porting/zephyr/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/porting/zephyr/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/sources.txt -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/LICENSE -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/builtin_op_data.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/builtin_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/builtin_ops.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/c/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/c/builtin_op_data.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/c/c_api_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/c/c_api_types.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/c/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/c/common.c -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/c/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/c/common.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/context_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/context_util.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/core/api/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/core/api/common.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/core/api/error_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/core/api/error_reporter.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/core/api/error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/core/api/error_reporter.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/core/api/flatbuffer_conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/core/api/flatbuffer_conversions.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/core/api/op_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/core/api/op_resolver.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/core/api/op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/core/api/op_resolver.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/core/api/tensor_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/core/api/tensor_utils.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/core/api/tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/core/api/tensor_utils.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/core/c/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/core/c/builtin_op_data.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/core/c/c_api_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/core/c/c_api_types.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/core/c/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/core/c/common.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/kernels/internal/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/kernels/internal/common.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/kernels/internal/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/kernels/internal/compatibility.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/kernels/internal/cppmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/kernels/internal/cppmath.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/kernels/internal/max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/kernels/internal/max.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/kernels/internal/min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/kernels/internal/min.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/kernels/internal/reduce_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/kernels/internal/reduce_common.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/kernels/internal/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/kernels/internal/types.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/kernels/kernel_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/kernels/kernel_util.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/kernels/kernel_util_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/kernels/kernel_util_lite.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/kernels/op_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/kernels/op_macros.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/kernels/padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/kernels/padding.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/all_ops_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/all_ops_resolver.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/all_ops_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/all_ops_resolver.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/compatibility.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/debug_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/debug_log.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/fake_micro_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/fake_micro_context.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/fake_micro_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/fake_micro_context.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/flatbuffer_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/flatbuffer_utils.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/flatbuffer_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/flatbuffer_utils.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/ibuffer_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/ibuffer_allocator.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/activations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/activations.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/activations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/activations.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/add.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/add.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/add_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/add_common.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/add_n.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/add_n.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/arg_min_max.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/arg_min_max.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/batch_matmul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/batch_matmul.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/broadcast_args.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/broadcast_args.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/broadcast_to.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/broadcast_to.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/call_once.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/call_once.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/cast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/cast.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/ceil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/ceil.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/circular_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/circular_buffer.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/comparisons.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/comparisons.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/complex_abs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/complex_abs.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/concatenation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/concatenation.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/conv.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/conv.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/conv_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/conv_common.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/conv_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/conv_test.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/cumsum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/cumsum.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/depth_to_space.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/depth_to_space.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/depthwise_conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/depthwise_conv.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/depthwise_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/depthwise_conv.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/dequantize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/dequantize.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/dequantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/dequantize.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/div.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/div.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/elementwise.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/elementwise.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/elu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/elu.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/ethosu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/ethosu.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/ethosu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/ethosu.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/exp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/exp.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/expand_dims.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/expand_dims.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/fill.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/fill.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/floor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/floor.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/floor_div.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/floor_div.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/floor_mod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/floor_mod.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/fully_connected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/fully_connected.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/gather.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/gather.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/gather_nd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/gather_nd.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/hard_swish.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/hard_swish.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/hard_swish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/hard_swish.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/if.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/if.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/kernel_runner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/kernel_runner.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/kernel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/kernel_runner.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/kernel_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/kernel_util.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/l2_pool_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/l2_pool_2d.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/l2norm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/l2norm.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/leaky_relu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/leaky_relu.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/leaky_relu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/leaky_relu.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/log_softmax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/log_softmax.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/logical.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/logical.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/logical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/logical.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/logical_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/logical_common.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/logistic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/logistic.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/logistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/logistic.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/lstm_eval.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/lstm_eval.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/lstm_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/lstm_eval.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/lstm_eval_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/lstm_eval_test.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/lstm_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/lstm_shared.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/micro_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/micro_ops.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mirror_pad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mirror_pad.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_interface.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_interface.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_slicers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_slicers.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_slicers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_slicers.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_tf_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_tf_utils.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mul.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mul.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mul_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/mul_common.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/neg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/neg.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/pack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/pack.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/pad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/pad.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/pad.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/pooling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/pooling.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/pooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/pooling.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/pooling_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/pooling_common.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/prelu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/prelu.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/prelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/prelu.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/prelu_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/prelu_common.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/quantize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/quantize.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/quantize.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/read_variable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/read_variable.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/real.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/real.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/reduce.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/reduce.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/reduce_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/reduce_common.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/reshape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/reshape.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/rfft2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/rfft2d.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/round.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/round.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/scatter_nd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/scatter_nd.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/scratch_buf_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/scratch_buf_mgr.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/scratch_buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/scratch_buffers.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/select.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/select.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/shape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/shape.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/slice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/slice.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/softmax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/softmax.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/softmax.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/softmax_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/softmax_common.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/space_to_depth.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/space_to_depth.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/split.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/split_v.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/split_v.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/squeeze.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/squeeze.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/strided_slice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/strided_slice.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/sub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/sub.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/sub.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/sub_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/sub_common.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/svdf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/svdf.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/svdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/svdf.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/svdf_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/svdf_common.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/tanh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/tanh.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/tile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/tile.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/topk_v2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/topk_v2.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/transpose.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/transpose.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/transpose_conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/transpose_conv.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/unpack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/unpack.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/var_handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/var_handle.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/while.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/while.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/zeros_like.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/kernels/zeros_like.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/memory_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/memory_helpers.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/memory_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/memory_helpers.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_allocation_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_allocation_info.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_allocation_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_allocation_info.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_allocator.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_allocator.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_arena_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_arena_constants.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_context.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_context.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_error_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_error_reporter.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_error_reporter.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_graph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_graph.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_graph.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_interpreter.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_interpreter.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_log.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_log.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_op_resolver.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_profiler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_profiler.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_profiler.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_resource_variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_resource_variable.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_string.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_string.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_time.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_time.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_utils.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/micro_utils.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/mock_micro_graph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/mock_micro_graph.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/mock_micro_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/mock_micro_graph.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/op_resolver_bridge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/op_resolver_bridge.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/op_resolver_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/op_resolver_bridge.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/schema_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/schema_utils.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/system_setup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/system_setup.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/system_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/system_setup.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/test_helper_custom_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/test_helper_custom_ops.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/test_helper_custom_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/test_helper_custom_ops.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/test_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/test_helpers.cc -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/micro/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/micro/test_helpers.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/portable_type_to_tflitetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/portable_type_to_tflitetype.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/schema/schema_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/schema/schema_generated.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/schema/schema_generated_full.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/schema/schema_generated_full.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/tensorflow/lite/schema/schema_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/tensorflow/lite/schema/schema_utils.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/third_party/arc_mli_package/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/third_party/arc_mli_package/LICENSE -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/third_party/arc_mli_package/include/mli_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/third_party/arc_mli_package/include/mli_api.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/third_party/arc_mli_package/include/mli_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/third_party/arc_mli_package/include/mli_types.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/third_party/flatbuffers/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/third_party/flatbuffers/LICENSE.txt -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/third_party/gemmlowp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/third_party/gemmlowp/LICENSE -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/third_party/gemmlowp/fixedpoint/fixedpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/third_party/gemmlowp/fixedpoint/fixedpoint.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/third_party/gemmlowp/internal/detect_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/third_party/gemmlowp/internal/detect_platform.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/third_party/incbin/incbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/third_party/incbin/incbin.h -------------------------------------------------------------------------------- /ei-model/edge-impulse-sdk/third_party/ruy/ruy/profiler/instrumentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/edge-impulse-sdk/third_party/ruy/ruy/profiler/instrumentation.h -------------------------------------------------------------------------------- /ei-model/model-parameters/anomaly_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/model-parameters/anomaly_metadata.h -------------------------------------------------------------------------------- /ei-model/model-parameters/model_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/model-parameters/model_metadata.h -------------------------------------------------------------------------------- /ei-model/model-parameters/model_variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/model-parameters/model_variables.h -------------------------------------------------------------------------------- /ei-model/tflite-model/tflite_learn_43_3_compiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/tflite-model/tflite_learn_43_3_compiled.cpp -------------------------------------------------------------------------------- /ei-model/tflite-model/tflite_learn_43_3_compiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/tflite-model/tflite_learn_43_3_compiled.h -------------------------------------------------------------------------------- /ei-model/tflite-model/trained_model_ops_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/ei-model/tflite-model/trained_model_ops_define.h -------------------------------------------------------------------------------- /firmware-sdk/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | -------------------------------------------------------------------------------- /firmware-sdk/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/CHANGELOG.md -------------------------------------------------------------------------------- /firmware-sdk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/CMakeLists.txt -------------------------------------------------------------------------------- /firmware-sdk/QCBOR/inc/UsefulBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/QCBOR/inc/UsefulBuf.h -------------------------------------------------------------------------------- /firmware-sdk/QCBOR/inc/qcbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/QCBOR/inc/qcbor.h -------------------------------------------------------------------------------- /firmware-sdk/QCBOR/src/UsefulBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/QCBOR/src/UsefulBuf.c -------------------------------------------------------------------------------- /firmware-sdk/QCBOR/src/ieee754.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/QCBOR/src/ieee754.c -------------------------------------------------------------------------------- /firmware-sdk/QCBOR/src/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/QCBOR/src/ieee754.h -------------------------------------------------------------------------------- /firmware-sdk/QCBOR/src/qcbor_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/QCBOR/src/qcbor_decode.c -------------------------------------------------------------------------------- /firmware-sdk/QCBOR/src/qcbor_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/QCBOR/src/qcbor_encode.c -------------------------------------------------------------------------------- /firmware-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/README.md -------------------------------------------------------------------------------- /firmware-sdk/at-server/ei_at_command_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/at-server/ei_at_command_set.cpp -------------------------------------------------------------------------------- /firmware-sdk/at-server/ei_at_command_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/at-server/ei_at_command_set.h -------------------------------------------------------------------------------- /firmware-sdk/at-server/ei_at_history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/at-server/ei_at_history.h -------------------------------------------------------------------------------- /firmware-sdk/at-server/ei_at_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/at-server/ei_at_parser.cpp -------------------------------------------------------------------------------- /firmware-sdk/at-server/ei_at_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/at-server/ei_at_parser.h -------------------------------------------------------------------------------- /firmware-sdk/at-server/ei_at_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/at-server/ei_at_server.cpp -------------------------------------------------------------------------------- /firmware-sdk/at-server/ei_at_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/at-server/ei_at_server.h -------------------------------------------------------------------------------- /firmware-sdk/at-server/ei_at_server_singleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/at-server/ei_at_server_singleton.cpp -------------------------------------------------------------------------------- /firmware-sdk/at-server/ei_line_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/at-server/ei_line_buffer.h -------------------------------------------------------------------------------- /firmware-sdk/at_base64_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/at_base64_lib.cpp -------------------------------------------------------------------------------- /firmware-sdk/at_base64_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/at_base64_lib.h -------------------------------------------------------------------------------- /firmware-sdk/ei_camera_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/ei_camera_interface.h -------------------------------------------------------------------------------- /firmware-sdk/ei_config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/ei_config_types.h -------------------------------------------------------------------------------- /firmware-sdk/ei_device_info_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/ei_device_info_lib.h -------------------------------------------------------------------------------- /firmware-sdk/ei_device_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/ei_device_interface.h -------------------------------------------------------------------------------- /firmware-sdk/ei_device_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/ei_device_lib.cpp -------------------------------------------------------------------------------- /firmware-sdk/ei_device_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/ei_device_lib.h -------------------------------------------------------------------------------- /firmware-sdk/ei_device_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/ei_device_memory.h -------------------------------------------------------------------------------- /firmware-sdk/ei_fusion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/ei_fusion.cpp -------------------------------------------------------------------------------- /firmware-sdk/ei_fusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/ei_fusion.h -------------------------------------------------------------------------------- /firmware-sdk/ei_image_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/ei_image_lib.cpp -------------------------------------------------------------------------------- /firmware-sdk/ei_image_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/ei_image_lib.h -------------------------------------------------------------------------------- /firmware-sdk/ei_image_nn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/ei_image_nn.h -------------------------------------------------------------------------------- /firmware-sdk/jpeg/JPEGENC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/jpeg/JPEGENC.cpp -------------------------------------------------------------------------------- /firmware-sdk/jpeg/JPEGENC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/jpeg/JPEGENC.h -------------------------------------------------------------------------------- /firmware-sdk/jpeg/encode_as_jpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/jpeg/encode_as_jpg.h -------------------------------------------------------------------------------- /firmware-sdk/jpeg/jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/jpeg/jpeg.h -------------------------------------------------------------------------------- /firmware-sdk/remote-mgmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/remote-mgmt.cpp -------------------------------------------------------------------------------- /firmware-sdk/remote-mgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/remote-mgmt.h -------------------------------------------------------------------------------- /firmware-sdk/sensor-aq/sensor_aq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/sensor-aq/sensor_aq.cpp -------------------------------------------------------------------------------- /firmware-sdk/sensor-aq/sensor_aq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/sensor-aq/sensor_aq.h -------------------------------------------------------------------------------- /firmware-sdk/sensor-aq/sensor_aq_none.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/sensor-aq/sensor_aq_none.cpp -------------------------------------------------------------------------------- /firmware-sdk/sensor-aq/sensor_aq_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/firmware-sdk/sensor-aq/sensor_aq_none.h -------------------------------------------------------------------------------- /overlay-remote-ingestion.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/overlay-remote-ingestion.conf -------------------------------------------------------------------------------- /prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/prj.conf -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/ei_at_handlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/ei_at_handlers.cpp -------------------------------------------------------------------------------- /src/ei_at_handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/ei_at_handlers.h -------------------------------------------------------------------------------- /src/ei_device_nrf91.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/ei_device_nrf91.cpp -------------------------------------------------------------------------------- /src/ei_device_nrf91.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/ei_device_nrf91.h -------------------------------------------------------------------------------- /src/ei_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/ei_memory.cpp -------------------------------------------------------------------------------- /src/ei_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/ei_memory.h -------------------------------------------------------------------------------- /src/ei_sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/ei_sampler.cpp -------------------------------------------------------------------------------- /src/ei_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/ei_sampler.h -------------------------------------------------------------------------------- /src/ei_ws_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/ei_ws_client.cpp -------------------------------------------------------------------------------- /src/ei_ws_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/ei_ws_client.h -------------------------------------------------------------------------------- /src/inference/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(app PRIVATE 2 | ${CMAKE_CURRENT_SOURCE_DIR}/ei_run_fusion_impulse.cpp 3 | ) 4 | -------------------------------------------------------------------------------- /src/inference/ei_run_fusion_impulse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/inference/ei_run_fusion_impulse.cpp -------------------------------------------------------------------------------- /src/inference/ei_run_impulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/inference/ei_run_impulse.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/sensors/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/sensors/CMakeLists.txt -------------------------------------------------------------------------------- /src/sensors/ei_accelerometer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/sensors/ei_accelerometer.cpp -------------------------------------------------------------------------------- /src/sensors/ei_accelerometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/sensors/ei_accelerometer.h -------------------------------------------------------------------------------- /src/sensors/ei_environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/sensors/ei_environment.cpp -------------------------------------------------------------------------------- /src/sensors/ei_environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/sensors/ei_environment.h -------------------------------------------------------------------------------- /src/sensors/ei_fusion_sensors_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/sensors/ei_fusion_sensors_config.h -------------------------------------------------------------------------------- /src/sensors/ei_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/sensors/ei_light.cpp -------------------------------------------------------------------------------- /src/sensors/ei_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-thingy91/HEAD/src/sensors/ei_light.h --------------------------------------------------------------------------------