├── .clang-format ├── .dockerignore ├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── Kconfig ├── LICENSE.3-clause-bsd-clear ├── README.md ├── boards ├── nrf52840dk_nrf52840.overlay └── nrf5340dk_nrf5340_cpuapp.overlay ├── 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 │ ├── 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 ├── edge-impulse ├── ingestion-sdk-c │ ├── ei_config.h │ ├── ei_config_types.h │ ├── ei_run_impulse.cpp │ ├── ei_run_impulse.h │ ├── ei_sampler.cpp │ ├── ei_sampler.h │ ├── sensor_aq_mbedtls_hs256.cpp │ └── sensor_aq_mbedtls_hs256.h ├── ingestion-sdk-platform │ └── NordicSemi-nrf52 │ │ ├── ble_nus.cpp │ │ ├── ble_nus.h │ │ ├── ei_at_handlers.cpp │ │ ├── ei_at_handlers.h │ │ ├── ei_device_info.h │ │ ├── ei_device_nordic_nrf52.cpp │ │ ├── ei_device_nordic_nrf52.h │ │ ├── ei_main.cpp │ │ ├── ei_main.h │ │ ├── ei_zephyr_flash_commands.cpp │ │ ├── ei_zephyr_flash_commands.h │ │ └── sensors │ │ ├── ei_fusion_sensors_config.h │ │ ├── ei_inertialsensor.cpp │ │ ├── ei_inertialsensor.h │ │ ├── ei_microphone.cpp │ │ ├── ei_microphone.h │ │ ├── iis2dlpc_reg.cpp │ │ └── iis2dlpc_reg.h └── mbedtls_hmac_sha256_sw │ ├── ei_mbedtls_md.h │ └── mbedtls │ ├── aes.h │ ├── aesni.h │ ├── arc4.h │ ├── aria.h │ ├── asn1.h │ ├── asn1write.h │ ├── base64.h │ ├── bignum.h │ ├── blowfish.h │ ├── bn_mul.h │ ├── camellia.h │ ├── ccm.h │ ├── certs.h │ ├── chacha20.h │ ├── chachapoly.h │ ├── check_config.h │ ├── cipher.h │ ├── cipher_internal.h │ ├── cmac.h │ ├── compat-1.3.h │ ├── config.h │ ├── ctr_drbg.h │ ├── debug.h │ ├── des.h │ ├── dhm.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── ecjpake.h │ ├── ecp.h │ ├── ecp_internal.h │ ├── entropy.h │ ├── entropy_poll.h │ ├── error.h │ ├── gcm.h │ ├── havege.h │ ├── hkdf.h │ ├── hmac_drbg.h │ ├── md.h │ ├── md2.h │ ├── md4.h │ ├── md5.h │ ├── md_internal.h │ ├── memory_buffer_alloc.h │ ├── net.h │ ├── net_sockets.h │ ├── nist_kw.h │ ├── oid.h │ ├── padlock.h │ ├── pem.h │ ├── pk.h │ ├── pk_internal.h │ ├── pkcs11.h │ ├── pkcs12.h │ ├── pkcs5.h │ ├── platform.h │ ├── platform_time.h │ ├── platform_util.h │ ├── poly1305.h │ ├── ripemd160.h │ ├── rsa.h │ ├── rsa_internal.h │ ├── sha1.h │ ├── sha256.h │ ├── sha512.h │ ├── src │ ├── aesni.c │ ├── arc4.c │ ├── aria.c │ ├── asn1parse.c │ ├── asn1write.c │ ├── base64.c │ ├── bignum.c │ ├── blowfish.c │ ├── camellia.c │ ├── ccm.c │ ├── certs.c │ ├── chacha20.c │ ├── chachapoly.c │ ├── cmac.c │ ├── ctr_drbg.c │ ├── debug.c │ ├── des.c │ ├── dhm.c │ ├── ecdh.c │ ├── ecdsa.c │ ├── ecjpake.c │ ├── ecp.c │ ├── ecp_curves.c │ ├── entropy.c │ ├── error.c │ ├── gcm.c │ ├── havege.c │ ├── hkdf.c │ ├── hmac_drbg.c │ ├── md.c │ ├── md2.c │ ├── md4.c │ ├── md5.c │ ├── md_wrap.c │ ├── memory_buffer_alloc.c │ ├── nist_kw.c │ ├── oid.c │ ├── padlock.c │ ├── pem.c │ ├── pk.c │ ├── pk_wrap.c │ ├── pkcs11.c │ ├── pkcs12.c │ ├── pkcs5.c │ ├── pkparse.c │ ├── pkwrite.c │ ├── platform.c │ ├── platform_util.c │ ├── poly1305.c │ ├── ripemd160.c │ ├── rsa.c │ ├── rsa_internal.c │ ├── sha1.c │ ├── sha256.c │ ├── sha512.c │ ├── ssl_cache.c │ ├── ssl_ciphersuites.c │ ├── ssl_cli.c │ ├── ssl_cookie.c │ ├── ssl_srv.c │ ├── ssl_ticket.c │ ├── ssl_tls.c │ ├── threading.c │ ├── version.c │ └── version_features.c │ ├── ssl.h │ ├── ssl_cache.h │ ├── ssl_ciphersuites.h │ ├── ssl_cookie.h │ ├── ssl_internal.h │ ├── ssl_ticket.h │ ├── threading.h │ ├── timing.h │ ├── version.h │ ├── x509.h │ ├── x509_crl.h │ ├── x509_crt.h │ ├── x509_csr.h │ └── xtea.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 ├── model-parameters ├── anomaly_metadata.h ├── model_metadata.h └── model_variables.h ├── prj.conf ├── sample.yaml ├── src └── main.cpp ├── tflite-model ├── tflite_learn_43_3_compiled.cpp ├── tflite_learn_43_3_compiled.h └── trained_model_ops_define.h └── utils └── cmake └── utils.cmake /.clang-format: -------------------------------------------------------------------------------- 1 | "DisableFormat": true 2 | "SortIncludes": false 3 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | build/ 2 | modules/ 3 | *.hex 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/Dockerfile -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/Kconfig -------------------------------------------------------------------------------- /LICENSE.3-clause-bsd-clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/LICENSE.3-clause-bsd-clear -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/README.md -------------------------------------------------------------------------------- /boards/nrf52840dk_nrf52840.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/boards/nrf52840dk_nrf52840.overlay -------------------------------------------------------------------------------- /boards/nrf5340dk_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/boards/nrf5340dk_nrf5340_cpuapp.overlay -------------------------------------------------------------------------------- /edge-impulse-sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/.gitignore -------------------------------------------------------------------------------- /edge-impulse-sdk/.mbedignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/.mbedignore -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/cachel1_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/cachel1_armv7.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/cmsis_armclang_ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/cmsis_armclang_ltm.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/cmsis_version.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/core_armv81mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/core_armv81mml.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/core_armv8mml.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/core_cm0.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/core_cm0plus.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/core_cm1.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/core_cm23.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/core_cm3.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/core_cm33.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/core_cm35p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/core_cm35p.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/core_cm4.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/core_cm55.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/core_cm55.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/core_cm7.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/core_cm85.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/core_cm85.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/core_sc000.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/core_sc300.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/core_starmc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/core_starmc1.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/mpu_armv7.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/mpu_armv8.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/pac_armv81.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/pac_armv81.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/pmu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/pmu_armv8.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/Core/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/Core/Include/tz_context.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/arm_common_tables.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/arm_common_tables_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/arm_common_tables_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/arm_const_structs.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/arm_const_structs_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/arm_const_structs_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/arm_helium_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/arm_helium_utils.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/arm_math.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/arm_math_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/arm_math_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_memory.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/arm_math_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_types.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/arm_math_types_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_types_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/arm_mve_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/arm_mve_tables.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/arm_mve_tables_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/arm_mve_tables_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/arm_sorting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/arm_sorting.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_fft.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_filtering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_filtering.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_math.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_math_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/arm_vec_math_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/basic_math_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/basic_math_functions.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/basic_math_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/basic_math_functions_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/bayes_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/bayes_functions.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/bayes_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/bayes_functions_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/complex_math_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/complex_math_functions.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/complex_math_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/complex_math_functions_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/debug.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/distance_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/distance_functions.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/distance_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/distance_functions_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/fast_math_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/fast_math_functions.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/fast_math_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/fast_math_functions_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/filtering_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/filtering_functions.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/filtering_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/filtering_functions_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/interpolation_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/interpolation_functions.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/matrix_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/matrix_functions.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/matrix_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/matrix_functions_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/matrix_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/matrix_utils.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/quaternion_math_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/quaternion_math_functions.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/statistics_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/statistics_functions.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/statistics_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/statistics_functions_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/support_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/support_functions.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/support_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/support_functions_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/svm_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/svm_defines.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/svm_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/svm_functions.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/svm_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/svm_functions_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/transform_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/transform_functions.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/transform_functions_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/transform_functions_f16.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Include/dsp/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Include/dsp/utils.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/PrivateInclude/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/PrivateInclude/README.md -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f16.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f32.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f64.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q15.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q31.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q7.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f16.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f32.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f64.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q15.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q31.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q7.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u16.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u32.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u8.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_clip_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_clip_f16.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_clip_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_clip_f32.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u8.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_mve_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/CommonTables/arm_mve_tables.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_copy_q7.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/DSP/Source/SupportFunctions/arm_fill_q7.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/NN/Include/arm_nn_math_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/NN/Include/arm_nn_math_types.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/NN/Include/arm_nn_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/NN/Include/arm_nn_tables.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/NN/Include/arm_nn_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/NN/Include/arm_nn_types.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/NN/Include/arm_nnfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/NN/Include/arm_nnfunctions.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/NN/Include/arm_nnsupportfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/NN/Include/arm_nnsupportfunctions.h -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/NN/Source/SVDFunctions/arm_svdf_s8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/CMSIS/NN/Source/SVDFunctions/arm_svdf_s8.c -------------------------------------------------------------------------------- /edge-impulse-sdk/CMSIS/sources.txt: -------------------------------------------------------------------------------- 1 | Created by update_tflite.sh 2 | -------------------------------------------------------------------------------- /edge-impulse-sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/LICENSE -------------------------------------------------------------------------------- /edge-impulse-sdk/LICENSE.3-clause-bsd-clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/LICENSE.3-clause-bsd-clear -------------------------------------------------------------------------------- /edge-impulse-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/README.md -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/ei_aligned_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/ei_aligned_malloc.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/ei_classifier_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/ei_classifier_config.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/ei_classifier_smooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/ei_classifier_smooth.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/ei_classifier_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/ei_classifier_types.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/ei_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/ei_constants.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/ei_data_normalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/ei_data_normalization.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/ei_model_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/ei_model_types.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/ei_nms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/ei_nms.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/ei_print_results.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/ei_print_results.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/ei_quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/ei_quantize.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/ei_run_classifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/ei_run_classifier.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/ei_run_classifier_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/ei_run_classifier_c.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/ei_run_classifier_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/ei_run_classifier_c.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/ei_run_classifier_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/ei_run_classifier_image.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/ei_run_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/ei_run_dsp.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/ei_signal_with_axes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/ei_signal_with_axes.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/ei_signal_with_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/ei_signal_with_range.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/inferencing_engines/akida.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/inferencing_engines/akida.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/inferencing_engines/anomaly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/inferencing_engines/anomaly.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/inferencing_engines/aton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/inferencing_engines/aton.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/inferencing_engines/ceva_npn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/inferencing_engines/ceva_npn.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/inferencing_engines/drpai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/inferencing_engines/drpai.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/inferencing_engines/engines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/inferencing_engines/engines.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/inferencing_engines/ethos_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/inferencing_engines/ethos_linux.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/inferencing_engines/memryx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/inferencing_engines/memryx.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/inferencing_engines/nordic_axon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/inferencing_engines/nordic_axon.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/inferencing_engines/onnx_tidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/inferencing_engines/onnx_tidl.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/inferencing_engines/tensaiflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/inferencing_engines/tensaiflow.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/inferencing_engines/tensorrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/inferencing_engines/tensorrt.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/inferencing_engines/tflite_eon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/inferencing_engines/tflite_eon.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/inferencing_engines/tflite_full.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/inferencing_engines/tflite_full.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/inferencing_engines/tflite_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/inferencing_engines/tflite_helper.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/inferencing_engines/tflite_micro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/inferencing_engines/tflite_micro.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/inferencing_engines/tflite_tidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/inferencing_engines/tflite_tidl.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/postprocessing/ei_object_counting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/postprocessing/ei_object_counting.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/postprocessing/ei_object_tracking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/postprocessing/ei_object_tracking.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/postprocessing/ei_postprocessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/postprocessing/ei_postprocessing.h -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/postprocessing/tinyEKF/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/postprocessing/tinyEKF/LICENSE.md -------------------------------------------------------------------------------- /edge-impulse-sdk/classifier/postprocessing/tinyEKF/tinyekf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/classifier/postprocessing/tinyEKF/tinyekf.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/cmake/add_source.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/cmake/add_source.cmake -------------------------------------------------------------------------------- /edge-impulse-sdk/cmake/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/cmake/utils.cmake -------------------------------------------------------------------------------- /edge-impulse-sdk/cmake/zephyr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/cmake/zephyr/CMakeLists.txt -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/README.md -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/config.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/dct/.clang-format: -------------------------------------------------------------------------------- 1 | "DisableFormat": true 2 | "SortIncludes": false 3 | -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/dct/fast-dct-fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/dct/fast-dct-fft.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/dct/fast-dct-fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/dct/fast-dct-fft.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/dsp_engines/ei_arm_cmsis_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/dsp_engines/ei_arm_cmsis_dsp.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/dsp_engines/ei_ceva_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/dsp_engines/ei_ceva_dsp.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/dsp_engines/ei_ceva_dsp_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/dsp_engines/ei_ceva_dsp_fixed.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/dsp_engines/ei_esp_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/dsp_engines/ei_esp_dsp.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/dsp_engines/ei_no_hw_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/dsp_engines/ei_no_hw_dsp.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/ei_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/ei_alloc.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/ei_dsp_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/ei_dsp_handle.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/ei_eeg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/ei_eeg.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/ei_flatten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/ei_flatten.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/ei_hr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/ei_hr.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/ei_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/ei_profiler.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/ei_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/ei_utils.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/ei_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/ei_vector.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/image/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/image/image.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/image/processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/image/processing.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/image/processing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/image/processing.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/kissfft/.clang-format: -------------------------------------------------------------------------------- 1 | "DisableFormat": true 2 | "SortIncludes": false 3 | -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/kissfft/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/kissfft/LICENSE -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/kissfft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/kissfft/README.md -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/kissfft/_kiss_fft_guts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/kissfft/_kiss_fft_guts.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/kissfft/kiss_fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/kissfft/kiss_fft.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/kissfft/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/kissfft/kiss_fft.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/kissfft/kiss_fftr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/kissfft/kiss_fftr.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/kissfft/kiss_fftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/kissfft/kiss_fftr.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/kissfft/kissfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/kissfft/kissfft.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/memory.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/memory.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/numpy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/numpy.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/numpy_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/numpy_types.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/returntypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/returntypes.h -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/returntypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/returntypes.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/spectral/feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/spectral/feature.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/spectral/filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/spectral/filters.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/spectral/fir_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/spectral/fir_filter.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/spectral/processing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/spectral/processing.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/spectral/signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/spectral/signal.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/spectral/spectral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/spectral/spectral.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/spectral/wavelet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/spectral/wavelet.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/spectral/wavelet_coeff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/spectral/wavelet_coeff.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/speechpy/feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/speechpy/feature.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/speechpy/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/speechpy/functions.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/speechpy/processing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/speechpy/processing.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/dsp/speechpy/speechpy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/dsp/speechpy/speechpy.hpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/.clang-format: -------------------------------------------------------------------------------- 1 | "DisableFormat": true 2 | "SortIncludes": false 3 | -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ambiq/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/ambiq/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ambiq/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/ambiq/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/android/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/android/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/arduino/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/arduino/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/arduino/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/arduino/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/brickml/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/brickml/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/brickml/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/brickml/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ceva-npn/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/ceva-npn/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ceva-npn/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/ceva-npn/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/clib/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/clib/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/clib/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/clib/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ei_classifier_porting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/ei_classifier_porting.h -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ei_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/ei_logging.h -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/espressif/ESP-NN/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/espressif/ESP-NN/CMakeLists.txt -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/espressif/ESP-NN/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/espressif/ESP-NN/CONTRIBUTING.md -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/espressif/ESP-NN/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/espressif/ESP-NN/Kconfig.projbuild -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/espressif/ESP-NN/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/espressif/ESP-NN/LICENSE -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/espressif/ESP-NN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/espressif/ESP-NN/README.md -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/espressif/ESP-NN/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/espressif/ESP-NN/idf_component.yml -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/espressif/ESP-NN/include/esp_nn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/espressif/ESP-NN/include/esp_nn.h -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/espressif/ESP-NN/include/esp_nn_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/espressif/ESP-NN/include/esp_nn_defs.h -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/espressif/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/espressif/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/espressif/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/espressif/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/espressif/esp-dsp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/espressif/esp-dsp/LICENSE -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/espressif/esp-dsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/espressif/esp-dsp/README.md -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ethos-core-driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/ethos-core-driver/CMakeLists.txt -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ethos-core-driver/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/ethos-core-driver/LICENSE.txt -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ethos-core-driver/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/ethos-core-driver/README.MD -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ethos-core-driver/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/ethos-core-driver/SECURITY.md -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ethos-core-driver/include/pmu_ethosu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/ethos-core-driver/include/pmu_ethosu.h -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_device.h -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_driver.c -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_log.h -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/ethos-core-driver/src/ethosu_pmu.c -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ethos-core-driver/version.txt: -------------------------------------------------------------------------------- 1 | v1.24.11 -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/himax-we2/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/himax-we2/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/himax-we2/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/himax-we2/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/himax-we2/ethosu_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/himax-we2/ethosu_driver.c -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/himax/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/himax/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/himax/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/himax/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/iar/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/iar/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/iar/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/iar/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/infineon-psoc62/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/infineon-psoc62/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/mbed/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/mbed/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/mbed/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/mbed/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/mingw32/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/mingw32/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/mingw32/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/mingw32/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/particle/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/particle/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/particle/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/particle/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/posix/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/posix/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/posix/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/posix/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/raspberry/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/raspberry/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/renesas-ra/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/renesas-ra/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/renesas-ra/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/renesas-ra/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/seeed-vision-ai/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/seeed-vision-ai/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/silabs/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/silabs/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/silabs/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/silabs/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/sony/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/sony/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/sony/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/sony/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/stm32-cubeai/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/stm32-cubeai/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/stm32-cubeai/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/stm32-cubeai/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/synaptics/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/synaptics/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/synaptics/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/synaptics/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ti/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/ti/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/ti/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/ti/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/zephyr/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/zephyr/debug_log.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/porting/zephyr/ei_classifier_porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/porting/zephyr/ei_classifier_porting.cpp -------------------------------------------------------------------------------- /edge-impulse-sdk/sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/sources.txt -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/LICENSE -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/builtin_op_data.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/builtin_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/builtin_ops.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/c/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/c/builtin_op_data.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/c/c_api_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/c/c_api_types.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/c/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/c/common.c -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/c/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/c/common.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/context_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/context_util.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/core/api/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/core/api/common.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/core/api/error_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/core/api/error_reporter.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/core/api/error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/core/api/error_reporter.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/core/api/op_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/core/api/op_resolver.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/core/api/op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/core/api/op_resolver.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/core/api/tensor_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/core/api/tensor_utils.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/core/api/tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/core/api/tensor_utils.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/core/c/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/core/c/builtin_op_data.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/core/c/c_api_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/core/c/c_api_types.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/core/c/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/core/c/common.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/kernels/internal/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/kernels/internal/common.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/kernels/internal/cppmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/kernels/internal/cppmath.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/kernels/internal/max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/kernels/internal/max.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/kernels/internal/min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/kernels/internal/min.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/kernels/internal/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/kernels/internal/types.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/kernels/kernel_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/kernels/kernel_util.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/kernels/kernel_util_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/kernels/kernel_util_lite.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/kernels/op_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/kernels/op_macros.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/kernels/padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/kernels/padding.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/all_ops_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/all_ops_resolver.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/all_ops_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/all_ops_resolver.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/compatibility.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/debug_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/debug_log.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/fake_micro_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/fake_micro_context.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/fake_micro_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/fake_micro_context.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/flatbuffer_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/flatbuffer_utils.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/flatbuffer_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/flatbuffer_utils.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/ibuffer_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/ibuffer_allocator.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/activations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/activations.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/activations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/activations.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/add.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/add.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/add_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/add_common.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/add_n.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/add_n.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/arg_min_max.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/arg_min_max.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/batch_matmul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/batch_matmul.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/broadcast_args.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/broadcast_args.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/broadcast_to.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/broadcast_to.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/call_once.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/call_once.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/cast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/cast.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/ceil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/ceil.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/circular_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/circular_buffer.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/comparisons.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/comparisons.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/complex_abs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/complex_abs.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/concatenation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/concatenation.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/conv.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/conv.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/conv_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/conv_common.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/conv_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/conv_test.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/cumsum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/cumsum.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/depth_to_space.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/depth_to_space.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/depthwise_conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/depthwise_conv.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/depthwise_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/depthwise_conv.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/dequantize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/dequantize.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/dequantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/dequantize.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/div.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/div.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/elementwise.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/elementwise.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/elu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/elu.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/ethosu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/ethosu.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/ethosu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/ethosu.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/exp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/exp.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/expand_dims.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/expand_dims.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/fill.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/fill.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/floor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/floor.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/floor_div.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/floor_div.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/floor_mod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/floor_mod.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/fully_connected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/fully_connected.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/gather.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/gather.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/gather_nd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/gather_nd.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/hard_swish.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/hard_swish.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/hard_swish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/hard_swish.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/if.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/if.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/kernel_runner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/kernel_runner.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/kernel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/kernel_runner.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/kernel_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/kernel_util.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/l2_pool_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/l2_pool_2d.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/l2norm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/l2norm.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/leaky_relu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/leaky_relu.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/leaky_relu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/leaky_relu.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/log_softmax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/log_softmax.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/logical.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/logical.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/logical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/logical.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/logical_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/logical_common.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/logistic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/logistic.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/logistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/logistic.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/lstm_eval.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/lstm_eval.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/lstm_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/lstm_eval.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/lstm_eval_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/lstm_eval_test.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/lstm_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/lstm_shared.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/micro_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/micro_ops.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/mirror_pad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/mirror_pad.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_interface.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_interface.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_slicers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_slicers.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_slicers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_slicers.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_tf_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/mli_tf_utils.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/mul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/mul.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/mul.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/mul_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/mul_common.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/neg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/neg.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/pack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/pack.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/pad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/pad.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/pad.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/pooling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/pooling.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/pooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/pooling.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/pooling_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/pooling_common.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/prelu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/prelu.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/prelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/prelu.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/prelu_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/prelu_common.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/quantize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/quantize.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/quantize.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/read_variable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/read_variable.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/real.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/real.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/reduce.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/reduce.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/reduce_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/reduce_common.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/reshape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/reshape.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/rfft2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/rfft2d.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/round.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/round.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/scatter_nd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/scatter_nd.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/scratch_buf_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/scratch_buf_mgr.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/scratch_buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/scratch_buffers.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/select.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/select.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/shape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/shape.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/slice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/slice.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/softmax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/softmax.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/softmax.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/softmax_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/softmax_common.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/space_to_depth.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/space_to_depth.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/split.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/split_v.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/split_v.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/squeeze.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/squeeze.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/strided_slice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/strided_slice.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/sub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/sub.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/sub.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/sub_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/sub_common.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/svdf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/svdf.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/svdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/svdf.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/svdf_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/svdf_common.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/tanh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/tanh.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/tile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/tile.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/topk_v2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/topk_v2.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/transpose.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/transpose.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/transpose_conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/transpose_conv.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/unpack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/unpack.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/var_handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/var_handle.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/while.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/while.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/kernels/zeros_like.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/kernels/zeros_like.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/memory_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/memory_helpers.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/memory_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/memory_helpers.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_allocation_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_allocation_info.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_allocation_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_allocation_info.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_allocator.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_allocator.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_arena_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_arena_constants.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_context.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_context.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_error_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_error_reporter.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_error_reporter.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_graph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_graph.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_graph.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_interpreter.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_interpreter.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_log.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_log.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_op_resolver.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_profiler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_profiler.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_profiler.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_resource_variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_resource_variable.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_string.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_string.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_time.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_time.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_utils.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/micro_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/micro_utils.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/mock_micro_graph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/mock_micro_graph.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/mock_micro_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/mock_micro_graph.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/op_resolver_bridge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/op_resolver_bridge.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/op_resolver_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/op_resolver_bridge.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/schema_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/schema_utils.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/system_setup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/system_setup.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/system_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/system_setup.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/test_helper_custom_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/test_helper_custom_ops.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/test_helper_custom_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/test_helper_custom_ops.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/test_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/test_helpers.cc -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/micro/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/micro/test_helpers.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/portable_type_to_tflitetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/portable_type_to_tflitetype.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/schema/schema_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/schema/schema_generated.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/schema/schema_generated_full.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/schema/schema_generated_full.h -------------------------------------------------------------------------------- /edge-impulse-sdk/tensorflow/lite/schema/schema_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/tensorflow/lite/schema/schema_utils.h -------------------------------------------------------------------------------- /edge-impulse-sdk/third_party/arc_mli_package/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/third_party/arc_mli_package/LICENSE -------------------------------------------------------------------------------- /edge-impulse-sdk/third_party/arc_mli_package/include/mli_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/third_party/arc_mli_package/include/mli_api.h -------------------------------------------------------------------------------- /edge-impulse-sdk/third_party/arc_mli_package/include/mli_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/third_party/arc_mli_package/include/mli_types.h -------------------------------------------------------------------------------- /edge-impulse-sdk/third_party/flatbuffers/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/third_party/flatbuffers/LICENSE.txt -------------------------------------------------------------------------------- /edge-impulse-sdk/third_party/gemmlowp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/third_party/gemmlowp/LICENSE -------------------------------------------------------------------------------- /edge-impulse-sdk/third_party/gemmlowp/fixedpoint/fixedpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/third_party/gemmlowp/fixedpoint/fixedpoint.h -------------------------------------------------------------------------------- /edge-impulse-sdk/third_party/gemmlowp/internal/detect_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/third_party/gemmlowp/internal/detect_platform.h -------------------------------------------------------------------------------- /edge-impulse-sdk/third_party/incbin/incbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/third_party/incbin/incbin.h -------------------------------------------------------------------------------- /edge-impulse-sdk/third_party/ruy/ruy/profiler/instrumentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse-sdk/third_party/ruy/ruy/profiler/instrumentation.h -------------------------------------------------------------------------------- /edge-impulse/ingestion-sdk-c/ei_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/ingestion-sdk-c/ei_config.h -------------------------------------------------------------------------------- /edge-impulse/ingestion-sdk-c/ei_config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/ingestion-sdk-c/ei_config_types.h -------------------------------------------------------------------------------- /edge-impulse/ingestion-sdk-c/ei_run_impulse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/ingestion-sdk-c/ei_run_impulse.cpp -------------------------------------------------------------------------------- /edge-impulse/ingestion-sdk-c/ei_run_impulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/ingestion-sdk-c/ei_run_impulse.h -------------------------------------------------------------------------------- /edge-impulse/ingestion-sdk-c/ei_sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/ingestion-sdk-c/ei_sampler.cpp -------------------------------------------------------------------------------- /edge-impulse/ingestion-sdk-c/ei_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/ingestion-sdk-c/ei_sampler.h -------------------------------------------------------------------------------- /edge-impulse/ingestion-sdk-c/sensor_aq_mbedtls_hs256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/ingestion-sdk-c/sensor_aq_mbedtls_hs256.cpp -------------------------------------------------------------------------------- /edge-impulse/ingestion-sdk-c/sensor_aq_mbedtls_hs256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/ingestion-sdk-c/sensor_aq_mbedtls_hs256.h -------------------------------------------------------------------------------- /edge-impulse/ingestion-sdk-platform/NordicSemi-nrf52/ble_nus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/ingestion-sdk-platform/NordicSemi-nrf52/ble_nus.cpp -------------------------------------------------------------------------------- /edge-impulse/ingestion-sdk-platform/NordicSemi-nrf52/ble_nus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/ingestion-sdk-platform/NordicSemi-nrf52/ble_nus.h -------------------------------------------------------------------------------- /edge-impulse/ingestion-sdk-platform/NordicSemi-nrf52/ei_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/ingestion-sdk-platform/NordicSemi-nrf52/ei_main.cpp -------------------------------------------------------------------------------- /edge-impulse/ingestion-sdk-platform/NordicSemi-nrf52/ei_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/ingestion-sdk-platform/NordicSemi-nrf52/ei_main.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/ei_mbedtls_md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/ei_mbedtls_md.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/aes.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/aesni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/aesni.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/arc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/arc4.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/aria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/aria.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/asn1.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/asn1write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/asn1write.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/base64.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/bignum.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/blowfish.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/bn_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/bn_mul.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/camellia.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ccm.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/certs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/certs.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/chacha20.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/chachapoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/chachapoly.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/check_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/check_config.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/cipher.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/cipher_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/cipher_internal.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/cmac.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/compat-1.3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/compat-1.3.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/config.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ctr_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ctr_drbg.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/debug.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/des.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/dhm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/dhm.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ecdh.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ecdsa.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ecjpake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ecjpake.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ecp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ecp.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ecp_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ecp_internal.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/entropy.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/entropy_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/entropy_poll.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/error.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/gcm.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/havege.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/havege.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/hkdf.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/hmac_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/hmac_drbg.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/md.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/md2.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/md4.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/md5.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/md_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/md_internal.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/net.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/net_sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/net_sockets.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/nist_kw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/nist_kw.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/oid.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/padlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/padlock.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/pem.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/pk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/pk.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/pk_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/pk_internal.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/pkcs11.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/pkcs12.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/pkcs5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/pkcs5.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/platform.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/platform_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/platform_time.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/platform_util.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/poly1305.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ripemd160.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/rsa.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/rsa_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/rsa_internal.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/sha1.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/sha256.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/sha512.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/aesni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/aesni.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/arc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/arc4.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/aria.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/aria.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/asn1parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/asn1parse.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/asn1write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/asn1write.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/base64.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/bignum.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/blowfish.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/camellia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/camellia.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ccm.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/certs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/certs.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/chacha20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/chacha20.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/chachapoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/chachapoly.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/cmac.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ctr_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ctr_drbg.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/debug.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/des.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/dhm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/dhm.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ecdh.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ecdsa.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ecjpake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ecjpake.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ecp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ecp.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ecp_curves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ecp_curves.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/entropy.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/error.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/gcm.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/havege.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/havege.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/hkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/hkdf.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/hmac_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/hmac_drbg.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/md.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/md2.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/md4.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/md5.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/md_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/md_wrap.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/nist_kw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/nist_kw.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/oid.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/padlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/padlock.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/pem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/pem.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/pk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/pk.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/pk_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/pk_wrap.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/pkcs11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/pkcs11.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/pkcs12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/pkcs12.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/pkcs5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/pkcs5.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/pkparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/pkparse.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/pkwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/pkwrite.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/platform.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/platform_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/platform_util.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/poly1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/poly1305.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ripemd160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ripemd160.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/rsa.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/rsa_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/rsa_internal.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/sha1.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/sha256.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/sha512.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ssl_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ssl_cache.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ssl_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ssl_cli.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ssl_cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ssl_cookie.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ssl_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ssl_srv.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ssl_ticket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ssl_ticket.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ssl_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/ssl_tls.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/threading.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/src/version.c -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ssl.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ssl_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ssl_cache.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ssl_ciphersuites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ssl_ciphersuites.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ssl_cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ssl_cookie.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ssl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ssl_internal.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ssl_ticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/ssl_ticket.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/threading.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/timing.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/version.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/x509.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/x509_crl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/x509_crl.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/x509_crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/x509_crt.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/x509_csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/x509_csr.h -------------------------------------------------------------------------------- /edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/edge-impulse/mbedtls_hmac_sha256_sw/mbedtls/xtea.h -------------------------------------------------------------------------------- /firmware-sdk/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | -------------------------------------------------------------------------------- /firmware-sdk/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/CHANGELOG.md -------------------------------------------------------------------------------- /firmware-sdk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/CMakeLists.txt -------------------------------------------------------------------------------- /firmware-sdk/QCBOR/inc/UsefulBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/QCBOR/inc/UsefulBuf.h -------------------------------------------------------------------------------- /firmware-sdk/QCBOR/inc/qcbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/QCBOR/inc/qcbor.h -------------------------------------------------------------------------------- /firmware-sdk/QCBOR/src/UsefulBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/QCBOR/src/UsefulBuf.c -------------------------------------------------------------------------------- /firmware-sdk/QCBOR/src/ieee754.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/QCBOR/src/ieee754.c -------------------------------------------------------------------------------- /firmware-sdk/QCBOR/src/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/QCBOR/src/ieee754.h -------------------------------------------------------------------------------- /firmware-sdk/QCBOR/src/qcbor_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/QCBOR/src/qcbor_decode.c -------------------------------------------------------------------------------- /firmware-sdk/QCBOR/src/qcbor_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/QCBOR/src/qcbor_encode.c -------------------------------------------------------------------------------- /firmware-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/README.md -------------------------------------------------------------------------------- /firmware-sdk/at-server/ei_at_command_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/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-nrf52840dk-nrf5340dk/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-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/at-server/ei_at_history.h -------------------------------------------------------------------------------- /firmware-sdk/at-server/ei_at_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/at-server/ei_at_parser.cpp -------------------------------------------------------------------------------- /firmware-sdk/at-server/ei_at_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/at-server/ei_at_parser.h -------------------------------------------------------------------------------- /firmware-sdk/at-server/ei_at_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/at-server/ei_at_server.cpp -------------------------------------------------------------------------------- /firmware-sdk/at-server/ei_at_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/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-nrf52840dk-nrf5340dk/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-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/at-server/ei_line_buffer.h -------------------------------------------------------------------------------- /firmware-sdk/at_base64_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/at_base64_lib.cpp -------------------------------------------------------------------------------- /firmware-sdk/at_base64_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/at_base64_lib.h -------------------------------------------------------------------------------- /firmware-sdk/ei_camera_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/ei_camera_interface.h -------------------------------------------------------------------------------- /firmware-sdk/ei_config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/ei_config_types.h -------------------------------------------------------------------------------- /firmware-sdk/ei_device_info_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/ei_device_info_lib.h -------------------------------------------------------------------------------- /firmware-sdk/ei_device_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/ei_device_interface.h -------------------------------------------------------------------------------- /firmware-sdk/ei_device_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/ei_device_lib.cpp -------------------------------------------------------------------------------- /firmware-sdk/ei_device_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/ei_device_lib.h -------------------------------------------------------------------------------- /firmware-sdk/ei_device_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/ei_device_memory.h -------------------------------------------------------------------------------- /firmware-sdk/ei_fusion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/ei_fusion.cpp -------------------------------------------------------------------------------- /firmware-sdk/ei_fusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/ei_fusion.h -------------------------------------------------------------------------------- /firmware-sdk/ei_image_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/ei_image_lib.cpp -------------------------------------------------------------------------------- /firmware-sdk/ei_image_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/ei_image_lib.h -------------------------------------------------------------------------------- /firmware-sdk/ei_image_nn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/ei_image_nn.h -------------------------------------------------------------------------------- /firmware-sdk/jpeg/JPEGENC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/jpeg/JPEGENC.cpp -------------------------------------------------------------------------------- /firmware-sdk/jpeg/JPEGENC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/jpeg/JPEGENC.h -------------------------------------------------------------------------------- /firmware-sdk/jpeg/encode_as_jpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/jpeg/encode_as_jpg.h -------------------------------------------------------------------------------- /firmware-sdk/jpeg/jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/jpeg/jpeg.h -------------------------------------------------------------------------------- /firmware-sdk/remote-mgmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/remote-mgmt.cpp -------------------------------------------------------------------------------- /firmware-sdk/remote-mgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/remote-mgmt.h -------------------------------------------------------------------------------- /firmware-sdk/sensor-aq/sensor_aq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/sensor-aq/sensor_aq.cpp -------------------------------------------------------------------------------- /firmware-sdk/sensor-aq/sensor_aq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/sensor-aq/sensor_aq.h -------------------------------------------------------------------------------- /firmware-sdk/sensor-aq/sensor_aq_none.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/sensor-aq/sensor_aq_none.cpp -------------------------------------------------------------------------------- /firmware-sdk/sensor-aq/sensor_aq_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/firmware-sdk/sensor-aq/sensor_aq_none.h -------------------------------------------------------------------------------- /model-parameters/anomaly_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/model-parameters/anomaly_metadata.h -------------------------------------------------------------------------------- /model-parameters/model_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/model-parameters/model_metadata.h -------------------------------------------------------------------------------- /model-parameters/model_variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/model-parameters/model_variables.h -------------------------------------------------------------------------------- /prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/prj.conf -------------------------------------------------------------------------------- /sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/sample.yaml -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/src/main.cpp -------------------------------------------------------------------------------- /tflite-model/tflite_learn_43_3_compiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/tflite-model/tflite_learn_43_3_compiled.cpp -------------------------------------------------------------------------------- /tflite-model/tflite_learn_43_3_compiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/tflite-model/tflite_learn_43_3_compiled.h -------------------------------------------------------------------------------- /tflite-model/trained_model_ops_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/tflite-model/trained_model_ops_define.h -------------------------------------------------------------------------------- /utils/cmake/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgeimpulse/firmware-nordic-nrf52840dk-nrf5340dk/HEAD/utils/cmake/utils.cmake --------------------------------------------------------------------------------