├── LICENSE.md ├── README.md ├── fw ├── .clang-format ├── .gitignore ├── common │ ├── auto_off.c │ ├── auto_off.h │ ├── bat_hw.h │ ├── dfu_hw.h │ ├── dpy.c │ ├── dpy.h │ ├── dpy_hw.h │ ├── event.h │ ├── font.c │ ├── font.h │ ├── font8.h │ ├── font_u16b.h │ ├── font_u16n.h │ ├── font_u24b.h │ ├── font_u32b.h │ ├── font_u8.h │ ├── font_u8_small.h │ ├── led.c │ ├── led.h │ ├── led_hw.h │ ├── m88e111.c │ ├── m88e111.h │ ├── m88e111_hw.h │ ├── ret.c │ ├── ret.h │ ├── ret_hw.h │ ├── sfp.c │ ├── sfp.h │ ├── sfp_hw.h │ ├── sources.mk │ ├── util.h │ ├── view.c │ ├── view.h │ ├── view_timer.h │ ├── view_util.c │ ├── view_util.h │ └── views │ │ ├── view_eye.c │ │ ├── view_i2c.c │ │ ├── view_id.c │ │ ├── view_led.c │ │ ├── view_phy.c │ │ ├── view_pwr.c │ │ ├── view_set.c │ │ ├── views.c │ │ └── views.h ├── dfu │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Core │ │ │ │ ├── Include │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ │ ├── cmsis_version.h │ │ │ │ │ ├── core_armv8mbl.h │ │ │ │ │ ├── core_armv8mml.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm0plus.h │ │ │ │ │ ├── core_cm1.h │ │ │ │ │ ├── core_cm23.h │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ ├── core_cm33.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm7.h │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ ├── core_sc300.h │ │ │ │ │ ├── mpu_armv7.h │ │ │ │ │ ├── mpu_armv8.h │ │ │ │ │ └── tz_context.h │ │ │ │ └── Template │ │ │ │ │ └── ARMv8-M │ │ │ │ │ ├── main_s.c │ │ │ │ │ └── tz_context.c │ │ │ ├── Core_A │ │ │ │ ├── Include │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ ├── cmsis_cp15.h │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ │ ├── core_ca.h │ │ │ │ │ └── irq_ctrl.h │ │ │ │ └── Source │ │ │ │ │ └── irq_ctrl_gic.c │ │ │ ├── DSP │ │ │ │ ├── DSP_Lib_TestSuite │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── JTest │ │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ │ ├── arr_desc │ │ │ │ │ │ │ │ │ └── arr_desc.h │ │ │ │ │ │ │ │ ├── jtest.h │ │ │ │ │ │ │ │ ├── jtest_cycle.h │ │ │ │ │ │ │ │ ├── jtest_define.h │ │ │ │ │ │ │ │ ├── jtest_fw.h │ │ │ │ │ │ │ │ ├── jtest_group.h │ │ │ │ │ │ │ │ ├── jtest_group_call.h │ │ │ │ │ │ │ │ ├── jtest_group_define.h │ │ │ │ │ │ │ │ ├── jtest_pf.h │ │ │ │ │ │ │ │ ├── jtest_systick.h │ │ │ │ │ │ │ │ ├── jtest_test.h │ │ │ │ │ │ │ │ ├── jtest_test_call.h │ │ │ │ │ │ │ │ ├── jtest_test_define.h │ │ │ │ │ │ │ │ ├── jtest_test_ret.h │ │ │ │ │ │ │ │ ├── jtest_util.h │ │ │ │ │ │ │ │ ├── opt_arg │ │ │ │ │ │ │ │ │ ├── opt_arg.h │ │ │ │ │ │ │ │ │ ├── pp_narg.h │ │ │ │ │ │ │ │ │ └── splice.h │ │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ │ └── util.h │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── jtest_cycle.c │ │ │ │ │ │ │ │ ├── jtest_dump_str_segments.c │ │ │ │ │ │ │ │ ├── jtest_fw.c │ │ │ │ │ │ │ │ └── jtest_trigger_action.c │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ ├── all_tests.h │ │ │ │ │ │ │ ├── basic_math_tests │ │ │ │ │ │ │ │ ├── basic_math_templates.h │ │ │ │ │ │ │ │ ├── basic_math_test_data.h │ │ │ │ │ │ │ │ ├── basic_math_test_group.h │ │ │ │ │ │ │ │ └── basic_math_tests.h │ │ │ │ │ │ │ ├── complex_math_tests │ │ │ │ │ │ │ │ ├── complex_math_templates.h │ │ │ │ │ │ │ │ ├── complex_math_test_data.h │ │ │ │ │ │ │ │ ├── complex_math_test_group.h │ │ │ │ │ │ │ │ └── complex_math_tests.h │ │ │ │ │ │ │ ├── controller_tests │ │ │ │ │ │ │ │ ├── controller_templates.h │ │ │ │ │ │ │ │ ├── controller_test_data.h │ │ │ │ │ │ │ │ ├── controller_test_group.h │ │ │ │ │ │ │ │ └── controller_tests.h │ │ │ │ │ │ │ ├── fast_math_tests │ │ │ │ │ │ │ │ ├── fast_math_templates.h │ │ │ │ │ │ │ │ ├── fast_math_test_data.h │ │ │ │ │ │ │ │ └── fast_math_test_group.h │ │ │ │ │ │ │ ├── filtering_tests │ │ │ │ │ │ │ │ ├── filtering_templates.h │ │ │ │ │ │ │ │ ├── filtering_test_data.h │ │ │ │ │ │ │ │ ├── filtering_test_group.h │ │ │ │ │ │ │ │ └── filtering_tests.h │ │ │ │ │ │ │ ├── intrinsics_tests │ │ │ │ │ │ │ │ ├── intrinsics_templates.h │ │ │ │ │ │ │ │ ├── intrinsics_test_data.h │ │ │ │ │ │ │ │ └── intrinsics_test_group.h │ │ │ │ │ │ │ ├── math_helper.h │ │ │ │ │ │ │ ├── matrix_tests │ │ │ │ │ │ │ │ ├── matrix_templates.h │ │ │ │ │ │ │ │ ├── matrix_test_data.h │ │ │ │ │ │ │ │ ├── matrix_test_group.h │ │ │ │ │ │ │ │ └── matrix_tests.h │ │ │ │ │ │ │ ├── statistics_tests │ │ │ │ │ │ │ │ ├── statistics_templates.h │ │ │ │ │ │ │ │ ├── statistics_test_data.h │ │ │ │ │ │ │ │ ├── statistics_test_group.h │ │ │ │ │ │ │ │ └── statistics_tests.h │ │ │ │ │ │ │ ├── support_tests │ │ │ │ │ │ │ │ ├── support_templates.h │ │ │ │ │ │ │ │ ├── support_test_data.h │ │ │ │ │ │ │ │ ├── support_test_group.h │ │ │ │ │ │ │ │ └── support_tests.h │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ ├── template.h │ │ │ │ │ │ │ │ └── test_templates.h │ │ │ │ │ │ │ ├── transform_tests │ │ │ │ │ │ │ │ ├── transform_templates.h │ │ │ │ │ │ │ │ ├── transform_test_data.h │ │ │ │ │ │ │ │ ├── transform_test_group.h │ │ │ │ │ │ │ │ └── transform_tests.h │ │ │ │ │ │ │ └── type_abbrev.h │ │ │ │ │ │ ├── platform │ │ │ │ │ │ │ ├── ARMCC │ │ │ │ │ │ │ │ ├── Retarget.c │ │ │ │ │ │ │ │ ├── startup_armv6-m.s │ │ │ │ │ │ │ │ └── startup_armv7-m.s │ │ │ │ │ │ │ ├── ARMCLANG │ │ │ │ │ │ │ │ ├── startup_armv6-m.S │ │ │ │ │ │ │ │ └── startup_armv7-m.S │ │ │ │ │ │ │ ├── GCC │ │ │ │ │ │ │ │ ├── Retarget.c │ │ │ │ │ │ │ │ ├── startup_armv6-m.S │ │ │ │ │ │ │ │ └── startup_armv7-m.S │ │ │ │ │ │ │ ├── startup_generic.S │ │ │ │ │ │ │ ├── system_ARMCM0.c │ │ │ │ │ │ │ ├── system_ARMCM23.c │ │ │ │ │ │ │ ├── system_ARMCM3.c │ │ │ │ │ │ │ ├── system_ARMCM33.c │ │ │ │ │ │ │ ├── system_ARMCM4.c │ │ │ │ │ │ │ ├── system_ARMCM7.c │ │ │ │ │ │ │ ├── system_ARMSC000.c │ │ │ │ │ │ │ ├── system_ARMSC300.c │ │ │ │ │ │ │ ├── system_ARMv8MBL.c │ │ │ │ │ │ │ ├── system_ARMv8MML.c │ │ │ │ │ │ │ └── system_generic.c │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── all_tests.c │ │ │ │ │ │ │ ├── basic_math_tests │ │ │ │ │ │ │ ├── abs_tests.c │ │ │ │ │ │ │ ├── add_tests.c │ │ │ │ │ │ │ ├── basic_math_test_common_data.c │ │ │ │ │ │ │ ├── basic_math_test_group.c │ │ │ │ │ │ │ ├── dot_prod_tests.c │ │ │ │ │ │ │ ├── mult_tests.c │ │ │ │ │ │ │ ├── negate_tests.c │ │ │ │ │ │ │ ├── offset_tests.c │ │ │ │ │ │ │ ├── scale_tests.c │ │ │ │ │ │ │ ├── shift_tests.c │ │ │ │ │ │ │ └── sub_tests.c │ │ │ │ │ │ │ ├── complex_math_tests │ │ │ │ │ │ │ ├── cmplx_conj_tests.c │ │ │ │ │ │ │ ├── cmplx_dot_prod_tests.c │ │ │ │ │ │ │ ├── cmplx_mag_squared_tests.c │ │ │ │ │ │ │ ├── cmplx_mag_tests.c │ │ │ │ │ │ │ ├── cmplx_mult_cmplx_tests.c │ │ │ │ │ │ │ ├── cmplx_mult_real_test.c │ │ │ │ │ │ │ ├── complex_math_test_common_data.c │ │ │ │ │ │ │ └── complex_math_test_group.c │ │ │ │ │ │ │ ├── controller_tests │ │ │ │ │ │ │ ├── controller_test_common_data.c │ │ │ │ │ │ │ ├── controller_test_group.c │ │ │ │ │ │ │ ├── pid_reset_tests.c │ │ │ │ │ │ │ ├── pid_tests.c │ │ │ │ │ │ │ └── sin_cos_tests.c │ │ │ │ │ │ │ ├── fast_math_tests │ │ │ │ │ │ │ ├── fast_math_tests.c │ │ │ │ │ │ │ └── fast_math_tests_common_data.c │ │ │ │ │ │ │ ├── filtering_tests │ │ │ │ │ │ │ ├── biquad_tests.c │ │ │ │ │ │ │ ├── conv_tests.c │ │ │ │ │ │ │ ├── correlate_tests.c │ │ │ │ │ │ │ ├── filtering_test_common_data.c │ │ │ │ │ │ │ ├── filtering_test_group.c │ │ │ │ │ │ │ ├── fir_tests.c │ │ │ │ │ │ │ ├── iir_tests.c │ │ │ │ │ │ │ └── lms_tests.c │ │ │ │ │ │ │ ├── intrinsics_tests │ │ │ │ │ │ │ ├── intrinsics_tests.c │ │ │ │ │ │ │ └── intrinsics_tests_common_data.c │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ ├── math_helper.c │ │ │ │ │ │ │ ├── matrix_tests │ │ │ │ │ │ │ ├── mat_add_tests.c │ │ │ │ │ │ │ ├── mat_cmplx_mult_tests.c │ │ │ │ │ │ │ ├── mat_init_tests.c │ │ │ │ │ │ │ ├── mat_inverse_tests.c │ │ │ │ │ │ │ ├── mat_mult_fast_tests.c │ │ │ │ │ │ │ ├── mat_mult_tests.c │ │ │ │ │ │ │ ├── mat_scale_tests.c │ │ │ │ │ │ │ ├── mat_sub_tests.c │ │ │ │ │ │ │ ├── mat_trans_tests.c │ │ │ │ │ │ │ ├── matrix_test_common_data.c │ │ │ │ │ │ │ └── matrix_test_group.c │ │ │ │ │ │ │ ├── statistics_tests │ │ │ │ │ │ │ ├── max_tests.c │ │ │ │ │ │ │ ├── mean_tests.c │ │ │ │ │ │ │ ├── min_tests.c │ │ │ │ │ │ │ ├── power_tests.c │ │ │ │ │ │ │ ├── rms_tests.c │ │ │ │ │ │ │ ├── statistics_test_common_data.c │ │ │ │ │ │ │ ├── statistics_test_group.c │ │ │ │ │ │ │ ├── std_tests.c │ │ │ │ │ │ │ └── var_tests.c │ │ │ │ │ │ │ ├── support_tests │ │ │ │ │ │ │ ├── copy_tests.c │ │ │ │ │ │ │ ├── fill_tests.c │ │ │ │ │ │ │ ├── support_test_common_data.c │ │ │ │ │ │ │ ├── support_test_group.c │ │ │ │ │ │ │ └── x_to_y_tests.c │ │ │ │ │ │ │ └── transform_tests │ │ │ │ │ │ │ ├── cfft_family_tests.c │ │ │ │ │ │ │ ├── cfft_tests.c │ │ │ │ │ │ │ ├── dct4_tests.c │ │ │ │ │ │ │ ├── rfft_fast_tests.c │ │ │ │ │ │ │ ├── rfft_tests.c │ │ │ │ │ │ │ ├── transform_test_group.c │ │ │ │ │ │ │ └── transform_tests_common_data.c │ │ │ │ │ └── RefLibs │ │ │ │ │ │ ├── inc │ │ │ │ │ │ └── ref.h │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── BasicMathFunctions │ │ │ │ │ │ ├── abs.c │ │ │ │ │ │ ├── add.c │ │ │ │ │ │ ├── dot_prod.c │ │ │ │ │ │ ├── mult.c │ │ │ │ │ │ ├── negate.c │ │ │ │ │ │ ├── offset.c │ │ │ │ │ │ ├── scale.c │ │ │ │ │ │ ├── shift.c │ │ │ │ │ │ └── sub.c │ │ │ │ │ │ ├── ComplexMathFunctions │ │ │ │ │ │ ├── cmplx_conj.c │ │ │ │ │ │ ├── cmplx_dot_prod.c │ │ │ │ │ │ ├── cmplx_mag.c │ │ │ │ │ │ ├── cmplx_mag_squared.c │ │ │ │ │ │ ├── cmplx_mult_cmplx.c │ │ │ │ │ │ └── cmplx_mult_real.c │ │ │ │ │ │ ├── ControllerFunctions │ │ │ │ │ │ ├── pid.c │ │ │ │ │ │ └── sin_cos.c │ │ │ │ │ │ ├── FastMathFunctions │ │ │ │ │ │ ├── cos.c │ │ │ │ │ │ ├── sin.c │ │ │ │ │ │ └── sqrt.c │ │ │ │ │ │ ├── FilteringFunctions │ │ │ │ │ │ ├── biquad.c │ │ │ │ │ │ ├── conv.c │ │ │ │ │ │ ├── correlate.c │ │ │ │ │ │ ├── fir.c │ │ │ │ │ │ ├── fir_decimate.c │ │ │ │ │ │ ├── fir_interpolate.c │ │ │ │ │ │ ├── fir_lattice.c │ │ │ │ │ │ ├── fir_sparse.c │ │ │ │ │ │ ├── iir_lattice.c │ │ │ │ │ │ └── lms.c │ │ │ │ │ │ ├── HelperFunctions │ │ │ │ │ │ ├── mat_helper.c │ │ │ │ │ │ └── ref_helper.c │ │ │ │ │ │ ├── Intrinsics │ │ │ │ │ │ └── intrinsics.c │ │ │ │ │ │ ├── MatrixFunctions │ │ │ │ │ │ ├── mat_add.c │ │ │ │ │ │ ├── mat_cmplx_mult.c │ │ │ │ │ │ ├── mat_inverse.c │ │ │ │ │ │ ├── mat_mult.c │ │ │ │ │ │ ├── mat_scale.c │ │ │ │ │ │ ├── mat_sub.c │ │ │ │ │ │ └── mat_trans.c │ │ │ │ │ │ ├── StatisticsFunctions │ │ │ │ │ │ ├── max.c │ │ │ │ │ │ ├── mean.c │ │ │ │ │ │ ├── min.c │ │ │ │ │ │ ├── power.c │ │ │ │ │ │ ├── rms.c │ │ │ │ │ │ ├── std.c │ │ │ │ │ │ └── var.c │ │ │ │ │ │ ├── SupportFunctions │ │ │ │ │ │ ├── copy.c │ │ │ │ │ │ ├── fill.c │ │ │ │ │ │ ├── fixed_to_fixed.c │ │ │ │ │ │ ├── fixed_to_float.c │ │ │ │ │ │ └── float_to_fixed.c │ │ │ │ │ │ └── TransformFunctions │ │ │ │ │ │ ├── bitreversal.c │ │ │ │ │ │ ├── cfft.c │ │ │ │ │ │ ├── dct4.c │ │ │ │ │ │ └── rfft.c │ │ │ │ ├── Examples │ │ │ │ │ └── ARM │ │ │ │ │ │ ├── arm_class_marks_example │ │ │ │ │ │ └── arm_class_marks_example_f32.c │ │ │ │ │ │ ├── arm_convolution_example │ │ │ │ │ │ ├── arm_convolution_example_f32.c │ │ │ │ │ │ ├── math_helper.c │ │ │ │ │ │ └── math_helper.h │ │ │ │ │ │ ├── arm_dotproduct_example │ │ │ │ │ │ └── arm_dotproduct_example_f32.c │ │ │ │ │ │ ├── arm_fft_bin_example │ │ │ │ │ │ ├── arm_fft_bin_data.c │ │ │ │ │ │ └── arm_fft_bin_example_f32.c │ │ │ │ │ │ ├── arm_fir_example │ │ │ │ │ │ ├── arm_fir_data.c │ │ │ │ │ │ ├── arm_fir_example_f32.c │ │ │ │ │ │ ├── math_helper.c │ │ │ │ │ │ └── math_helper.h │ │ │ │ │ │ ├── arm_graphic_equalizer_example │ │ │ │ │ │ ├── arm_graphic_equalizer_data.c │ │ │ │ │ │ ├── arm_graphic_equalizer_example_q31.c │ │ │ │ │ │ ├── math_helper.c │ │ │ │ │ │ └── math_helper.h │ │ │ │ │ │ ├── arm_linear_interp_example │ │ │ │ │ │ ├── arm_linear_interp_data.c │ │ │ │ │ │ ├── arm_linear_interp_example_f32.c │ │ │ │ │ │ ├── math_helper.c │ │ │ │ │ │ └── math_helper.h │ │ │ │ │ │ ├── arm_matrix_example │ │ │ │ │ │ ├── arm_matrix_example_f32.c │ │ │ │ │ │ ├── math_helper.c │ │ │ │ │ │ └── math_helper.h │ │ │ │ │ │ ├── arm_signal_converge_example │ │ │ │ │ │ ├── arm_signal_converge_data.c │ │ │ │ │ │ ├── arm_signal_converge_example_f32.c │ │ │ │ │ │ ├── math_helper.c │ │ │ │ │ │ └── math_helper.h │ │ │ │ │ │ ├── arm_sin_cos_example │ │ │ │ │ │ └── arm_sin_cos_example_f32.c │ │ │ │ │ │ └── arm_variance_example │ │ │ │ │ │ └── arm_variance_example_f32.c │ │ │ │ ├── Include │ │ │ │ │ ├── arm_common_tables.h │ │ │ │ │ ├── arm_const_structs.h │ │ │ │ │ └── arm_math.h │ │ │ │ └── Source │ │ │ │ │ ├── BasicMathFunctions │ │ │ │ │ ├── arm_abs_f32.c │ │ │ │ │ ├── arm_abs_q15.c │ │ │ │ │ ├── arm_abs_q31.c │ │ │ │ │ ├── arm_abs_q7.c │ │ │ │ │ ├── arm_add_f32.c │ │ │ │ │ ├── arm_add_q15.c │ │ │ │ │ ├── arm_add_q31.c │ │ │ │ │ ├── arm_add_q7.c │ │ │ │ │ ├── arm_dot_prod_f32.c │ │ │ │ │ ├── arm_dot_prod_q15.c │ │ │ │ │ ├── arm_dot_prod_q31.c │ │ │ │ │ ├── arm_dot_prod_q7.c │ │ │ │ │ ├── arm_mult_f32.c │ │ │ │ │ ├── arm_mult_q15.c │ │ │ │ │ ├── arm_mult_q31.c │ │ │ │ │ ├── arm_mult_q7.c │ │ │ │ │ ├── arm_negate_f32.c │ │ │ │ │ ├── arm_negate_q15.c │ │ │ │ │ ├── arm_negate_q31.c │ │ │ │ │ ├── arm_negate_q7.c │ │ │ │ │ ├── arm_offset_f32.c │ │ │ │ │ ├── arm_offset_q15.c │ │ │ │ │ ├── arm_offset_q31.c │ │ │ │ │ ├── arm_offset_q7.c │ │ │ │ │ ├── arm_scale_f32.c │ │ │ │ │ ├── arm_scale_q15.c │ │ │ │ │ ├── arm_scale_q31.c │ │ │ │ │ ├── arm_scale_q7.c │ │ │ │ │ ├── arm_shift_q15.c │ │ │ │ │ ├── arm_shift_q31.c │ │ │ │ │ ├── arm_shift_q7.c │ │ │ │ │ ├── arm_sub_f32.c │ │ │ │ │ ├── arm_sub_q15.c │ │ │ │ │ ├── arm_sub_q31.c │ │ │ │ │ └── arm_sub_q7.c │ │ │ │ │ ├── CommonTables │ │ │ │ │ ├── arm_common_tables.c │ │ │ │ │ └── arm_const_structs.c │ │ │ │ │ ├── ComplexMathFunctions │ │ │ │ │ ├── arm_cmplx_conj_f32.c │ │ │ │ │ ├── arm_cmplx_conj_q15.c │ │ │ │ │ ├── arm_cmplx_conj_q31.c │ │ │ │ │ ├── arm_cmplx_dot_prod_f32.c │ │ │ │ │ ├── arm_cmplx_dot_prod_q15.c │ │ │ │ │ ├── arm_cmplx_dot_prod_q31.c │ │ │ │ │ ├── arm_cmplx_mag_f32.c │ │ │ │ │ ├── arm_cmplx_mag_q15.c │ │ │ │ │ ├── arm_cmplx_mag_q31.c │ │ │ │ │ ├── arm_cmplx_mag_squared_f32.c │ │ │ │ │ ├── arm_cmplx_mag_squared_q15.c │ │ │ │ │ ├── arm_cmplx_mag_squared_q31.c │ │ │ │ │ ├── arm_cmplx_mult_cmplx_f32.c │ │ │ │ │ ├── arm_cmplx_mult_cmplx_q15.c │ │ │ │ │ ├── arm_cmplx_mult_cmplx_q31.c │ │ │ │ │ ├── arm_cmplx_mult_real_f32.c │ │ │ │ │ ├── arm_cmplx_mult_real_q15.c │ │ │ │ │ └── arm_cmplx_mult_real_q31.c │ │ │ │ │ ├── ControllerFunctions │ │ │ │ │ ├── arm_pid_init_f32.c │ │ │ │ │ ├── arm_pid_init_q15.c │ │ │ │ │ ├── arm_pid_init_q31.c │ │ │ │ │ ├── arm_pid_reset_f32.c │ │ │ │ │ ├── arm_pid_reset_q15.c │ │ │ │ │ ├── arm_pid_reset_q31.c │ │ │ │ │ ├── arm_sin_cos_f32.c │ │ │ │ │ └── arm_sin_cos_q31.c │ │ │ │ │ ├── FastMathFunctions │ │ │ │ │ ├── arm_cos_f32.c │ │ │ │ │ ├── arm_cos_q15.c │ │ │ │ │ ├── arm_cos_q31.c │ │ │ │ │ ├── arm_sin_f32.c │ │ │ │ │ ├── arm_sin_q15.c │ │ │ │ │ ├── arm_sin_q31.c │ │ │ │ │ ├── arm_sqrt_q15.c │ │ │ │ │ └── arm_sqrt_q31.c │ │ │ │ │ ├── FilteringFunctions │ │ │ │ │ ├── arm_biquad_cascade_df1_32x64_init_q31.c │ │ │ │ │ ├── arm_biquad_cascade_df1_32x64_q31.c │ │ │ │ │ ├── arm_biquad_cascade_df1_f32.c │ │ │ │ │ ├── arm_biquad_cascade_df1_fast_q15.c │ │ │ │ │ ├── arm_biquad_cascade_df1_fast_q31.c │ │ │ │ │ ├── arm_biquad_cascade_df1_init_f32.c │ │ │ │ │ ├── arm_biquad_cascade_df1_init_q15.c │ │ │ │ │ ├── arm_biquad_cascade_df1_init_q31.c │ │ │ │ │ ├── arm_biquad_cascade_df1_q15.c │ │ │ │ │ ├── arm_biquad_cascade_df1_q31.c │ │ │ │ │ ├── arm_biquad_cascade_df2T_f32.c │ │ │ │ │ ├── arm_biquad_cascade_df2T_f64.c │ │ │ │ │ ├── arm_biquad_cascade_df2T_init_f32.c │ │ │ │ │ ├── arm_biquad_cascade_df2T_init_f64.c │ │ │ │ │ ├── arm_biquad_cascade_stereo_df2T_f32.c │ │ │ │ │ ├── arm_biquad_cascade_stereo_df2T_init_f32.c │ │ │ │ │ ├── arm_conv_f32.c │ │ │ │ │ ├── arm_conv_fast_opt_q15.c │ │ │ │ │ ├── arm_conv_fast_q15.c │ │ │ │ │ ├── arm_conv_fast_q31.c │ │ │ │ │ ├── arm_conv_opt_q15.c │ │ │ │ │ ├── arm_conv_opt_q7.c │ │ │ │ │ ├── arm_conv_partial_f32.c │ │ │ │ │ ├── arm_conv_partial_fast_opt_q15.c │ │ │ │ │ ├── arm_conv_partial_fast_q15.c │ │ │ │ │ ├── arm_conv_partial_fast_q31.c │ │ │ │ │ ├── arm_conv_partial_opt_q15.c │ │ │ │ │ ├── arm_conv_partial_opt_q7.c │ │ │ │ │ ├── arm_conv_partial_q15.c │ │ │ │ │ ├── arm_conv_partial_q31.c │ │ │ │ │ ├── arm_conv_partial_q7.c │ │ │ │ │ ├── arm_conv_q15.c │ │ │ │ │ ├── arm_conv_q31.c │ │ │ │ │ ├── arm_conv_q7.c │ │ │ │ │ ├── arm_correlate_f32.c │ │ │ │ │ ├── arm_correlate_fast_opt_q15.c │ │ │ │ │ ├── arm_correlate_fast_q15.c │ │ │ │ │ ├── arm_correlate_fast_q31.c │ │ │ │ │ ├── arm_correlate_opt_q15.c │ │ │ │ │ ├── arm_correlate_opt_q7.c │ │ │ │ │ ├── arm_correlate_q15.c │ │ │ │ │ ├── arm_correlate_q31.c │ │ │ │ │ ├── arm_correlate_q7.c │ │ │ │ │ ├── arm_fir_decimate_f32.c │ │ │ │ │ ├── arm_fir_decimate_fast_q15.c │ │ │ │ │ ├── arm_fir_decimate_fast_q31.c │ │ │ │ │ ├── arm_fir_decimate_init_f32.c │ │ │ │ │ ├── arm_fir_decimate_init_q15.c │ │ │ │ │ ├── arm_fir_decimate_init_q31.c │ │ │ │ │ ├── arm_fir_decimate_q15.c │ │ │ │ │ ├── arm_fir_decimate_q31.c │ │ │ │ │ ├── arm_fir_f32.c │ │ │ │ │ ├── arm_fir_fast_q15.c │ │ │ │ │ ├── arm_fir_fast_q31.c │ │ │ │ │ ├── arm_fir_init_f32.c │ │ │ │ │ ├── arm_fir_init_q15.c │ │ │ │ │ ├── arm_fir_init_q31.c │ │ │ │ │ ├── arm_fir_init_q7.c │ │ │ │ │ ├── arm_fir_interpolate_f32.c │ │ │ │ │ ├── arm_fir_interpolate_init_f32.c │ │ │ │ │ ├── arm_fir_interpolate_init_q15.c │ │ │ │ │ ├── arm_fir_interpolate_init_q31.c │ │ │ │ │ ├── arm_fir_interpolate_q15.c │ │ │ │ │ ├── arm_fir_interpolate_q31.c │ │ │ │ │ ├── arm_fir_lattice_f32.c │ │ │ │ │ ├── arm_fir_lattice_init_f32.c │ │ │ │ │ ├── arm_fir_lattice_init_q15.c │ │ │ │ │ ├── arm_fir_lattice_init_q31.c │ │ │ │ │ ├── arm_fir_lattice_q15.c │ │ │ │ │ ├── arm_fir_lattice_q31.c │ │ │ │ │ ├── arm_fir_q15.c │ │ │ │ │ ├── arm_fir_q31.c │ │ │ │ │ ├── arm_fir_q7.c │ │ │ │ │ ├── arm_fir_sparse_f32.c │ │ │ │ │ ├── arm_fir_sparse_init_f32.c │ │ │ │ │ ├── arm_fir_sparse_init_q15.c │ │ │ │ │ ├── arm_fir_sparse_init_q31.c │ │ │ │ │ ├── arm_fir_sparse_init_q7.c │ │ │ │ │ ├── arm_fir_sparse_q15.c │ │ │ │ │ ├── arm_fir_sparse_q31.c │ │ │ │ │ ├── arm_fir_sparse_q7.c │ │ │ │ │ ├── arm_iir_lattice_f32.c │ │ │ │ │ ├── arm_iir_lattice_init_f32.c │ │ │ │ │ ├── arm_iir_lattice_init_q15.c │ │ │ │ │ ├── arm_iir_lattice_init_q31.c │ │ │ │ │ ├── arm_iir_lattice_q15.c │ │ │ │ │ ├── arm_iir_lattice_q31.c │ │ │ │ │ ├── arm_lms_f32.c │ │ │ │ │ ├── arm_lms_init_f32.c │ │ │ │ │ ├── arm_lms_init_q15.c │ │ │ │ │ ├── arm_lms_init_q31.c │ │ │ │ │ ├── arm_lms_norm_f32.c │ │ │ │ │ ├── arm_lms_norm_init_f32.c │ │ │ │ │ ├── arm_lms_norm_init_q15.c │ │ │ │ │ ├── arm_lms_norm_init_q31.c │ │ │ │ │ ├── arm_lms_norm_q15.c │ │ │ │ │ ├── arm_lms_norm_q31.c │ │ │ │ │ ├── arm_lms_q15.c │ │ │ │ │ └── arm_lms_q31.c │ │ │ │ │ ├── MatrixFunctions │ │ │ │ │ ├── arm_mat_add_f32.c │ │ │ │ │ ├── arm_mat_add_q15.c │ │ │ │ │ ├── arm_mat_add_q31.c │ │ │ │ │ ├── arm_mat_cmplx_mult_f32.c │ │ │ │ │ ├── arm_mat_cmplx_mult_q15.c │ │ │ │ │ ├── arm_mat_cmplx_mult_q31.c │ │ │ │ │ ├── arm_mat_init_f32.c │ │ │ │ │ ├── arm_mat_init_q15.c │ │ │ │ │ ├── arm_mat_init_q31.c │ │ │ │ │ ├── arm_mat_inverse_f32.c │ │ │ │ │ ├── arm_mat_inverse_f64.c │ │ │ │ │ ├── arm_mat_mult_f32.c │ │ │ │ │ ├── arm_mat_mult_fast_q15.c │ │ │ │ │ ├── arm_mat_mult_fast_q31.c │ │ │ │ │ ├── arm_mat_mult_q15.c │ │ │ │ │ ├── arm_mat_mult_q31.c │ │ │ │ │ ├── arm_mat_scale_f32.c │ │ │ │ │ ├── arm_mat_scale_q15.c │ │ │ │ │ ├── arm_mat_scale_q31.c │ │ │ │ │ ├── arm_mat_sub_f32.c │ │ │ │ │ ├── arm_mat_sub_q15.c │ │ │ │ │ ├── arm_mat_sub_q31.c │ │ │ │ │ ├── arm_mat_trans_f32.c │ │ │ │ │ ├── arm_mat_trans_q15.c │ │ │ │ │ └── arm_mat_trans_q31.c │ │ │ │ │ ├── StatisticsFunctions │ │ │ │ │ ├── arm_max_f32.c │ │ │ │ │ ├── arm_max_q15.c │ │ │ │ │ ├── arm_max_q31.c │ │ │ │ │ ├── arm_max_q7.c │ │ │ │ │ ├── arm_mean_f32.c │ │ │ │ │ ├── arm_mean_q15.c │ │ │ │ │ ├── arm_mean_q31.c │ │ │ │ │ ├── arm_mean_q7.c │ │ │ │ │ ├── arm_min_f32.c │ │ │ │ │ ├── arm_min_q15.c │ │ │ │ │ ├── arm_min_q31.c │ │ │ │ │ ├── arm_min_q7.c │ │ │ │ │ ├── arm_power_f32.c │ │ │ │ │ ├── arm_power_q15.c │ │ │ │ │ ├── arm_power_q31.c │ │ │ │ │ ├── arm_power_q7.c │ │ │ │ │ ├── arm_rms_f32.c │ │ │ │ │ ├── arm_rms_q15.c │ │ │ │ │ ├── arm_rms_q31.c │ │ │ │ │ ├── arm_std_f32.c │ │ │ │ │ ├── arm_std_q15.c │ │ │ │ │ ├── arm_std_q31.c │ │ │ │ │ ├── arm_var_f32.c │ │ │ │ │ ├── arm_var_q15.c │ │ │ │ │ └── arm_var_q31.c │ │ │ │ │ ├── SupportFunctions │ │ │ │ │ ├── arm_copy_f32.c │ │ │ │ │ ├── arm_copy_q15.c │ │ │ │ │ ├── arm_copy_q31.c │ │ │ │ │ ├── arm_copy_q7.c │ │ │ │ │ ├── arm_fill_f32.c │ │ │ │ │ ├── arm_fill_q15.c │ │ │ │ │ ├── arm_fill_q31.c │ │ │ │ │ ├── arm_fill_q7.c │ │ │ │ │ ├── arm_float_to_q15.c │ │ │ │ │ ├── arm_float_to_q31.c │ │ │ │ │ ├── arm_float_to_q7.c │ │ │ │ │ ├── arm_q15_to_float.c │ │ │ │ │ ├── arm_q15_to_q31.c │ │ │ │ │ ├── arm_q15_to_q7.c │ │ │ │ │ ├── arm_q31_to_float.c │ │ │ │ │ ├── arm_q31_to_q15.c │ │ │ │ │ ├── arm_q31_to_q7.c │ │ │ │ │ ├── arm_q7_to_float.c │ │ │ │ │ ├── arm_q7_to_q15.c │ │ │ │ │ └── arm_q7_to_q31.c │ │ │ │ │ └── TransformFunctions │ │ │ │ │ ├── arm_bitreversal.c │ │ │ │ │ ├── arm_bitreversal2.S │ │ │ │ │ ├── arm_cfft_f32.c │ │ │ │ │ ├── arm_cfft_q15.c │ │ │ │ │ ├── arm_cfft_q31.c │ │ │ │ │ ├── arm_cfft_radix2_f32.c │ │ │ │ │ ├── arm_cfft_radix2_init_f32.c │ │ │ │ │ ├── arm_cfft_radix2_init_q15.c │ │ │ │ │ ├── arm_cfft_radix2_init_q31.c │ │ │ │ │ ├── arm_cfft_radix2_q15.c │ │ │ │ │ ├── arm_cfft_radix2_q31.c │ │ │ │ │ ├── arm_cfft_radix4_f32.c │ │ │ │ │ ├── arm_cfft_radix4_init_f32.c │ │ │ │ │ ├── arm_cfft_radix4_init_q15.c │ │ │ │ │ ├── arm_cfft_radix4_init_q31.c │ │ │ │ │ ├── arm_cfft_radix4_q15.c │ │ │ │ │ ├── arm_cfft_radix4_q31.c │ │ │ │ │ ├── arm_cfft_radix8_f32.c │ │ │ │ │ ├── arm_dct4_f32.c │ │ │ │ │ ├── arm_dct4_init_f32.c │ │ │ │ │ ├── arm_dct4_init_q15.c │ │ │ │ │ ├── arm_dct4_init_q31.c │ │ │ │ │ ├── arm_dct4_q15.c │ │ │ │ │ ├── arm_dct4_q31.c │ │ │ │ │ ├── arm_rfft_f32.c │ │ │ │ │ ├── arm_rfft_fast_f32.c │ │ │ │ │ ├── arm_rfft_fast_init_f32.c │ │ │ │ │ ├── arm_rfft_init_f32.c │ │ │ │ │ ├── arm_rfft_init_q15.c │ │ │ │ │ ├── arm_rfft_init_q31.c │ │ │ │ │ ├── arm_rfft_q15.c │ │ │ │ │ └── arm_rfft_q31.c │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32L4xx │ │ │ │ │ ├── Include │ │ │ │ │ ├── stm32l412xx.h │ │ │ │ │ ├── stm32l422xx.h │ │ │ │ │ ├── stm32l431xx.h │ │ │ │ │ ├── stm32l432xx.h │ │ │ │ │ ├── stm32l433xx.h │ │ │ │ │ ├── stm32l442xx.h │ │ │ │ │ ├── stm32l443xx.h │ │ │ │ │ ├── stm32l451xx.h │ │ │ │ │ ├── stm32l452xx.h │ │ │ │ │ ├── stm32l462xx.h │ │ │ │ │ ├── stm32l471xx.h │ │ │ │ │ ├── stm32l475xx.h │ │ │ │ │ ├── stm32l476xx.h │ │ │ │ │ ├── stm32l485xx.h │ │ │ │ │ ├── stm32l486xx.h │ │ │ │ │ ├── stm32l496xx.h │ │ │ │ │ ├── stm32l4a6xx.h │ │ │ │ │ ├── stm32l4r5xx.h │ │ │ │ │ ├── stm32l4r7xx.h │ │ │ │ │ ├── stm32l4r9xx.h │ │ │ │ │ ├── stm32l4s5xx.h │ │ │ │ │ ├── stm32l4s7xx.h │ │ │ │ │ ├── stm32l4s9xx.h │ │ │ │ │ ├── stm32l4xx.h │ │ │ │ │ └── system_stm32l4xx.h │ │ │ │ │ └── Source │ │ │ │ │ └── Templates │ │ │ │ │ ├── arm │ │ │ │ │ ├── startup_stm32l412xx.s │ │ │ │ │ ├── startup_stm32l422xx.s │ │ │ │ │ ├── startup_stm32l431xx.s │ │ │ │ │ ├── startup_stm32l432xx.s │ │ │ │ │ ├── startup_stm32l433xx.s │ │ │ │ │ ├── startup_stm32l442xx.s │ │ │ │ │ ├── startup_stm32l443xx.s │ │ │ │ │ ├── startup_stm32l451xx.s │ │ │ │ │ ├── startup_stm32l452xx.s │ │ │ │ │ ├── startup_stm32l462xx.s │ │ │ │ │ ├── startup_stm32l471xx.s │ │ │ │ │ ├── startup_stm32l475xx.s │ │ │ │ │ ├── startup_stm32l476xx.s │ │ │ │ │ ├── startup_stm32l485xx.s │ │ │ │ │ ├── startup_stm32l486xx.s │ │ │ │ │ ├── startup_stm32l496xx.s │ │ │ │ │ ├── startup_stm32l4a6xx.s │ │ │ │ │ ├── startup_stm32l4r5xx.s │ │ │ │ │ ├── startup_stm32l4r7xx.s │ │ │ │ │ ├── startup_stm32l4r9xx.s │ │ │ │ │ ├── startup_stm32l4s5xx.s │ │ │ │ │ ├── startup_stm32l4s7xx.s │ │ │ │ │ └── startup_stm32l4s9xx.s │ │ │ │ │ ├── gcc │ │ │ │ │ ├── startup_stm32l412xx.s │ │ │ │ │ ├── startup_stm32l422xx.s │ │ │ │ │ ├── startup_stm32l431xx.s │ │ │ │ │ ├── startup_stm32l432xx.s │ │ │ │ │ ├── startup_stm32l433xx.s │ │ │ │ │ ├── startup_stm32l442xx.s │ │ │ │ │ ├── startup_stm32l443xx.s │ │ │ │ │ ├── startup_stm32l451xx.s │ │ │ │ │ ├── startup_stm32l452xx.s │ │ │ │ │ ├── startup_stm32l462xx.s │ │ │ │ │ ├── startup_stm32l471xx.s │ │ │ │ │ ├── startup_stm32l475xx.s │ │ │ │ │ ├── startup_stm32l476xx.s │ │ │ │ │ ├── startup_stm32l485xx.s │ │ │ │ │ ├── startup_stm32l486xx.s │ │ │ │ │ ├── startup_stm32l496xx.s │ │ │ │ │ ├── startup_stm32l4a6xx.s │ │ │ │ │ ├── startup_stm32l4r5xx.s │ │ │ │ │ ├── startup_stm32l4r7xx.s │ │ │ │ │ ├── startup_stm32l4r9xx.s │ │ │ │ │ ├── startup_stm32l4s5xx.s │ │ │ │ │ ├── startup_stm32l4s7xx.s │ │ │ │ │ └── startup_stm32l4s9xx.s │ │ │ │ │ ├── iar │ │ │ │ │ ├── linker │ │ │ │ │ │ ├── stm32l412xx_flash.icf │ │ │ │ │ │ ├── stm32l412xx_sram.icf │ │ │ │ │ │ ├── stm32l422xx_flash.icf │ │ │ │ │ │ ├── stm32l422xx_sram.icf │ │ │ │ │ │ ├── stm32l431xx_flash.icf │ │ │ │ │ │ ├── stm32l431xx_sram.icf │ │ │ │ │ │ ├── stm32l432xx_flash.icf │ │ │ │ │ │ ├── stm32l432xx_sram.icf │ │ │ │ │ │ ├── stm32l433xx_flash.icf │ │ │ │ │ │ ├── stm32l433xx_sram.icf │ │ │ │ │ │ ├── stm32l442xx_flash.icf │ │ │ │ │ │ ├── stm32l442xx_sram.icf │ │ │ │ │ │ ├── stm32l443xx_flash.icf │ │ │ │ │ │ ├── stm32l443xx_sram.icf │ │ │ │ │ │ ├── stm32l451xx_flash.icf │ │ │ │ │ │ ├── stm32l451xx_sram.icf │ │ │ │ │ │ ├── stm32l452xx_flash.icf │ │ │ │ │ │ ├── stm32l452xx_sram.icf │ │ │ │ │ │ ├── stm32l462xx_flash.icf │ │ │ │ │ │ ├── stm32l462xx_sram.icf │ │ │ │ │ │ ├── stm32l471xx_flash.icf │ │ │ │ │ │ ├── stm32l471xx_sram.icf │ │ │ │ │ │ ├── stm32l475xx_flash.icf │ │ │ │ │ │ ├── stm32l475xx_sram.icf │ │ │ │ │ │ ├── stm32l476xx_flash.icf │ │ │ │ │ │ ├── stm32l476xx_sram.icf │ │ │ │ │ │ ├── stm32l485xx_flash.icf │ │ │ │ │ │ ├── stm32l485xx_sram.icf │ │ │ │ │ │ ├── stm32l486xx_flash.icf │ │ │ │ │ │ ├── stm32l486xx_sram.icf │ │ │ │ │ │ ├── stm32l496xx_flash.icf │ │ │ │ │ │ ├── stm32l496xx_sram.icf │ │ │ │ │ │ ├── stm32l4a6xx_flash.icf │ │ │ │ │ │ ├── stm32l4a6xx_sram.icf │ │ │ │ │ │ ├── stm32l4r5xx_flash.icf │ │ │ │ │ │ ├── stm32l4r5xx_sram.icf │ │ │ │ │ │ ├── stm32l4r7xx_flash.icf │ │ │ │ │ │ ├── stm32l4r7xx_sram.icf │ │ │ │ │ │ ├── stm32l4r9xx_flash.icf │ │ │ │ │ │ ├── stm32l4r9xx_sram.icf │ │ │ │ │ │ ├── stm32l4s5xx_flash.icf │ │ │ │ │ │ ├── stm32l4s5xx_sram.icf │ │ │ │ │ │ ├── stm32l4s7xx_flash.icf │ │ │ │ │ │ ├── stm32l4s7xx_sram.icf │ │ │ │ │ │ ├── stm32l4s9xx_flash.icf │ │ │ │ │ │ └── stm32l4s9xx_sram.icf │ │ │ │ │ ├── startup_stm32l412xx.s │ │ │ │ │ ├── startup_stm32l422xx.s │ │ │ │ │ ├── startup_stm32l431xx.s │ │ │ │ │ ├── startup_stm32l432xx.s │ │ │ │ │ ├── startup_stm32l433xx.s │ │ │ │ │ ├── startup_stm32l442xx.s │ │ │ │ │ ├── startup_stm32l443xx.s │ │ │ │ │ ├── startup_stm32l451xx.s │ │ │ │ │ ├── startup_stm32l452xx.s │ │ │ │ │ ├── startup_stm32l462xx.s │ │ │ │ │ ├── startup_stm32l471xx.s │ │ │ │ │ ├── startup_stm32l475xx.s │ │ │ │ │ ├── startup_stm32l476xx.s │ │ │ │ │ ├── startup_stm32l485xx.s │ │ │ │ │ ├── startup_stm32l486xx.s │ │ │ │ │ ├── startup_stm32l496xx.s │ │ │ │ │ ├── startup_stm32l4a6xx.s │ │ │ │ │ ├── startup_stm32l4r5xx.s │ │ │ │ │ ├── startup_stm32l4r7xx.s │ │ │ │ │ ├── startup_stm32l4r9xx.s │ │ │ │ │ ├── startup_stm32l4s5xx.s │ │ │ │ │ ├── startup_stm32l4s7xx.s │ │ │ │ │ └── startup_stm32l4s9xx.s │ │ │ │ │ └── system_stm32l4xx.c │ │ │ ├── Include │ │ │ │ ├── cmsis_armcc.h │ │ │ │ ├── cmsis_armclang.h │ │ │ │ ├── cmsis_compiler.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ ├── cmsis_version.h │ │ │ │ ├── core_armv8mbl.h │ │ │ │ ├── core_armv8mml.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm1.h │ │ │ │ ├── core_cm23.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm33.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm7.h │ │ │ │ ├── core_sc000.h │ │ │ │ ├── core_sc300.h │ │ │ │ ├── mpu_armv7.h │ │ │ │ ├── mpu_armv8.h │ │ │ │ └── tz_context.h │ │ │ ├── Lib │ │ │ │ ├── ARM │ │ │ │ │ ├── arm_cortexM4b_math.lib │ │ │ │ │ ├── arm_cortexM4bf_math.lib │ │ │ │ │ ├── arm_cortexM4l_math.lib │ │ │ │ │ └── arm_cortexM4lf_math.lib │ │ │ │ ├── GCC │ │ │ │ │ ├── libarm_cortexM4l_math.a │ │ │ │ │ └── libarm_cortexM4lf_math.a │ │ │ │ └── IAR │ │ │ │ │ ├── iar_cortexM4b_math.a │ │ │ │ │ ├── iar_cortexM4bf_math.a │ │ │ │ │ ├── iar_cortexM4l_math.a │ │ │ │ │ └── iar_cortexM4lf_math.a │ │ │ ├── NN │ │ │ │ ├── Examples │ │ │ │ │ └── ARM │ │ │ │ │ │ └── arm_nn_examples │ │ │ │ │ │ ├── cifar10 │ │ │ │ │ │ ├── RTE │ │ │ │ │ │ │ ├── Compiler │ │ │ │ │ │ │ │ └── EventRecorderConf.h │ │ │ │ │ │ │ ├── _ARMCM0 │ │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ │ ├── _ARMCM3 │ │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ │ ├── _ARMCM4_FP │ │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ │ └── _ARMCM7_SP │ │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ ├── arm_nnexamples_cifar10.cpp │ │ │ │ │ │ ├── arm_nnexamples_cifar10_inputs.h │ │ │ │ │ │ ├── arm_nnexamples_cifar10_parameter.h │ │ │ │ │ │ └── arm_nnexamples_cifar10_weights.h │ │ │ │ │ │ └── gru │ │ │ │ │ │ ├── RTE │ │ │ │ │ │ ├── Compiler │ │ │ │ │ │ │ └── EventRecorderConf.h │ │ │ │ │ │ ├── _ARMCM0 │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ ├── _ARMCM3 │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ ├── _ARMCM4_FP │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ └── _ARMCM7_SP │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ ├── arm_nnexamples_gru.cpp │ │ │ │ │ │ └── arm_nnexamples_gru_test_data.h │ │ │ │ ├── Include │ │ │ │ │ ├── arm_nn_tables.h │ │ │ │ │ ├── arm_nnfunctions.h │ │ │ │ │ └── arm_nnsupportfunctions.h │ │ │ │ ├── NN_Lib_Tests │ │ │ │ │ └── nn_test │ │ │ │ │ │ ├── RTE │ │ │ │ │ │ ├── _ARMCM0 │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ ├── _ARMCM3 │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ ├── _ARMCM4_FP │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ └── _ARMCM7_SP │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ ├── Ref_Implementations │ │ │ │ │ │ ├── arm_convolve_HWC_q15_ref.c │ │ │ │ │ │ ├── arm_convolve_HWC_q15_ref_nonsquare.c │ │ │ │ │ │ ├── arm_convolve_HWC_q7_ref.c │ │ │ │ │ │ ├── arm_convolve_HWC_q7_ref_nonsquare.c │ │ │ │ │ │ ├── arm_depthwise_separable_conv_HWC_q7_ref.c │ │ │ │ │ │ ├── arm_depthwise_separable_conv_HWC_q7_ref_nonsquare.c │ │ │ │ │ │ ├── arm_fully_connected_mat_q7_vec_q15_opt_ref.c │ │ │ │ │ │ ├── arm_fully_connected_mat_q7_vec_q15_ref.c │ │ │ │ │ │ ├── arm_fully_connected_q15_opt_ref.c │ │ │ │ │ │ ├── arm_fully_connected_q15_ref.c │ │ │ │ │ │ ├── arm_fully_connected_q7_opt_ref.c │ │ │ │ │ │ ├── arm_fully_connected_q7_ref.c │ │ │ │ │ │ ├── arm_nn_mult_ref.c │ │ │ │ │ │ ├── arm_pool_ref.c │ │ │ │ │ │ ├── arm_relu_ref.c │ │ │ │ │ │ ├── fully_connected_testing_weights.h │ │ │ │ │ │ └── ref_functions.h │ │ │ │ │ │ ├── arm_nnexamples_nn_test.cpp │ │ │ │ │ │ └── arm_nnexamples_nn_test.h │ │ │ │ └── Source │ │ │ │ │ ├── ActivationFunctions │ │ │ │ │ ├── arm_nn_activations_q15.c │ │ │ │ │ ├── arm_nn_activations_q7.c │ │ │ │ │ ├── arm_relu_q15.c │ │ │ │ │ └── arm_relu_q7.c │ │ │ │ │ ├── ConvolutionFunctions │ │ │ │ │ ├── arm_convolve_1x1_HWC_q7_fast_nonsquare.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_depthwise_separable_conv_HWC_q7.c │ │ │ │ │ ├── arm_depthwise_separable_conv_HWC_q7_nonsquare.c │ │ │ │ │ ├── arm_nn_mat_mult_kernel_q7_q15.c │ │ │ │ │ └── arm_nn_mat_mult_kernel_q7_q15_reordered.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 │ │ │ │ │ ├── NNSupportFunctions │ │ │ │ │ ├── arm_nn_mult_q15.c │ │ │ │ │ ├── arm_nn_mult_q7.c │ │ │ │ │ ├── arm_nntables.c │ │ │ │ │ ├── arm_q7_to_q15_no_shift.c │ │ │ │ │ └── arm_q7_to_q15_reordered_no_shift.c │ │ │ │ │ ├── PoolingFunctions │ │ │ │ │ └── arm_pool_q7_HWC.c │ │ │ │ │ └── SoftmaxFunctions │ │ │ │ │ ├── arm_softmax_q15.c │ │ │ │ │ └── arm_softmax_q7.c │ │ │ ├── RTOS │ │ │ │ └── Template │ │ │ │ │ └── cmsis_os.h │ │ │ └── RTOS2 │ │ │ │ ├── Include │ │ │ │ ├── cmsis_os2.h │ │ │ │ └── os_tick.h │ │ │ │ ├── Source │ │ │ │ ├── os_systick.c │ │ │ │ ├── os_tick_gtim.c │ │ │ │ └── os_tick_ptim.c │ │ │ │ └── Template │ │ │ │ ├── cmsis_os.h │ │ │ │ └── cmsis_os1.c │ │ └── STM32L4xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ ├── stm32_hal_legacy.h │ │ │ │ └── stm32l4xx_hal_can_legacy.h │ │ │ ├── stm32_assert_template.h │ │ │ ├── stm32l4xx_hal.h │ │ │ ├── stm32l4xx_hal_adc.h │ │ │ ├── stm32l4xx_hal_adc_ex.h │ │ │ ├── stm32l4xx_hal_can.h │ │ │ ├── stm32l4xx_hal_comp.h │ │ │ ├── stm32l4xx_hal_conf_template.h │ │ │ ├── stm32l4xx_hal_cortex.h │ │ │ ├── stm32l4xx_hal_crc.h │ │ │ ├── stm32l4xx_hal_crc_ex.h │ │ │ ├── stm32l4xx_hal_cryp.h │ │ │ ├── stm32l4xx_hal_cryp_ex.h │ │ │ ├── stm32l4xx_hal_dac.h │ │ │ ├── stm32l4xx_hal_dac_ex.h │ │ │ ├── stm32l4xx_hal_dcmi.h │ │ │ ├── stm32l4xx_hal_def.h │ │ │ ├── stm32l4xx_hal_dfsdm.h │ │ │ ├── stm32l4xx_hal_dfsdm_ex.h │ │ │ ├── stm32l4xx_hal_dma.h │ │ │ ├── stm32l4xx_hal_dma2d.h │ │ │ ├── stm32l4xx_hal_dma_ex.h │ │ │ ├── stm32l4xx_hal_dsi.h │ │ │ ├── stm32l4xx_hal_exti.h │ │ │ ├── stm32l4xx_hal_firewall.h │ │ │ ├── stm32l4xx_hal_flash.h │ │ │ ├── stm32l4xx_hal_flash_ex.h │ │ │ ├── stm32l4xx_hal_flash_ramfunc.h │ │ │ ├── stm32l4xx_hal_gfxmmu.h │ │ │ ├── stm32l4xx_hal_gpio.h │ │ │ ├── stm32l4xx_hal_gpio_ex.h │ │ │ ├── stm32l4xx_hal_hash.h │ │ │ ├── stm32l4xx_hal_hash_ex.h │ │ │ ├── stm32l4xx_hal_hcd.h │ │ │ ├── stm32l4xx_hal_i2c.h │ │ │ ├── stm32l4xx_hal_i2c_ex.h │ │ │ ├── stm32l4xx_hal_irda.h │ │ │ ├── stm32l4xx_hal_irda_ex.h │ │ │ ├── stm32l4xx_hal_iwdg.h │ │ │ ├── stm32l4xx_hal_lcd.h │ │ │ ├── stm32l4xx_hal_lptim.h │ │ │ ├── stm32l4xx_hal_ltdc.h │ │ │ ├── stm32l4xx_hal_ltdc_ex.h │ │ │ ├── stm32l4xx_hal_mmc.h │ │ │ ├── stm32l4xx_hal_mmc_ex.h │ │ │ ├── stm32l4xx_hal_nand.h │ │ │ ├── stm32l4xx_hal_nor.h │ │ │ ├── stm32l4xx_hal_opamp.h │ │ │ ├── stm32l4xx_hal_opamp_ex.h │ │ │ ├── stm32l4xx_hal_ospi.h │ │ │ ├── stm32l4xx_hal_pcd.h │ │ │ ├── stm32l4xx_hal_pcd_ex.h │ │ │ ├── stm32l4xx_hal_pwr.h │ │ │ ├── stm32l4xx_hal_pwr_ex.h │ │ │ ├── stm32l4xx_hal_qspi.h │ │ │ ├── stm32l4xx_hal_rcc.h │ │ │ ├── stm32l4xx_hal_rcc_ex.h │ │ │ ├── stm32l4xx_hal_rng.h │ │ │ ├── stm32l4xx_hal_rtc.h │ │ │ ├── stm32l4xx_hal_rtc_ex.h │ │ │ ├── stm32l4xx_hal_sai.h │ │ │ ├── stm32l4xx_hal_sai_ex.h │ │ │ ├── stm32l4xx_hal_sd.h │ │ │ ├── stm32l4xx_hal_sd_ex.h │ │ │ ├── stm32l4xx_hal_smartcard.h │ │ │ ├── stm32l4xx_hal_smartcard_ex.h │ │ │ ├── stm32l4xx_hal_smbus.h │ │ │ ├── stm32l4xx_hal_spi.h │ │ │ ├── stm32l4xx_hal_spi_ex.h │ │ │ ├── stm32l4xx_hal_sram.h │ │ │ ├── stm32l4xx_hal_swpmi.h │ │ │ ├── stm32l4xx_hal_tim.h │ │ │ ├── stm32l4xx_hal_tim_ex.h │ │ │ ├── stm32l4xx_hal_tsc.h │ │ │ ├── stm32l4xx_hal_uart.h │ │ │ ├── stm32l4xx_hal_uart_ex.h │ │ │ ├── stm32l4xx_hal_usart.h │ │ │ ├── stm32l4xx_hal_usart_ex.h │ │ │ ├── stm32l4xx_hal_wwdg.h │ │ │ ├── stm32l4xx_ll_adc.h │ │ │ ├── stm32l4xx_ll_bus.h │ │ │ ├── stm32l4xx_ll_comp.h │ │ │ ├── stm32l4xx_ll_cortex.h │ │ │ ├── stm32l4xx_ll_crc.h │ │ │ ├── stm32l4xx_ll_crs.h │ │ │ ├── stm32l4xx_ll_dac.h │ │ │ ├── stm32l4xx_ll_dma.h │ │ │ ├── stm32l4xx_ll_dma2d.h │ │ │ ├── stm32l4xx_ll_dmamux.h │ │ │ ├── stm32l4xx_ll_exti.h │ │ │ ├── stm32l4xx_ll_fmc.h │ │ │ ├── stm32l4xx_ll_gpio.h │ │ │ ├── stm32l4xx_ll_i2c.h │ │ │ ├── stm32l4xx_ll_iwdg.h │ │ │ ├── stm32l4xx_ll_lptim.h │ │ │ ├── stm32l4xx_ll_lpuart.h │ │ │ ├── stm32l4xx_ll_opamp.h │ │ │ ├── stm32l4xx_ll_pwr.h │ │ │ ├── stm32l4xx_ll_rcc.h │ │ │ ├── stm32l4xx_ll_rng.h │ │ │ ├── stm32l4xx_ll_rtc.h │ │ │ ├── stm32l4xx_ll_sdmmc.h │ │ │ ├── stm32l4xx_ll_spi.h │ │ │ ├── stm32l4xx_ll_swpmi.h │ │ │ ├── stm32l4xx_ll_system.h │ │ │ ├── stm32l4xx_ll_tim.h │ │ │ ├── stm32l4xx_ll_usart.h │ │ │ ├── stm32l4xx_ll_usb.h │ │ │ ├── stm32l4xx_ll_utils.h │ │ │ └── stm32l4xx_ll_wwdg.h │ │ │ └── Src │ │ │ ├── stm32l4xx_hal.c │ │ │ ├── stm32l4xx_hal_adc.c │ │ │ ├── stm32l4xx_hal_adc_ex.c │ │ │ ├── stm32l4xx_hal_can.c │ │ │ ├── stm32l4xx_hal_comp.c │ │ │ ├── stm32l4xx_hal_cortex.c │ │ │ ├── stm32l4xx_hal_crc.c │ │ │ ├── stm32l4xx_hal_crc_ex.c │ │ │ ├── stm32l4xx_hal_cryp.c │ │ │ ├── stm32l4xx_hal_cryp_ex.c │ │ │ ├── stm32l4xx_hal_dac.c │ │ │ ├── stm32l4xx_hal_dac_ex.c │ │ │ ├── stm32l4xx_hal_dcmi.c │ │ │ ├── stm32l4xx_hal_dfsdm.c │ │ │ ├── stm32l4xx_hal_dfsdm_ex.c │ │ │ ├── stm32l4xx_hal_dma.c │ │ │ ├── stm32l4xx_hal_dma2d.c │ │ │ ├── stm32l4xx_hal_dma_ex.c │ │ │ ├── stm32l4xx_hal_dsi.c │ │ │ ├── stm32l4xx_hal_exti.c │ │ │ ├── stm32l4xx_hal_firewall.c │ │ │ ├── stm32l4xx_hal_flash.c │ │ │ ├── stm32l4xx_hal_flash_ex.c │ │ │ ├── stm32l4xx_hal_flash_ramfunc.c │ │ │ ├── stm32l4xx_hal_gfxmmu.c │ │ │ ├── stm32l4xx_hal_gpio.c │ │ │ ├── stm32l4xx_hal_hash.c │ │ │ ├── stm32l4xx_hal_hash_ex.c │ │ │ ├── stm32l4xx_hal_hcd.c │ │ │ ├── stm32l4xx_hal_i2c.c │ │ │ ├── stm32l4xx_hal_i2c_ex.c │ │ │ ├── stm32l4xx_hal_irda.c │ │ │ ├── stm32l4xx_hal_iwdg.c │ │ │ ├── stm32l4xx_hal_lcd.c │ │ │ ├── stm32l4xx_hal_lptim.c │ │ │ ├── stm32l4xx_hal_ltdc.c │ │ │ ├── stm32l4xx_hal_ltdc_ex.c │ │ │ ├── stm32l4xx_hal_mmc.c │ │ │ ├── stm32l4xx_hal_mmc_ex.c │ │ │ ├── stm32l4xx_hal_msp_template.c │ │ │ ├── stm32l4xx_hal_nand.c │ │ │ ├── stm32l4xx_hal_nor.c │ │ │ ├── stm32l4xx_hal_opamp.c │ │ │ ├── stm32l4xx_hal_opamp_ex.c │ │ │ ├── stm32l4xx_hal_ospi.c │ │ │ ├── stm32l4xx_hal_pcd.c │ │ │ ├── stm32l4xx_hal_pcd_ex.c │ │ │ ├── stm32l4xx_hal_pwr.c │ │ │ ├── stm32l4xx_hal_pwr_ex.c │ │ │ ├── stm32l4xx_hal_qspi.c │ │ │ ├── stm32l4xx_hal_rcc.c │ │ │ ├── stm32l4xx_hal_rcc_ex.c │ │ │ ├── stm32l4xx_hal_rng.c │ │ │ ├── stm32l4xx_hal_rtc.c │ │ │ ├── stm32l4xx_hal_rtc_ex.c │ │ │ ├── stm32l4xx_hal_sai.c │ │ │ ├── stm32l4xx_hal_sai_ex.c │ │ │ ├── stm32l4xx_hal_sd.c │ │ │ ├── stm32l4xx_hal_sd_ex.c │ │ │ ├── stm32l4xx_hal_smartcard.c │ │ │ ├── stm32l4xx_hal_smartcard_ex.c │ │ │ ├── stm32l4xx_hal_smbus.c │ │ │ ├── stm32l4xx_hal_spi.c │ │ │ ├── stm32l4xx_hal_spi_ex.c │ │ │ ├── stm32l4xx_hal_sram.c │ │ │ ├── stm32l4xx_hal_swpmi.c │ │ │ ├── stm32l4xx_hal_tim.c │ │ │ ├── stm32l4xx_hal_tim_ex.c │ │ │ ├── stm32l4xx_hal_timebase_tim_template.c │ │ │ ├── stm32l4xx_hal_tsc.c │ │ │ ├── stm32l4xx_hal_uart.c │ │ │ ├── stm32l4xx_hal_uart_ex.c │ │ │ ├── stm32l4xx_hal_usart.c │ │ │ ├── stm32l4xx_hal_usart_ex.c │ │ │ ├── stm32l4xx_hal_wwdg.c │ │ │ ├── stm32l4xx_ll_adc.c │ │ │ ├── stm32l4xx_ll_comp.c │ │ │ ├── stm32l4xx_ll_crc.c │ │ │ ├── stm32l4xx_ll_crs.c │ │ │ ├── stm32l4xx_ll_dac.c │ │ │ ├── stm32l4xx_ll_dma.c │ │ │ ├── stm32l4xx_ll_dma2d.c │ │ │ ├── stm32l4xx_ll_exti.c │ │ │ ├── stm32l4xx_ll_fmc.c │ │ │ ├── stm32l4xx_ll_gpio.c │ │ │ ├── stm32l4xx_ll_i2c.c │ │ │ ├── stm32l4xx_ll_lptim.c │ │ │ ├── stm32l4xx_ll_lpuart.c │ │ │ ├── stm32l4xx_ll_opamp.c │ │ │ ├── stm32l4xx_ll_pwr.c │ │ │ ├── stm32l4xx_ll_rcc.c │ │ │ ├── stm32l4xx_ll_rng.c │ │ │ ├── stm32l4xx_ll_rtc.c │ │ │ ├── stm32l4xx_ll_sdmmc.c │ │ │ ├── stm32l4xx_ll_spi.c │ │ │ ├── stm32l4xx_ll_swpmi.c │ │ │ ├── stm32l4xx_ll_tim.c │ │ │ ├── stm32l4xx_ll_usart.c │ │ │ ├── stm32l4xx_ll_usb.c │ │ │ └── stm32l4xx_ll_utils.c │ ├── Inc │ │ ├── main.h │ │ ├── stm32_assert.h │ │ ├── stm32l4xx_hal_conf.h │ │ ├── stm32l4xx_it.h │ │ ├── trg_conf.h │ │ ├── usb_device.h │ │ ├── usbd_conf.h │ │ ├── usbd_desc.h │ │ └── usbd_dfu_if.h │ ├── Makefile │ ├── Middlewares │ │ └── ST │ │ │ └── STM32_USB_Device_Library │ │ │ ├── Class │ │ │ └── DFU │ │ │ │ ├── Inc │ │ │ │ ├── usbd_dfu.h │ │ │ │ └── usbd_dfu_media_template.h │ │ │ │ └── Src │ │ │ │ ├── usbd_dfu.c │ │ │ │ └── usbd_dfu_media_template.c │ │ │ └── Core │ │ │ ├── Inc │ │ │ ├── usbd_conf_template.h │ │ │ ├── usbd_core.h │ │ │ ├── usbd_ctlreq.h │ │ │ ├── usbd_def.h │ │ │ ├── usbd_desc_template.h │ │ │ └── usbd_ioreq.h │ │ │ └── Src │ │ │ ├── usbd_conf_template.c │ │ │ ├── usbd_core.c │ │ │ ├── usbd_ctlreq.c │ │ │ ├── usbd_desc_template.c │ │ │ └── usbd_ioreq.c │ ├── STM32L412CBUx_FLASH.ld │ ├── Src │ │ ├── main.c │ │ ├── stm32l4xx_hal_msp.c │ │ ├── stm32l4xx_it.c │ │ ├── system_stm32l4xx.c │ │ ├── usb_device.c │ │ ├── usbd_conf.c │ │ ├── usbd_desc.c │ │ └── usbd_dfu_if.c │ ├── hubble-dfu.ioc │ └── startup_stm32l412xx.s ├── sim │ ├── .gitignore │ ├── Makefile │ ├── bat_hw.c │ ├── dpy_hw.c │ ├── led_hw.c │ ├── m88e111_hw.c │ ├── ret_hw.c │ ├── sfp_hw.c │ ├── sim.c │ ├── trg_conf.h │ ├── ui.glade │ └── ui.py ├── target-common │ ├── Inc │ │ ├── dpy_trg.h │ │ └── version_info.h │ └── Src │ │ └── dpy_trg.c └── target │ ├── Drivers │ ├── CMSIS │ │ ├── Core │ │ │ ├── Include │ │ │ │ ├── cmsis_armcc.h │ │ │ │ ├── cmsis_armclang.h │ │ │ │ ├── cmsis_compiler.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ ├── cmsis_version.h │ │ │ │ ├── core_armv8mbl.h │ │ │ │ ├── core_armv8mml.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm1.h │ │ │ │ ├── core_cm23.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm33.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm7.h │ │ │ │ ├── core_sc000.h │ │ │ │ ├── core_sc300.h │ │ │ │ ├── mpu_armv7.h │ │ │ │ ├── mpu_armv8.h │ │ │ │ └── tz_context.h │ │ │ └── Template │ │ │ │ └── ARMv8-M │ │ │ │ ├── main_s.c │ │ │ │ └── tz_context.c │ │ ├── Core_A │ │ │ ├── Include │ │ │ │ ├── cmsis_armcc.h │ │ │ │ ├── cmsis_armclang.h │ │ │ │ ├── cmsis_compiler.h │ │ │ │ ├── cmsis_cp15.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ ├── core_ca.h │ │ │ │ └── irq_ctrl.h │ │ │ └── Source │ │ │ │ └── irq_ctrl_gic.c │ │ ├── DSP │ │ │ ├── DSP_Lib_TestSuite │ │ │ │ ├── Common │ │ │ │ │ ├── JTest │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ ├── arr_desc │ │ │ │ │ │ │ │ └── arr_desc.h │ │ │ │ │ │ │ ├── jtest.h │ │ │ │ │ │ │ ├── jtest_cycle.h │ │ │ │ │ │ │ ├── jtest_define.h │ │ │ │ │ │ │ ├── jtest_fw.h │ │ │ │ │ │ │ ├── jtest_group.h │ │ │ │ │ │ │ ├── jtest_group_call.h │ │ │ │ │ │ │ ├── jtest_group_define.h │ │ │ │ │ │ │ ├── jtest_pf.h │ │ │ │ │ │ │ ├── jtest_systick.h │ │ │ │ │ │ │ ├── jtest_test.h │ │ │ │ │ │ │ ├── jtest_test_call.h │ │ │ │ │ │ │ ├── jtest_test_define.h │ │ │ │ │ │ │ ├── jtest_test_ret.h │ │ │ │ │ │ │ ├── jtest_util.h │ │ │ │ │ │ │ ├── opt_arg │ │ │ │ │ │ │ │ ├── opt_arg.h │ │ │ │ │ │ │ │ ├── pp_narg.h │ │ │ │ │ │ │ │ └── splice.h │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ └── util.h │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── jtest_cycle.c │ │ │ │ │ │ │ ├── jtest_dump_str_segments.c │ │ │ │ │ │ │ ├── jtest_fw.c │ │ │ │ │ │ │ └── jtest_trigger_action.c │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── all_tests.h │ │ │ │ │ │ ├── basic_math_tests │ │ │ │ │ │ │ ├── basic_math_templates.h │ │ │ │ │ │ │ ├── basic_math_test_data.h │ │ │ │ │ │ │ ├── basic_math_test_group.h │ │ │ │ │ │ │ └── basic_math_tests.h │ │ │ │ │ │ ├── complex_math_tests │ │ │ │ │ │ │ ├── complex_math_templates.h │ │ │ │ │ │ │ ├── complex_math_test_data.h │ │ │ │ │ │ │ ├── complex_math_test_group.h │ │ │ │ │ │ │ └── complex_math_tests.h │ │ │ │ │ │ ├── controller_tests │ │ │ │ │ │ │ ├── controller_templates.h │ │ │ │ │ │ │ ├── controller_test_data.h │ │ │ │ │ │ │ ├── controller_test_group.h │ │ │ │ │ │ │ └── controller_tests.h │ │ │ │ │ │ ├── fast_math_tests │ │ │ │ │ │ │ ├── fast_math_templates.h │ │ │ │ │ │ │ ├── fast_math_test_data.h │ │ │ │ │ │ │ └── fast_math_test_group.h │ │ │ │ │ │ ├── filtering_tests │ │ │ │ │ │ │ ├── filtering_templates.h │ │ │ │ │ │ │ ├── filtering_test_data.h │ │ │ │ │ │ │ ├── filtering_test_group.h │ │ │ │ │ │ │ └── filtering_tests.h │ │ │ │ │ │ ├── intrinsics_tests │ │ │ │ │ │ │ ├── intrinsics_templates.h │ │ │ │ │ │ │ ├── intrinsics_test_data.h │ │ │ │ │ │ │ └── intrinsics_test_group.h │ │ │ │ │ │ ├── math_helper.h │ │ │ │ │ │ ├── matrix_tests │ │ │ │ │ │ │ ├── matrix_templates.h │ │ │ │ │ │ │ ├── matrix_test_data.h │ │ │ │ │ │ │ ├── matrix_test_group.h │ │ │ │ │ │ │ └── matrix_tests.h │ │ │ │ │ │ ├── statistics_tests │ │ │ │ │ │ │ ├── statistics_templates.h │ │ │ │ │ │ │ ├── statistics_test_data.h │ │ │ │ │ │ │ ├── statistics_test_group.h │ │ │ │ │ │ │ └── statistics_tests.h │ │ │ │ │ │ ├── support_tests │ │ │ │ │ │ │ ├── support_templates.h │ │ │ │ │ │ │ ├── support_test_data.h │ │ │ │ │ │ │ ├── support_test_group.h │ │ │ │ │ │ │ └── support_tests.h │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ ├── template.h │ │ │ │ │ │ │ └── test_templates.h │ │ │ │ │ │ ├── transform_tests │ │ │ │ │ │ │ ├── transform_templates.h │ │ │ │ │ │ │ ├── transform_test_data.h │ │ │ │ │ │ │ ├── transform_test_group.h │ │ │ │ │ │ │ └── transform_tests.h │ │ │ │ │ │ └── type_abbrev.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── ARMCC │ │ │ │ │ │ │ ├── Retarget.c │ │ │ │ │ │ │ ├── startup_armv6-m.s │ │ │ │ │ │ │ └── startup_armv7-m.s │ │ │ │ │ │ ├── ARMCLANG │ │ │ │ │ │ │ ├── startup_armv6-m.S │ │ │ │ │ │ │ └── startup_armv7-m.S │ │ │ │ │ │ ├── GCC │ │ │ │ │ │ │ ├── Retarget.c │ │ │ │ │ │ │ ├── startup_armv6-m.S │ │ │ │ │ │ │ └── startup_armv7-m.S │ │ │ │ │ │ ├── startup_generic.S │ │ │ │ │ │ ├── system_ARMCM0.c │ │ │ │ │ │ ├── system_ARMCM23.c │ │ │ │ │ │ ├── system_ARMCM3.c │ │ │ │ │ │ ├── system_ARMCM33.c │ │ │ │ │ │ ├── system_ARMCM4.c │ │ │ │ │ │ ├── system_ARMCM7.c │ │ │ │ │ │ ├── system_ARMSC000.c │ │ │ │ │ │ ├── system_ARMSC300.c │ │ │ │ │ │ ├── system_ARMv8MBL.c │ │ │ │ │ │ ├── system_ARMv8MML.c │ │ │ │ │ │ └── system_generic.c │ │ │ │ │ └── src │ │ │ │ │ │ ├── all_tests.c │ │ │ │ │ │ ├── basic_math_tests │ │ │ │ │ │ ├── abs_tests.c │ │ │ │ │ │ ├── add_tests.c │ │ │ │ │ │ ├── basic_math_test_common_data.c │ │ │ │ │ │ ├── basic_math_test_group.c │ │ │ │ │ │ ├── dot_prod_tests.c │ │ │ │ │ │ ├── mult_tests.c │ │ │ │ │ │ ├── negate_tests.c │ │ │ │ │ │ ├── offset_tests.c │ │ │ │ │ │ ├── scale_tests.c │ │ │ │ │ │ ├── shift_tests.c │ │ │ │ │ │ └── sub_tests.c │ │ │ │ │ │ ├── complex_math_tests │ │ │ │ │ │ ├── cmplx_conj_tests.c │ │ │ │ │ │ ├── cmplx_dot_prod_tests.c │ │ │ │ │ │ ├── cmplx_mag_squared_tests.c │ │ │ │ │ │ ├── cmplx_mag_tests.c │ │ │ │ │ │ ├── cmplx_mult_cmplx_tests.c │ │ │ │ │ │ ├── cmplx_mult_real_test.c │ │ │ │ │ │ ├── complex_math_test_common_data.c │ │ │ │ │ │ └── complex_math_test_group.c │ │ │ │ │ │ ├── controller_tests │ │ │ │ │ │ ├── controller_test_common_data.c │ │ │ │ │ │ ├── controller_test_group.c │ │ │ │ │ │ ├── pid_reset_tests.c │ │ │ │ │ │ ├── pid_tests.c │ │ │ │ │ │ └── sin_cos_tests.c │ │ │ │ │ │ ├── fast_math_tests │ │ │ │ │ │ ├── fast_math_tests.c │ │ │ │ │ │ └── fast_math_tests_common_data.c │ │ │ │ │ │ ├── filtering_tests │ │ │ │ │ │ ├── biquad_tests.c │ │ │ │ │ │ ├── conv_tests.c │ │ │ │ │ │ ├── correlate_tests.c │ │ │ │ │ │ ├── filtering_test_common_data.c │ │ │ │ │ │ ├── filtering_test_group.c │ │ │ │ │ │ ├── fir_tests.c │ │ │ │ │ │ ├── iir_tests.c │ │ │ │ │ │ └── lms_tests.c │ │ │ │ │ │ ├── intrinsics_tests │ │ │ │ │ │ ├── intrinsics_tests.c │ │ │ │ │ │ └── intrinsics_tests_common_data.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── math_helper.c │ │ │ │ │ │ ├── matrix_tests │ │ │ │ │ │ ├── mat_add_tests.c │ │ │ │ │ │ ├── mat_cmplx_mult_tests.c │ │ │ │ │ │ ├── mat_init_tests.c │ │ │ │ │ │ ├── mat_inverse_tests.c │ │ │ │ │ │ ├── mat_mult_fast_tests.c │ │ │ │ │ │ ├── mat_mult_tests.c │ │ │ │ │ │ ├── mat_scale_tests.c │ │ │ │ │ │ ├── mat_sub_tests.c │ │ │ │ │ │ ├── mat_trans_tests.c │ │ │ │ │ │ ├── matrix_test_common_data.c │ │ │ │ │ │ └── matrix_test_group.c │ │ │ │ │ │ ├── statistics_tests │ │ │ │ │ │ ├── max_tests.c │ │ │ │ │ │ ├── mean_tests.c │ │ │ │ │ │ ├── min_tests.c │ │ │ │ │ │ ├── power_tests.c │ │ │ │ │ │ ├── rms_tests.c │ │ │ │ │ │ ├── statistics_test_common_data.c │ │ │ │ │ │ ├── statistics_test_group.c │ │ │ │ │ │ ├── std_tests.c │ │ │ │ │ │ └── var_tests.c │ │ │ │ │ │ ├── support_tests │ │ │ │ │ │ ├── copy_tests.c │ │ │ │ │ │ ├── fill_tests.c │ │ │ │ │ │ ├── support_test_common_data.c │ │ │ │ │ │ ├── support_test_group.c │ │ │ │ │ │ └── x_to_y_tests.c │ │ │ │ │ │ └── transform_tests │ │ │ │ │ │ ├── cfft_family_tests.c │ │ │ │ │ │ ├── cfft_tests.c │ │ │ │ │ │ ├── dct4_tests.c │ │ │ │ │ │ ├── rfft_fast_tests.c │ │ │ │ │ │ ├── rfft_tests.c │ │ │ │ │ │ ├── transform_test_group.c │ │ │ │ │ │ └── transform_tests_common_data.c │ │ │ │ └── RefLibs │ │ │ │ │ ├── inc │ │ │ │ │ └── ref.h │ │ │ │ │ └── src │ │ │ │ │ ├── BasicMathFunctions │ │ │ │ │ ├── abs.c │ │ │ │ │ ├── add.c │ │ │ │ │ ├── dot_prod.c │ │ │ │ │ ├── mult.c │ │ │ │ │ ├── negate.c │ │ │ │ │ ├── offset.c │ │ │ │ │ ├── scale.c │ │ │ │ │ ├── shift.c │ │ │ │ │ └── sub.c │ │ │ │ │ ├── ComplexMathFunctions │ │ │ │ │ ├── cmplx_conj.c │ │ │ │ │ ├── cmplx_dot_prod.c │ │ │ │ │ ├── cmplx_mag.c │ │ │ │ │ ├── cmplx_mag_squared.c │ │ │ │ │ ├── cmplx_mult_cmplx.c │ │ │ │ │ └── cmplx_mult_real.c │ │ │ │ │ ├── ControllerFunctions │ │ │ │ │ ├── pid.c │ │ │ │ │ └── sin_cos.c │ │ │ │ │ ├── FastMathFunctions │ │ │ │ │ ├── cos.c │ │ │ │ │ ├── sin.c │ │ │ │ │ └── sqrt.c │ │ │ │ │ ├── FilteringFunctions │ │ │ │ │ ├── biquad.c │ │ │ │ │ ├── conv.c │ │ │ │ │ ├── correlate.c │ │ │ │ │ ├── fir.c │ │ │ │ │ ├── fir_decimate.c │ │ │ │ │ ├── fir_interpolate.c │ │ │ │ │ ├── fir_lattice.c │ │ │ │ │ ├── fir_sparse.c │ │ │ │ │ ├── iir_lattice.c │ │ │ │ │ └── lms.c │ │ │ │ │ ├── HelperFunctions │ │ │ │ │ ├── mat_helper.c │ │ │ │ │ └── ref_helper.c │ │ │ │ │ ├── Intrinsics │ │ │ │ │ └── intrinsics.c │ │ │ │ │ ├── MatrixFunctions │ │ │ │ │ ├── mat_add.c │ │ │ │ │ ├── mat_cmplx_mult.c │ │ │ │ │ ├── mat_inverse.c │ │ │ │ │ ├── mat_mult.c │ │ │ │ │ ├── mat_scale.c │ │ │ │ │ ├── mat_sub.c │ │ │ │ │ └── mat_trans.c │ │ │ │ │ ├── StatisticsFunctions │ │ │ │ │ ├── max.c │ │ │ │ │ ├── mean.c │ │ │ │ │ ├── min.c │ │ │ │ │ ├── power.c │ │ │ │ │ ├── rms.c │ │ │ │ │ ├── std.c │ │ │ │ │ └── var.c │ │ │ │ │ ├── SupportFunctions │ │ │ │ │ ├── copy.c │ │ │ │ │ ├── fill.c │ │ │ │ │ ├── fixed_to_fixed.c │ │ │ │ │ ├── fixed_to_float.c │ │ │ │ │ └── float_to_fixed.c │ │ │ │ │ └── TransformFunctions │ │ │ │ │ ├── bitreversal.c │ │ │ │ │ ├── cfft.c │ │ │ │ │ ├── dct4.c │ │ │ │ │ └── rfft.c │ │ │ ├── Examples │ │ │ │ └── ARM │ │ │ │ │ ├── arm_class_marks_example │ │ │ │ │ └── arm_class_marks_example_f32.c │ │ │ │ │ ├── arm_convolution_example │ │ │ │ │ ├── arm_convolution_example_f32.c │ │ │ │ │ ├── math_helper.c │ │ │ │ │ └── math_helper.h │ │ │ │ │ ├── arm_dotproduct_example │ │ │ │ │ └── arm_dotproduct_example_f32.c │ │ │ │ │ ├── arm_fft_bin_example │ │ │ │ │ ├── arm_fft_bin_data.c │ │ │ │ │ └── arm_fft_bin_example_f32.c │ │ │ │ │ ├── arm_fir_example │ │ │ │ │ ├── arm_fir_data.c │ │ │ │ │ ├── arm_fir_example_f32.c │ │ │ │ │ ├── math_helper.c │ │ │ │ │ └── math_helper.h │ │ │ │ │ ├── arm_graphic_equalizer_example │ │ │ │ │ ├── arm_graphic_equalizer_data.c │ │ │ │ │ ├── arm_graphic_equalizer_example_q31.c │ │ │ │ │ ├── math_helper.c │ │ │ │ │ └── math_helper.h │ │ │ │ │ ├── arm_linear_interp_example │ │ │ │ │ ├── arm_linear_interp_data.c │ │ │ │ │ ├── arm_linear_interp_example_f32.c │ │ │ │ │ ├── math_helper.c │ │ │ │ │ └── math_helper.h │ │ │ │ │ ├── arm_matrix_example │ │ │ │ │ ├── arm_matrix_example_f32.c │ │ │ │ │ ├── math_helper.c │ │ │ │ │ └── math_helper.h │ │ │ │ │ ├── arm_signal_converge_example │ │ │ │ │ ├── arm_signal_converge_data.c │ │ │ │ │ ├── arm_signal_converge_example_f32.c │ │ │ │ │ ├── math_helper.c │ │ │ │ │ └── math_helper.h │ │ │ │ │ ├── arm_sin_cos_example │ │ │ │ │ └── arm_sin_cos_example_f32.c │ │ │ │ │ └── arm_variance_example │ │ │ │ │ └── arm_variance_example_f32.c │ │ │ ├── Include │ │ │ │ ├── arm_common_tables.h │ │ │ │ ├── arm_const_structs.h │ │ │ │ └── arm_math.h │ │ │ └── Source │ │ │ │ ├── BasicMathFunctions │ │ │ │ ├── arm_abs_f32.c │ │ │ │ ├── arm_abs_q15.c │ │ │ │ ├── arm_abs_q31.c │ │ │ │ ├── arm_abs_q7.c │ │ │ │ ├── arm_add_f32.c │ │ │ │ ├── arm_add_q15.c │ │ │ │ ├── arm_add_q31.c │ │ │ │ ├── arm_add_q7.c │ │ │ │ ├── arm_dot_prod_f32.c │ │ │ │ ├── arm_dot_prod_q15.c │ │ │ │ ├── arm_dot_prod_q31.c │ │ │ │ ├── arm_dot_prod_q7.c │ │ │ │ ├── arm_mult_f32.c │ │ │ │ ├── arm_mult_q15.c │ │ │ │ ├── arm_mult_q31.c │ │ │ │ ├── arm_mult_q7.c │ │ │ │ ├── arm_negate_f32.c │ │ │ │ ├── arm_negate_q15.c │ │ │ │ ├── arm_negate_q31.c │ │ │ │ ├── arm_negate_q7.c │ │ │ │ ├── arm_offset_f32.c │ │ │ │ ├── arm_offset_q15.c │ │ │ │ ├── arm_offset_q31.c │ │ │ │ ├── arm_offset_q7.c │ │ │ │ ├── arm_scale_f32.c │ │ │ │ ├── arm_scale_q15.c │ │ │ │ ├── arm_scale_q31.c │ │ │ │ ├── arm_scale_q7.c │ │ │ │ ├── arm_shift_q15.c │ │ │ │ ├── arm_shift_q31.c │ │ │ │ ├── arm_shift_q7.c │ │ │ │ ├── arm_sub_f32.c │ │ │ │ ├── arm_sub_q15.c │ │ │ │ ├── arm_sub_q31.c │ │ │ │ └── arm_sub_q7.c │ │ │ │ ├── CommonTables │ │ │ │ ├── arm_common_tables.c │ │ │ │ └── arm_const_structs.c │ │ │ │ ├── ComplexMathFunctions │ │ │ │ ├── arm_cmplx_conj_f32.c │ │ │ │ ├── arm_cmplx_conj_q15.c │ │ │ │ ├── arm_cmplx_conj_q31.c │ │ │ │ ├── arm_cmplx_dot_prod_f32.c │ │ │ │ ├── arm_cmplx_dot_prod_q15.c │ │ │ │ ├── arm_cmplx_dot_prod_q31.c │ │ │ │ ├── arm_cmplx_mag_f32.c │ │ │ │ ├── arm_cmplx_mag_q15.c │ │ │ │ ├── arm_cmplx_mag_q31.c │ │ │ │ ├── arm_cmplx_mag_squared_f32.c │ │ │ │ ├── arm_cmplx_mag_squared_q15.c │ │ │ │ ├── arm_cmplx_mag_squared_q31.c │ │ │ │ ├── arm_cmplx_mult_cmplx_f32.c │ │ │ │ ├── arm_cmplx_mult_cmplx_q15.c │ │ │ │ ├── arm_cmplx_mult_cmplx_q31.c │ │ │ │ ├── arm_cmplx_mult_real_f32.c │ │ │ │ ├── arm_cmplx_mult_real_q15.c │ │ │ │ └── arm_cmplx_mult_real_q31.c │ │ │ │ ├── ControllerFunctions │ │ │ │ ├── arm_pid_init_f32.c │ │ │ │ ├── arm_pid_init_q15.c │ │ │ │ ├── arm_pid_init_q31.c │ │ │ │ ├── arm_pid_reset_f32.c │ │ │ │ ├── arm_pid_reset_q15.c │ │ │ │ ├── arm_pid_reset_q31.c │ │ │ │ ├── arm_sin_cos_f32.c │ │ │ │ └── arm_sin_cos_q31.c │ │ │ │ ├── FastMathFunctions │ │ │ │ ├── arm_cos_f32.c │ │ │ │ ├── arm_cos_q15.c │ │ │ │ ├── arm_cos_q31.c │ │ │ │ ├── arm_sin_f32.c │ │ │ │ ├── arm_sin_q15.c │ │ │ │ ├── arm_sin_q31.c │ │ │ │ ├── arm_sqrt_q15.c │ │ │ │ └── arm_sqrt_q31.c │ │ │ │ ├── FilteringFunctions │ │ │ │ ├── arm_biquad_cascade_df1_32x64_init_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_32x64_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_f32.c │ │ │ │ ├── arm_biquad_cascade_df1_fast_q15.c │ │ │ │ ├── arm_biquad_cascade_df1_fast_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_init_f32.c │ │ │ │ ├── arm_biquad_cascade_df1_init_q15.c │ │ │ │ ├── arm_biquad_cascade_df1_init_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_q15.c │ │ │ │ ├── arm_biquad_cascade_df1_q31.c │ │ │ │ ├── arm_biquad_cascade_df2T_f32.c │ │ │ │ ├── arm_biquad_cascade_df2T_f64.c │ │ │ │ ├── arm_biquad_cascade_df2T_init_f32.c │ │ │ │ ├── arm_biquad_cascade_df2T_init_f64.c │ │ │ │ ├── arm_biquad_cascade_stereo_df2T_f32.c │ │ │ │ ├── arm_biquad_cascade_stereo_df2T_init_f32.c │ │ │ │ ├── arm_conv_f32.c │ │ │ │ ├── arm_conv_fast_opt_q15.c │ │ │ │ ├── arm_conv_fast_q15.c │ │ │ │ ├── arm_conv_fast_q31.c │ │ │ │ ├── arm_conv_opt_q15.c │ │ │ │ ├── arm_conv_opt_q7.c │ │ │ │ ├── arm_conv_partial_f32.c │ │ │ │ ├── arm_conv_partial_fast_opt_q15.c │ │ │ │ ├── arm_conv_partial_fast_q15.c │ │ │ │ ├── arm_conv_partial_fast_q31.c │ │ │ │ ├── arm_conv_partial_opt_q15.c │ │ │ │ ├── arm_conv_partial_opt_q7.c │ │ │ │ ├── arm_conv_partial_q15.c │ │ │ │ ├── arm_conv_partial_q31.c │ │ │ │ ├── arm_conv_partial_q7.c │ │ │ │ ├── arm_conv_q15.c │ │ │ │ ├── arm_conv_q31.c │ │ │ │ ├── arm_conv_q7.c │ │ │ │ ├── arm_correlate_f32.c │ │ │ │ ├── arm_correlate_fast_opt_q15.c │ │ │ │ ├── arm_correlate_fast_q15.c │ │ │ │ ├── arm_correlate_fast_q31.c │ │ │ │ ├── arm_correlate_opt_q15.c │ │ │ │ ├── arm_correlate_opt_q7.c │ │ │ │ ├── arm_correlate_q15.c │ │ │ │ ├── arm_correlate_q31.c │ │ │ │ ├── arm_correlate_q7.c │ │ │ │ ├── arm_fir_decimate_f32.c │ │ │ │ ├── arm_fir_decimate_fast_q15.c │ │ │ │ ├── arm_fir_decimate_fast_q31.c │ │ │ │ ├── arm_fir_decimate_init_f32.c │ │ │ │ ├── arm_fir_decimate_init_q15.c │ │ │ │ ├── arm_fir_decimate_init_q31.c │ │ │ │ ├── arm_fir_decimate_q15.c │ │ │ │ ├── arm_fir_decimate_q31.c │ │ │ │ ├── arm_fir_f32.c │ │ │ │ ├── arm_fir_fast_q15.c │ │ │ │ ├── arm_fir_fast_q31.c │ │ │ │ ├── arm_fir_init_f32.c │ │ │ │ ├── arm_fir_init_q15.c │ │ │ │ ├── arm_fir_init_q31.c │ │ │ │ ├── arm_fir_init_q7.c │ │ │ │ ├── arm_fir_interpolate_f32.c │ │ │ │ ├── arm_fir_interpolate_init_f32.c │ │ │ │ ├── arm_fir_interpolate_init_q15.c │ │ │ │ ├── arm_fir_interpolate_init_q31.c │ │ │ │ ├── arm_fir_interpolate_q15.c │ │ │ │ ├── arm_fir_interpolate_q31.c │ │ │ │ ├── arm_fir_lattice_f32.c │ │ │ │ ├── arm_fir_lattice_init_f32.c │ │ │ │ ├── arm_fir_lattice_init_q15.c │ │ │ │ ├── arm_fir_lattice_init_q31.c │ │ │ │ ├── arm_fir_lattice_q15.c │ │ │ │ ├── arm_fir_lattice_q31.c │ │ │ │ ├── arm_fir_q15.c │ │ │ │ ├── arm_fir_q31.c │ │ │ │ ├── arm_fir_q7.c │ │ │ │ ├── arm_fir_sparse_f32.c │ │ │ │ ├── arm_fir_sparse_init_f32.c │ │ │ │ ├── arm_fir_sparse_init_q15.c │ │ │ │ ├── arm_fir_sparse_init_q31.c │ │ │ │ ├── arm_fir_sparse_init_q7.c │ │ │ │ ├── arm_fir_sparse_q15.c │ │ │ │ ├── arm_fir_sparse_q31.c │ │ │ │ ├── arm_fir_sparse_q7.c │ │ │ │ ├── arm_iir_lattice_f32.c │ │ │ │ ├── arm_iir_lattice_init_f32.c │ │ │ │ ├── arm_iir_lattice_init_q15.c │ │ │ │ ├── arm_iir_lattice_init_q31.c │ │ │ │ ├── arm_iir_lattice_q15.c │ │ │ │ ├── arm_iir_lattice_q31.c │ │ │ │ ├── arm_lms_f32.c │ │ │ │ ├── arm_lms_init_f32.c │ │ │ │ ├── arm_lms_init_q15.c │ │ │ │ ├── arm_lms_init_q31.c │ │ │ │ ├── arm_lms_norm_f32.c │ │ │ │ ├── arm_lms_norm_init_f32.c │ │ │ │ ├── arm_lms_norm_init_q15.c │ │ │ │ ├── arm_lms_norm_init_q31.c │ │ │ │ ├── arm_lms_norm_q15.c │ │ │ │ ├── arm_lms_norm_q31.c │ │ │ │ ├── arm_lms_q15.c │ │ │ │ └── arm_lms_q31.c │ │ │ │ ├── MatrixFunctions │ │ │ │ ├── arm_mat_add_f32.c │ │ │ │ ├── arm_mat_add_q15.c │ │ │ │ ├── arm_mat_add_q31.c │ │ │ │ ├── arm_mat_cmplx_mult_f32.c │ │ │ │ ├── arm_mat_cmplx_mult_q15.c │ │ │ │ ├── arm_mat_cmplx_mult_q31.c │ │ │ │ ├── arm_mat_init_f32.c │ │ │ │ ├── arm_mat_init_q15.c │ │ │ │ ├── arm_mat_init_q31.c │ │ │ │ ├── arm_mat_inverse_f32.c │ │ │ │ ├── arm_mat_inverse_f64.c │ │ │ │ ├── arm_mat_mult_f32.c │ │ │ │ ├── arm_mat_mult_fast_q15.c │ │ │ │ ├── arm_mat_mult_fast_q31.c │ │ │ │ ├── arm_mat_mult_q15.c │ │ │ │ ├── arm_mat_mult_q31.c │ │ │ │ ├── arm_mat_scale_f32.c │ │ │ │ ├── arm_mat_scale_q15.c │ │ │ │ ├── arm_mat_scale_q31.c │ │ │ │ ├── arm_mat_sub_f32.c │ │ │ │ ├── arm_mat_sub_q15.c │ │ │ │ ├── arm_mat_sub_q31.c │ │ │ │ ├── arm_mat_trans_f32.c │ │ │ │ ├── arm_mat_trans_q15.c │ │ │ │ └── arm_mat_trans_q31.c │ │ │ │ ├── StatisticsFunctions │ │ │ │ ├── arm_max_f32.c │ │ │ │ ├── arm_max_q15.c │ │ │ │ ├── arm_max_q31.c │ │ │ │ ├── arm_max_q7.c │ │ │ │ ├── arm_mean_f32.c │ │ │ │ ├── arm_mean_q15.c │ │ │ │ ├── arm_mean_q31.c │ │ │ │ ├── arm_mean_q7.c │ │ │ │ ├── arm_min_f32.c │ │ │ │ ├── arm_min_q15.c │ │ │ │ ├── arm_min_q31.c │ │ │ │ ├── arm_min_q7.c │ │ │ │ ├── arm_power_f32.c │ │ │ │ ├── arm_power_q15.c │ │ │ │ ├── arm_power_q31.c │ │ │ │ ├── arm_power_q7.c │ │ │ │ ├── arm_rms_f32.c │ │ │ │ ├── arm_rms_q15.c │ │ │ │ ├── arm_rms_q31.c │ │ │ │ ├── arm_std_f32.c │ │ │ │ ├── arm_std_q15.c │ │ │ │ ├── arm_std_q31.c │ │ │ │ ├── arm_var_f32.c │ │ │ │ ├── arm_var_q15.c │ │ │ │ └── arm_var_q31.c │ │ │ │ ├── SupportFunctions │ │ │ │ ├── arm_copy_f32.c │ │ │ │ ├── arm_copy_q15.c │ │ │ │ ├── arm_copy_q31.c │ │ │ │ ├── arm_copy_q7.c │ │ │ │ ├── arm_fill_f32.c │ │ │ │ ├── arm_fill_q15.c │ │ │ │ ├── arm_fill_q31.c │ │ │ │ ├── arm_fill_q7.c │ │ │ │ ├── arm_float_to_q15.c │ │ │ │ ├── arm_float_to_q31.c │ │ │ │ ├── arm_float_to_q7.c │ │ │ │ ├── arm_q15_to_float.c │ │ │ │ ├── arm_q15_to_q31.c │ │ │ │ ├── arm_q15_to_q7.c │ │ │ │ ├── arm_q31_to_float.c │ │ │ │ ├── arm_q31_to_q15.c │ │ │ │ ├── arm_q31_to_q7.c │ │ │ │ ├── arm_q7_to_float.c │ │ │ │ ├── arm_q7_to_q15.c │ │ │ │ └── arm_q7_to_q31.c │ │ │ │ └── TransformFunctions │ │ │ │ ├── arm_bitreversal.c │ │ │ │ ├── arm_bitreversal2.S │ │ │ │ ├── arm_cfft_f32.c │ │ │ │ ├── arm_cfft_q15.c │ │ │ │ ├── arm_cfft_q31.c │ │ │ │ ├── arm_cfft_radix2_f32.c │ │ │ │ ├── arm_cfft_radix2_init_f32.c │ │ │ │ ├── arm_cfft_radix2_init_q15.c │ │ │ │ ├── arm_cfft_radix2_init_q31.c │ │ │ │ ├── arm_cfft_radix2_q15.c │ │ │ │ ├── arm_cfft_radix2_q31.c │ │ │ │ ├── arm_cfft_radix4_f32.c │ │ │ │ ├── arm_cfft_radix4_init_f32.c │ │ │ │ ├── arm_cfft_radix4_init_q15.c │ │ │ │ ├── arm_cfft_radix4_init_q31.c │ │ │ │ ├── arm_cfft_radix4_q15.c │ │ │ │ ├── arm_cfft_radix4_q31.c │ │ │ │ ├── arm_cfft_radix8_f32.c │ │ │ │ ├── arm_dct4_f32.c │ │ │ │ ├── arm_dct4_init_f32.c │ │ │ │ ├── arm_dct4_init_q15.c │ │ │ │ ├── arm_dct4_init_q31.c │ │ │ │ ├── arm_dct4_q15.c │ │ │ │ ├── arm_dct4_q31.c │ │ │ │ ├── arm_rfft_f32.c │ │ │ │ ├── arm_rfft_fast_f32.c │ │ │ │ ├── arm_rfft_fast_init_f32.c │ │ │ │ ├── arm_rfft_init_f32.c │ │ │ │ ├── arm_rfft_init_q15.c │ │ │ │ ├── arm_rfft_init_q31.c │ │ │ │ ├── arm_rfft_q15.c │ │ │ │ └── arm_rfft_q31.c │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32L4xx │ │ │ │ ├── Include │ │ │ │ ├── stm32l412xx.h │ │ │ │ ├── stm32l422xx.h │ │ │ │ ├── stm32l431xx.h │ │ │ │ ├── stm32l432xx.h │ │ │ │ ├── stm32l433xx.h │ │ │ │ ├── stm32l442xx.h │ │ │ │ ├── stm32l443xx.h │ │ │ │ ├── stm32l451xx.h │ │ │ │ ├── stm32l452xx.h │ │ │ │ ├── stm32l462xx.h │ │ │ │ ├── stm32l471xx.h │ │ │ │ ├── stm32l475xx.h │ │ │ │ ├── stm32l476xx.h │ │ │ │ ├── stm32l485xx.h │ │ │ │ ├── stm32l486xx.h │ │ │ │ ├── stm32l496xx.h │ │ │ │ ├── stm32l4a6xx.h │ │ │ │ ├── stm32l4r5xx.h │ │ │ │ ├── stm32l4r7xx.h │ │ │ │ ├── stm32l4r9xx.h │ │ │ │ ├── stm32l4s5xx.h │ │ │ │ ├── stm32l4s7xx.h │ │ │ │ ├── stm32l4s9xx.h │ │ │ │ ├── stm32l4xx.h │ │ │ │ └── system_stm32l4xx.h │ │ │ │ └── Source │ │ │ │ └── Templates │ │ │ │ ├── arm │ │ │ │ ├── startup_stm32l412xx.s │ │ │ │ ├── startup_stm32l422xx.s │ │ │ │ ├── startup_stm32l431xx.s │ │ │ │ ├── startup_stm32l432xx.s │ │ │ │ ├── startup_stm32l433xx.s │ │ │ │ ├── startup_stm32l442xx.s │ │ │ │ ├── startup_stm32l443xx.s │ │ │ │ ├── startup_stm32l451xx.s │ │ │ │ ├── startup_stm32l452xx.s │ │ │ │ ├── startup_stm32l462xx.s │ │ │ │ ├── startup_stm32l471xx.s │ │ │ │ ├── startup_stm32l475xx.s │ │ │ │ ├── startup_stm32l476xx.s │ │ │ │ ├── startup_stm32l485xx.s │ │ │ │ ├── startup_stm32l486xx.s │ │ │ │ ├── startup_stm32l496xx.s │ │ │ │ ├── startup_stm32l4a6xx.s │ │ │ │ ├── startup_stm32l4r5xx.s │ │ │ │ ├── startup_stm32l4r7xx.s │ │ │ │ ├── startup_stm32l4r9xx.s │ │ │ │ ├── startup_stm32l4s5xx.s │ │ │ │ ├── startup_stm32l4s7xx.s │ │ │ │ └── startup_stm32l4s9xx.s │ │ │ │ ├── gcc │ │ │ │ ├── startup_stm32l412xx.s │ │ │ │ ├── startup_stm32l422xx.s │ │ │ │ ├── startup_stm32l431xx.s │ │ │ │ ├── startup_stm32l432xx.s │ │ │ │ ├── startup_stm32l433xx.s │ │ │ │ ├── startup_stm32l442xx.s │ │ │ │ ├── startup_stm32l443xx.s │ │ │ │ ├── startup_stm32l451xx.s │ │ │ │ ├── startup_stm32l452xx.s │ │ │ │ ├── startup_stm32l462xx.s │ │ │ │ ├── startup_stm32l471xx.s │ │ │ │ ├── startup_stm32l475xx.s │ │ │ │ ├── startup_stm32l476xx.s │ │ │ │ ├── startup_stm32l485xx.s │ │ │ │ ├── startup_stm32l486xx.s │ │ │ │ ├── startup_stm32l496xx.s │ │ │ │ ├── startup_stm32l4a6xx.s │ │ │ │ ├── startup_stm32l4r5xx.s │ │ │ │ ├── startup_stm32l4r7xx.s │ │ │ │ ├── startup_stm32l4r9xx.s │ │ │ │ ├── startup_stm32l4s5xx.s │ │ │ │ ├── startup_stm32l4s7xx.s │ │ │ │ └── startup_stm32l4s9xx.s │ │ │ │ ├── iar │ │ │ │ ├── linker │ │ │ │ │ ├── stm32l412xx_flash.icf │ │ │ │ │ ├── stm32l412xx_sram.icf │ │ │ │ │ ├── stm32l422xx_flash.icf │ │ │ │ │ ├── stm32l422xx_sram.icf │ │ │ │ │ ├── stm32l431xx_flash.icf │ │ │ │ │ ├── stm32l431xx_sram.icf │ │ │ │ │ ├── stm32l432xx_flash.icf │ │ │ │ │ ├── stm32l432xx_sram.icf │ │ │ │ │ ├── stm32l433xx_flash.icf │ │ │ │ │ ├── stm32l433xx_sram.icf │ │ │ │ │ ├── stm32l442xx_flash.icf │ │ │ │ │ ├── stm32l442xx_sram.icf │ │ │ │ │ ├── stm32l443xx_flash.icf │ │ │ │ │ ├── stm32l443xx_sram.icf │ │ │ │ │ ├── stm32l451xx_flash.icf │ │ │ │ │ ├── stm32l451xx_sram.icf │ │ │ │ │ ├── stm32l452xx_flash.icf │ │ │ │ │ ├── stm32l452xx_sram.icf │ │ │ │ │ ├── stm32l462xx_flash.icf │ │ │ │ │ ├── stm32l462xx_sram.icf │ │ │ │ │ ├── stm32l471xx_flash.icf │ │ │ │ │ ├── stm32l471xx_sram.icf │ │ │ │ │ ├── stm32l475xx_flash.icf │ │ │ │ │ ├── stm32l475xx_sram.icf │ │ │ │ │ ├── stm32l476xx_flash.icf │ │ │ │ │ ├── stm32l476xx_sram.icf │ │ │ │ │ ├── stm32l485xx_flash.icf │ │ │ │ │ ├── stm32l485xx_sram.icf │ │ │ │ │ ├── stm32l486xx_flash.icf │ │ │ │ │ ├── stm32l486xx_sram.icf │ │ │ │ │ ├── stm32l496xx_flash.icf │ │ │ │ │ ├── stm32l496xx_sram.icf │ │ │ │ │ ├── stm32l4a6xx_flash.icf │ │ │ │ │ ├── stm32l4a6xx_sram.icf │ │ │ │ │ ├── stm32l4r5xx_flash.icf │ │ │ │ │ ├── stm32l4r5xx_sram.icf │ │ │ │ │ ├── stm32l4r7xx_flash.icf │ │ │ │ │ ├── stm32l4r7xx_sram.icf │ │ │ │ │ ├── stm32l4r9xx_flash.icf │ │ │ │ │ ├── stm32l4r9xx_sram.icf │ │ │ │ │ ├── stm32l4s5xx_flash.icf │ │ │ │ │ ├── stm32l4s5xx_sram.icf │ │ │ │ │ ├── stm32l4s7xx_flash.icf │ │ │ │ │ ├── stm32l4s7xx_sram.icf │ │ │ │ │ ├── stm32l4s9xx_flash.icf │ │ │ │ │ └── stm32l4s9xx_sram.icf │ │ │ │ ├── startup_stm32l412xx.s │ │ │ │ ├── startup_stm32l422xx.s │ │ │ │ ├── startup_stm32l431xx.s │ │ │ │ ├── startup_stm32l432xx.s │ │ │ │ ├── startup_stm32l433xx.s │ │ │ │ ├── startup_stm32l442xx.s │ │ │ │ ├── startup_stm32l443xx.s │ │ │ │ ├── startup_stm32l451xx.s │ │ │ │ ├── startup_stm32l452xx.s │ │ │ │ ├── startup_stm32l462xx.s │ │ │ │ ├── startup_stm32l471xx.s │ │ │ │ ├── startup_stm32l475xx.s │ │ │ │ ├── startup_stm32l476xx.s │ │ │ │ ├── startup_stm32l485xx.s │ │ │ │ ├── startup_stm32l486xx.s │ │ │ │ ├── startup_stm32l496xx.s │ │ │ │ ├── startup_stm32l4a6xx.s │ │ │ │ ├── startup_stm32l4r5xx.s │ │ │ │ ├── startup_stm32l4r7xx.s │ │ │ │ ├── startup_stm32l4r9xx.s │ │ │ │ ├── startup_stm32l4s5xx.s │ │ │ │ ├── startup_stm32l4s7xx.s │ │ │ │ └── startup_stm32l4s9xx.s │ │ │ │ └── system_stm32l4xx.c │ │ ├── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ │ ├── Lib │ │ │ ├── ARM │ │ │ │ ├── arm_cortexM4b_math.lib │ │ │ │ ├── arm_cortexM4bf_math.lib │ │ │ │ ├── arm_cortexM4l_math.lib │ │ │ │ └── arm_cortexM4lf_math.lib │ │ │ ├── GCC │ │ │ │ ├── libarm_cortexM4l_math.a │ │ │ │ └── libarm_cortexM4lf_math.a │ │ │ └── IAR │ │ │ │ ├── iar_cortexM4b_math.a │ │ │ │ ├── iar_cortexM4bf_math.a │ │ │ │ ├── iar_cortexM4l_math.a │ │ │ │ └── iar_cortexM4lf_math.a │ │ ├── NN │ │ │ ├── Examples │ │ │ │ └── ARM │ │ │ │ │ └── arm_nn_examples │ │ │ │ │ ├── cifar10 │ │ │ │ │ ├── RTE │ │ │ │ │ │ ├── Compiler │ │ │ │ │ │ │ └── EventRecorderConf.h │ │ │ │ │ │ ├── _ARMCM0 │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ ├── _ARMCM3 │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ ├── _ARMCM4_FP │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ └── _ARMCM7_SP │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ ├── arm_nnexamples_cifar10.cpp │ │ │ │ │ ├── arm_nnexamples_cifar10_inputs.h │ │ │ │ │ ├── arm_nnexamples_cifar10_parameter.h │ │ │ │ │ └── arm_nnexamples_cifar10_weights.h │ │ │ │ │ └── gru │ │ │ │ │ ├── RTE │ │ │ │ │ ├── Compiler │ │ │ │ │ │ └── EventRecorderConf.h │ │ │ │ │ ├── _ARMCM0 │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ ├── _ARMCM3 │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ ├── _ARMCM4_FP │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ └── _ARMCM7_SP │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ ├── arm_nnexamples_gru.cpp │ │ │ │ │ └── arm_nnexamples_gru_test_data.h │ │ │ ├── Include │ │ │ │ ├── arm_nn_tables.h │ │ │ │ ├── arm_nnfunctions.h │ │ │ │ └── arm_nnsupportfunctions.h │ │ │ ├── NN_Lib_Tests │ │ │ │ └── nn_test │ │ │ │ │ ├── RTE │ │ │ │ │ ├── _ARMCM0 │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ ├── _ARMCM3 │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ ├── _ARMCM4_FP │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ └── _ARMCM7_SP │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ ├── Ref_Implementations │ │ │ │ │ ├── arm_convolve_HWC_q15_ref.c │ │ │ │ │ ├── arm_convolve_HWC_q15_ref_nonsquare.c │ │ │ │ │ ├── arm_convolve_HWC_q7_ref.c │ │ │ │ │ ├── arm_convolve_HWC_q7_ref_nonsquare.c │ │ │ │ │ ├── arm_depthwise_separable_conv_HWC_q7_ref.c │ │ │ │ │ ├── arm_depthwise_separable_conv_HWC_q7_ref_nonsquare.c │ │ │ │ │ ├── arm_fully_connected_mat_q7_vec_q15_opt_ref.c │ │ │ │ │ ├── arm_fully_connected_mat_q7_vec_q15_ref.c │ │ │ │ │ ├── arm_fully_connected_q15_opt_ref.c │ │ │ │ │ ├── arm_fully_connected_q15_ref.c │ │ │ │ │ ├── arm_fully_connected_q7_opt_ref.c │ │ │ │ │ ├── arm_fully_connected_q7_ref.c │ │ │ │ │ ├── arm_nn_mult_ref.c │ │ │ │ │ ├── arm_pool_ref.c │ │ │ │ │ ├── arm_relu_ref.c │ │ │ │ │ ├── fully_connected_testing_weights.h │ │ │ │ │ └── ref_functions.h │ │ │ │ │ ├── arm_nnexamples_nn_test.cpp │ │ │ │ │ └── arm_nnexamples_nn_test.h │ │ │ └── Source │ │ │ │ ├── ActivationFunctions │ │ │ │ ├── arm_nn_activations_q15.c │ │ │ │ ├── arm_nn_activations_q7.c │ │ │ │ ├── arm_relu_q15.c │ │ │ │ └── arm_relu_q7.c │ │ │ │ ├── ConvolutionFunctions │ │ │ │ ├── arm_convolve_1x1_HWC_q7_fast_nonsquare.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_depthwise_separable_conv_HWC_q7.c │ │ │ │ ├── arm_depthwise_separable_conv_HWC_q7_nonsquare.c │ │ │ │ ├── arm_nn_mat_mult_kernel_q7_q15.c │ │ │ │ └── arm_nn_mat_mult_kernel_q7_q15_reordered.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 │ │ │ │ ├── NNSupportFunctions │ │ │ │ ├── arm_nn_mult_q15.c │ │ │ │ ├── arm_nn_mult_q7.c │ │ │ │ ├── arm_nntables.c │ │ │ │ ├── arm_q7_to_q15_no_shift.c │ │ │ │ └── arm_q7_to_q15_reordered_no_shift.c │ │ │ │ ├── PoolingFunctions │ │ │ │ └── arm_pool_q7_HWC.c │ │ │ │ └── SoftmaxFunctions │ │ │ │ ├── arm_softmax_q15.c │ │ │ │ └── arm_softmax_q7.c │ │ ├── RTOS │ │ │ └── Template │ │ │ │ └── cmsis_os.h │ │ └── RTOS2 │ │ │ ├── Include │ │ │ ├── cmsis_os2.h │ │ │ └── os_tick.h │ │ │ ├── Source │ │ │ ├── os_systick.c │ │ │ ├── os_tick_gtim.c │ │ │ └── os_tick_ptim.c │ │ │ └── Template │ │ │ ├── cmsis_os.h │ │ │ └── cmsis_os1.c │ └── STM32L4xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ ├── stm32_hal_legacy.h │ │ │ └── stm32l4xx_hal_can_legacy.h │ │ ├── stm32_assert_template.h │ │ ├── stm32l4xx_hal.h │ │ ├── stm32l4xx_hal_adc.h │ │ ├── stm32l4xx_hal_adc_ex.h │ │ ├── stm32l4xx_hal_can.h │ │ ├── stm32l4xx_hal_comp.h │ │ ├── stm32l4xx_hal_conf_template.h │ │ ├── stm32l4xx_hal_cortex.h │ │ ├── stm32l4xx_hal_crc.h │ │ ├── stm32l4xx_hal_crc_ex.h │ │ ├── stm32l4xx_hal_cryp.h │ │ ├── stm32l4xx_hal_cryp_ex.h │ │ ├── stm32l4xx_hal_dac.h │ │ ├── stm32l4xx_hal_dac_ex.h │ │ ├── stm32l4xx_hal_dcmi.h │ │ ├── stm32l4xx_hal_def.h │ │ ├── stm32l4xx_hal_dfsdm.h │ │ ├── stm32l4xx_hal_dfsdm_ex.h │ │ ├── stm32l4xx_hal_dma.h │ │ ├── stm32l4xx_hal_dma2d.h │ │ ├── stm32l4xx_hal_dma_ex.h │ │ ├── stm32l4xx_hal_dsi.h │ │ ├── stm32l4xx_hal_exti.h │ │ ├── stm32l4xx_hal_firewall.h │ │ ├── stm32l4xx_hal_flash.h │ │ ├── stm32l4xx_hal_flash_ex.h │ │ ├── stm32l4xx_hal_flash_ramfunc.h │ │ ├── stm32l4xx_hal_gfxmmu.h │ │ ├── stm32l4xx_hal_gpio.h │ │ ├── stm32l4xx_hal_gpio_ex.h │ │ ├── stm32l4xx_hal_hash.h │ │ ├── stm32l4xx_hal_hash_ex.h │ │ ├── stm32l4xx_hal_hcd.h │ │ ├── stm32l4xx_hal_i2c.h │ │ ├── stm32l4xx_hal_i2c_ex.h │ │ ├── stm32l4xx_hal_irda.h │ │ ├── stm32l4xx_hal_irda_ex.h │ │ ├── stm32l4xx_hal_iwdg.h │ │ ├── stm32l4xx_hal_lcd.h │ │ ├── stm32l4xx_hal_lptim.h │ │ ├── stm32l4xx_hal_ltdc.h │ │ ├── stm32l4xx_hal_ltdc_ex.h │ │ ├── stm32l4xx_hal_mmc.h │ │ ├── stm32l4xx_hal_mmc_ex.h │ │ ├── stm32l4xx_hal_nand.h │ │ ├── stm32l4xx_hal_nor.h │ │ ├── stm32l4xx_hal_opamp.h │ │ ├── stm32l4xx_hal_opamp_ex.h │ │ ├── stm32l4xx_hal_ospi.h │ │ ├── stm32l4xx_hal_pcd.h │ │ ├── stm32l4xx_hal_pcd_ex.h │ │ ├── stm32l4xx_hal_pwr.h │ │ ├── stm32l4xx_hal_pwr_ex.h │ │ ├── stm32l4xx_hal_qspi.h │ │ ├── stm32l4xx_hal_rcc.h │ │ ├── stm32l4xx_hal_rcc_ex.h │ │ ├── stm32l4xx_hal_rng.h │ │ ├── stm32l4xx_hal_rtc.h │ │ ├── stm32l4xx_hal_rtc_ex.h │ │ ├── stm32l4xx_hal_sai.h │ │ ├── stm32l4xx_hal_sai_ex.h │ │ ├── stm32l4xx_hal_sd.h │ │ ├── stm32l4xx_hal_sd_ex.h │ │ ├── stm32l4xx_hal_smartcard.h │ │ ├── stm32l4xx_hal_smartcard_ex.h │ │ ├── stm32l4xx_hal_smbus.h │ │ ├── stm32l4xx_hal_spi.h │ │ ├── stm32l4xx_hal_spi_ex.h │ │ ├── stm32l4xx_hal_sram.h │ │ ├── stm32l4xx_hal_swpmi.h │ │ ├── stm32l4xx_hal_tim.h │ │ ├── stm32l4xx_hal_tim_ex.h │ │ ├── stm32l4xx_hal_tsc.h │ │ ├── stm32l4xx_hal_uart.h │ │ ├── stm32l4xx_hal_uart_ex.h │ │ ├── stm32l4xx_hal_usart.h │ │ ├── stm32l4xx_hal_usart_ex.h │ │ ├── stm32l4xx_hal_wwdg.h │ │ ├── stm32l4xx_ll_adc.h │ │ ├── stm32l4xx_ll_bus.h │ │ ├── stm32l4xx_ll_comp.h │ │ ├── stm32l4xx_ll_cortex.h │ │ ├── stm32l4xx_ll_crc.h │ │ ├── stm32l4xx_ll_crs.h │ │ ├── stm32l4xx_ll_dac.h │ │ ├── stm32l4xx_ll_dma.h │ │ ├── stm32l4xx_ll_dma2d.h │ │ ├── stm32l4xx_ll_dmamux.h │ │ ├── stm32l4xx_ll_exti.h │ │ ├── stm32l4xx_ll_fmc.h │ │ ├── stm32l4xx_ll_gpio.h │ │ ├── stm32l4xx_ll_i2c.h │ │ ├── stm32l4xx_ll_iwdg.h │ │ ├── stm32l4xx_ll_lptim.h │ │ ├── stm32l4xx_ll_lpuart.h │ │ ├── stm32l4xx_ll_opamp.h │ │ ├── stm32l4xx_ll_pwr.h │ │ ├── stm32l4xx_ll_rcc.h │ │ ├── stm32l4xx_ll_rng.h │ │ ├── stm32l4xx_ll_rtc.h │ │ ├── stm32l4xx_ll_sdmmc.h │ │ ├── stm32l4xx_ll_spi.h │ │ ├── stm32l4xx_ll_swpmi.h │ │ ├── stm32l4xx_ll_system.h │ │ ├── stm32l4xx_ll_tim.h │ │ ├── stm32l4xx_ll_usart.h │ │ ├── stm32l4xx_ll_usb.h │ │ ├── stm32l4xx_ll_utils.h │ │ └── stm32l4xx_ll_wwdg.h │ │ └── Src │ │ ├── stm32l4xx_hal.c │ │ ├── stm32l4xx_hal_adc.c │ │ ├── stm32l4xx_hal_adc_ex.c │ │ ├── stm32l4xx_hal_can.c │ │ ├── stm32l4xx_hal_comp.c │ │ ├── stm32l4xx_hal_cortex.c │ │ ├── stm32l4xx_hal_crc.c │ │ ├── stm32l4xx_hal_crc_ex.c │ │ ├── stm32l4xx_hal_cryp.c │ │ ├── stm32l4xx_hal_cryp_ex.c │ │ ├── stm32l4xx_hal_dac.c │ │ ├── stm32l4xx_hal_dac_ex.c │ │ ├── stm32l4xx_hal_dcmi.c │ │ ├── stm32l4xx_hal_dfsdm.c │ │ ├── stm32l4xx_hal_dfsdm_ex.c │ │ ├── stm32l4xx_hal_dma.c │ │ ├── stm32l4xx_hal_dma2d.c │ │ ├── stm32l4xx_hal_dma_ex.c │ │ ├── stm32l4xx_hal_dsi.c │ │ ├── stm32l4xx_hal_exti.c │ │ ├── stm32l4xx_hal_firewall.c │ │ ├── stm32l4xx_hal_flash.c │ │ ├── stm32l4xx_hal_flash_ex.c │ │ ├── stm32l4xx_hal_flash_ramfunc.c │ │ ├── stm32l4xx_hal_gfxmmu.c │ │ ├── stm32l4xx_hal_gpio.c │ │ ├── stm32l4xx_hal_hash.c │ │ ├── stm32l4xx_hal_hash_ex.c │ │ ├── stm32l4xx_hal_hcd.c │ │ ├── stm32l4xx_hal_i2c.c │ │ ├── stm32l4xx_hal_i2c_ex.c │ │ ├── stm32l4xx_hal_irda.c │ │ ├── stm32l4xx_hal_iwdg.c │ │ ├── stm32l4xx_hal_lcd.c │ │ ├── stm32l4xx_hal_lptim.c │ │ ├── stm32l4xx_hal_ltdc.c │ │ ├── stm32l4xx_hal_ltdc_ex.c │ │ ├── stm32l4xx_hal_mmc.c │ │ ├── stm32l4xx_hal_mmc_ex.c │ │ ├── stm32l4xx_hal_msp_template.c │ │ ├── stm32l4xx_hal_nand.c │ │ ├── stm32l4xx_hal_nor.c │ │ ├── stm32l4xx_hal_opamp.c │ │ ├── stm32l4xx_hal_opamp_ex.c │ │ ├── stm32l4xx_hal_ospi.c │ │ ├── stm32l4xx_hal_pcd.c │ │ ├── stm32l4xx_hal_pcd_ex.c │ │ ├── stm32l4xx_hal_pwr.c │ │ ├── stm32l4xx_hal_pwr_ex.c │ │ ├── stm32l4xx_hal_qspi.c │ │ ├── stm32l4xx_hal_rcc.c │ │ ├── stm32l4xx_hal_rcc_ex.c │ │ ├── stm32l4xx_hal_rng.c │ │ ├── stm32l4xx_hal_rtc.c │ │ ├── stm32l4xx_hal_rtc_ex.c │ │ ├── stm32l4xx_hal_sai.c │ │ ├── stm32l4xx_hal_sai_ex.c │ │ ├── stm32l4xx_hal_sd.c │ │ ├── stm32l4xx_hal_sd_ex.c │ │ ├── stm32l4xx_hal_smartcard.c │ │ ├── stm32l4xx_hal_smartcard_ex.c │ │ ├── stm32l4xx_hal_smbus.c │ │ ├── stm32l4xx_hal_spi.c │ │ ├── stm32l4xx_hal_spi_ex.c │ │ ├── stm32l4xx_hal_sram.c │ │ ├── stm32l4xx_hal_swpmi.c │ │ ├── stm32l4xx_hal_tim.c │ │ ├── stm32l4xx_hal_tim_ex.c │ │ ├── stm32l4xx_hal_timebase_tim_template.c │ │ ├── stm32l4xx_hal_tsc.c │ │ ├── stm32l4xx_hal_uart.c │ │ ├── stm32l4xx_hal_uart_ex.c │ │ ├── stm32l4xx_hal_usart.c │ │ ├── stm32l4xx_hal_usart_ex.c │ │ ├── stm32l4xx_hal_wwdg.c │ │ ├── stm32l4xx_ll_adc.c │ │ ├── stm32l4xx_ll_comp.c │ │ ├── stm32l4xx_ll_crc.c │ │ ├── stm32l4xx_ll_crs.c │ │ ├── stm32l4xx_ll_dac.c │ │ ├── stm32l4xx_ll_dma.c │ │ ├── stm32l4xx_ll_dma2d.c │ │ ├── stm32l4xx_ll_exti.c │ │ ├── stm32l4xx_ll_fmc.c │ │ ├── stm32l4xx_ll_gpio.c │ │ ├── stm32l4xx_ll_i2c.c │ │ ├── stm32l4xx_ll_lptim.c │ │ ├── stm32l4xx_ll_lpuart.c │ │ ├── stm32l4xx_ll_opamp.c │ │ ├── stm32l4xx_ll_pwr.c │ │ ├── stm32l4xx_ll_rcc.c │ │ ├── stm32l4xx_ll_rng.c │ │ ├── stm32l4xx_ll_rtc.c │ │ ├── stm32l4xx_ll_sdmmc.c │ │ ├── stm32l4xx_ll_spi.c │ │ ├── stm32l4xx_ll_swpmi.c │ │ ├── stm32l4xx_ll_tim.c │ │ ├── stm32l4xx_ll_usart.c │ │ ├── stm32l4xx_ll_usb.c │ │ └── stm32l4xx_ll_utils.c │ ├── Inc │ ├── FreeRTOSConfig.h │ ├── bat_trg.h │ ├── debounce.h │ ├── led_trg.h │ ├── m88e111_trg.h │ ├── main.h │ ├── os.h │ ├── persist.h │ ├── ret_trg.h │ ├── sfp_trg.h │ ├── stm32_assert.h │ ├── stm32l4xx_hal_conf.h │ ├── stm32l4xx_it.h │ ├── trg_conf.h │ ├── usb_device.h │ ├── usbd_cdc_if.h │ ├── usbd_conf.h │ └── usbd_desc.h │ ├── Makefile │ ├── Middlewares │ ├── ST │ │ └── STM32_USB_Device_Library │ │ │ ├── Class │ │ │ └── CDC │ │ │ │ ├── Inc │ │ │ │ ├── usbd_cdc.h │ │ │ │ └── usbd_cdc_if_template.h │ │ │ │ └── Src │ │ │ │ ├── usbd_cdc.c │ │ │ │ └── usbd_cdc_if_template.c │ │ │ └── Core │ │ │ ├── Inc │ │ │ ├── usbd_conf_template.h │ │ │ ├── usbd_core.h │ │ │ ├── usbd_ctlreq.h │ │ │ ├── usbd_def.h │ │ │ ├── usbd_desc_template.h │ │ │ └── usbd_ioreq.h │ │ │ └── Src │ │ │ ├── usbd_conf_template.c │ │ │ ├── usbd_core.c │ │ │ ├── usbd_ctlreq.c │ │ │ ├── usbd_desc_template.c │ │ │ └── usbd_ioreq.c │ └── Third_Party │ │ └── FreeRTOS │ │ └── Source │ │ ├── CMSIS_RTOS_V2 │ │ ├── cmsis_os.h │ │ ├── cmsis_os1.c │ │ ├── cmsis_os2.c │ │ └── cmsis_os2.h │ │ ├── croutine.c │ │ ├── event_groups.c │ │ ├── include │ │ ├── FreeRTOS.h │ │ ├── FreeRTOSConfig_template.h │ │ ├── StackMacros.h │ │ ├── croutine.h │ │ ├── deprecated_definitions.h │ │ ├── event_groups.h │ │ ├── list.h │ │ ├── message_buffer.h │ │ ├── mpu_prototypes.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── projdefs.h │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── stack_macros.h │ │ ├── stream_buffer.h │ │ ├── task.h │ │ └── timers.h │ │ ├── list.c │ │ ├── portable │ │ ├── GCC │ │ │ └── ARM_CM4F │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ └── MemMang │ │ │ ├── heap_1.c │ │ │ ├── heap_2.c │ │ │ ├── heap_3.c │ │ │ ├── heap_4.c │ │ │ └── heap_5.c │ │ ├── queue.c │ │ ├── stream_buffer.c │ │ ├── tasks.c │ │ └── timers.c │ ├── STM32L412CBUx_FLASH.ld │ ├── Src │ ├── bat_trg.c │ ├── debounce.c │ ├── freertos.c │ ├── led_trg.c │ ├── m88e111_trg.c │ ├── main.c │ ├── os.c │ ├── persist.c │ ├── ret_trg.c │ ├── sfp_trg.c │ ├── stm32l4xx_hal_msp.c │ ├── stm32l4xx_hal_timebase_tim.c │ ├── stm32l4xx_it.c │ ├── system_stm32l4xx.c │ ├── usb_device.c │ ├── usbd_cdc_if.c │ ├── usbd_conf.c │ └── usbd_desc.c │ ├── hubble.ioc │ ├── sign.py │ └── startup_stm32l412xx.s ├── hw ├── led │ ├── .gitignore │ ├── board.json │ ├── cache │ │ ├── entity_29f544a1-a789-4fe6-a1ef-29da5ba3d371.json │ │ ├── entity_7aea1811-235c-4f06-933b-1080df3d31ba.json │ │ ├── entity_e738fcf2-bf36-46b2-8288-82f43aabca8a.json │ │ ├── frame_ba34cbaf-e36e-44c3-af16-bab253fc720b.json │ │ ├── part_0afec80c-6a9a-4b8c-aa2f-101fe01f7659.json │ │ ├── part_5db7f314-544c-4b8a-bfe3-022205ec4d28.json │ │ ├── part_6ac253eb-6518-4cd5-ab1f-47ee3a0aa9a3.json │ │ ├── part_90c2bb49-c448-47ec-a447-1e9f795aebe7.json │ │ ├── pkg_19fcebde-c90d-4cfc-b163-d8b52146c0e3.json │ │ ├── pkg_5899c4ac-8ed7-4732-943e-7f841d4a96f7.json │ │ ├── pkg_d9b94dc5-539c-47cc-8bc3-724405aeb207.json │ │ ├── ps_296cf69b-9d53-45e4-aaab-4aedf4087d3a.json │ │ ├── ps_3846f4bf-7acf-403a-bc36-771ec675eac9.json │ │ ├── ps_3c4a52fe-3ae0-4c3e-a108-824b53d6d6da.json │ │ ├── ps_762c84c2-187d-454a-af81-d3381bec5257.json │ │ ├── ps_96ba4267-bc32-4695-bd85-71adac855b29.json │ │ ├── sym_089ad062-27e0-4ed5-ac1e-8091669ad453.json │ │ ├── sym_1eeb2204-4f6d-4de7-bd63-6b07ad593a91.json │ │ ├── sym_5b7a580f-fa81-4cde-84c2-9da30ebc9c5a.json │ │ ├── unit_25a3d833-f0a5-4b3f-91ec-36b235b1d6d7.json │ │ ├── unit_4204a51f-5541-47a3-9faa-e62701e087ee.json │ │ └── unit_c6a7e13e-6c70-4a80-a0dd-335d7b16967f.json │ ├── hubble-led.hprj │ ├── output │ │ ├── 3d-1.png │ │ ├── 3d-2.png │ │ ├── 3d-3.png │ │ ├── gerber │ │ │ ├── hubble-led.gbl │ │ │ ├── hubble-led.gbo │ │ │ ├── hubble-led.gbp │ │ │ ├── hubble-led.gbs │ │ │ ├── hubble-led.gko │ │ │ ├── hubble-led.gtl │ │ │ ├── hubble-led.gto │ │ │ ├── hubble-led.gtp │ │ │ ├── hubble-led.gts │ │ │ ├── hubble-led.txt │ │ │ └── hubble-led.zip │ │ └── schematic.pdf │ ├── top_block.json │ ├── top_sch.json │ └── vias │ │ └── .keep ├── main │ ├── .gitignore │ ├── board.json │ ├── cache │ │ ├── 3d_models │ │ │ └── pool_6d752bc3-29b3-45df-8cf2-1e3aacefbcc6 │ │ │ │ └── 3d_models │ │ │ │ ├── diode │ │ │ │ └── D_SOD-123.step │ │ │ │ ├── ic │ │ │ │ ├── qfn │ │ │ │ │ ├── QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm.step │ │ │ │ │ └── QFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm.step │ │ │ │ └── so │ │ │ │ │ ├── SOT-23-5.step │ │ │ │ │ └── SOT-553.step │ │ │ │ └── passive │ │ │ │ ├── capacitor │ │ │ │ ├── C_0603_1608Metric.step │ │ │ │ └── C_0805_2012Metric.step │ │ │ │ ├── inductor │ │ │ │ └── L_1210_3225Metric.step │ │ │ │ └── resistor │ │ │ │ └── R_0603_1608Metric.step │ │ ├── entity_09952b1f-1221-48ad-896c-4481914e3af2.json │ │ ├── entity_19a945e7-7eff-480b-bd56-85b8a821ab51.json │ │ ├── entity_1d534e1d-704a-4d44-a6e6-c6106a2827ab.json │ │ ├── entity_267343bf-e6bf-42f4-b256-381dd96f011d.json │ │ ├── entity_29f544a1-a789-4fe6-a1ef-29da5ba3d371.json │ │ ├── entity_3163122e-5414-47a0-aa58-449d007268d4.json │ │ ├── entity_3ce770af-7be0-4f72-b2af-2c8010911aaf.json │ │ ├── entity_5156d094-b187-4e47-aec8-e78fee9733eb.json │ │ ├── entity_5c723cab-5313-419e-aed3-6e5a34777da8.json │ │ ├── entity_6e907d39-7f84-475c-b270-e693d6035193.json │ │ ├── entity_7fc885b0-a865-4ec5-a4cc-1a3680e34716.json │ │ ├── entity_87b4784e-ac52-4917-b4cd-13703f3e9e0e.json │ │ ├── entity_8b3bdf54-336c-485e-94d9-021ecf72a0d7.json │ │ ├── entity_ab428500-9156-4918-b231-9c1e2e508454.json │ │ ├── entity_ac656848-2504-4c1e-9cee-c2d3a3320cca.json │ │ ├── entity_b3c7f10f-2160-4b68-a38b-10bf0263c097.json │ │ ├── entity_c933ec53-003c-454f-a2bd-9fe4a7fc59c6.json │ │ ├── entity_ca83a84f-6183-4088-84b6-5d79b2a119d4.json │ │ ├── entity_cba5158c-706d-4f10-b48a-2de7e5a82a4c.json │ │ ├── entity_cc5a76b5-3aa5-46c7-9304-aae645ea3e11.json │ │ ├── entity_f1cafe55-ca30-4a2f-9c9e-ae06f9ea7859.json │ │ ├── entity_f7ebd877-c58b-42ad-bf4e-360ce61908e9.json │ │ ├── frame_ba34cbaf-e36e-44c3-af16-bab253fc720b.json │ │ ├── part_0181a5db-42e2-46ae-a8a6-49070b910d9f.json │ │ ├── part_0228e225-3aec-4167-aaaa-3c5e9d6351d3.json │ │ ├── part_093cfc31-5e15-4c85-adaf-620154945a2a.json │ │ ├── part_0b6632c7-c291-43a8-adae-b4d0bd12e5dd.json │ │ ├── part_0b85d11f-be3d-4ca9-9648-385b4904e28f.json │ │ ├── part_0bd908ef-62e1-4b93-b6d5-2c14aa4491e1.json │ │ ├── part_12c5b98e-d055-441d-ad02-760adde0cc1a.json │ │ ├── part_13402d3d-2176-491a-9a95-d09886c7737a.json │ │ ├── part_16321bae-6cfa-4e56-bd03-bfccc7b5570f.json │ │ ├── part_1afdcf86-9f3f-4f5c-b05a-43ae765a99e8.json │ │ ├── part_1c0c8203-ae47-4dc5-896e-d702d8e2f637.json │ │ ├── part_1f9793fb-fe0b-480f-85e3-0dcac6134a6f.json │ │ ├── part_20d1ec4d-9d57-48fd-be76-bc52559740b0.json │ │ ├── part_25f985ce-3357-4a0f-b19d-4866ef892436.json │ │ ├── part_2c5ce76d-b9bd-4c38-af85-b40273dcca66.json │ │ ├── part_2cfa758d-e0b7-4d29-878f-d58238f796f7.json │ │ ├── part_2d217849-02b8-4667-a37a-b43d72baf6d2.json │ │ ├── part_2f50150e-b407-4eda-899c-4a8339af9433.json │ │ ├── part_30407980-fe03-4eb4-bb0a-10cc2f3391f1.json │ │ ├── part_35ada0b9-8abc-4537-9c4c-c09b15a53d44.json │ │ ├── part_392ff008-ab00-499f-b5f6-c7efe6b05e0e.json │ │ ├── part_3aa598ec-7295-4e66-8b59-0d98549f2e40.json │ │ ├── part_3dced990-9d9b-49c6-a657-4356cf86e98d.json │ │ ├── part_436da8ee-a0a4-4ab4-ae41-10323bb580e5.json │ │ ├── part_4a7dfff9-374f-45f9-9df8-0fe3ef63554f.json │ │ ├── part_59cd19b1-de4a-436d-ad3c-3bf9b1a83e2a.json │ │ ├── part_648ed53e-c21c-4d66-969c-375adfe2bd7c.json │ │ ├── part_68fd0533-0a2d-4a83-8ff9-563217f1893b.json │ │ ├── part_6e276559-ece3-48fa-beda-7810b3b8af73.json │ │ ├── part_6e4fe75a-f94f-416b-abf5-084d65898ba7.json │ │ ├── part_6f27eb66-40e7-4dcc-baa1-887f336d41ed.json │ │ ├── part_7a648f0d-0e34-44e5-82df-1311743a2371.json │ │ ├── part_7e7a7e7e-4697-48a7-9bc9-36190b557ac9.json │ │ ├── part_84e62734-b01a-4616-93f1-ccd371be9a2c.json │ │ ├── part_8e4e2ee8-8c44-4497-a241-14ea8c3ea215.json │ │ ├── part_95a2742f-a0ee-40bc-9164-41bf3597d35a.json │ │ ├── part_9695bdb5-51bd-4fbe-96c3-9d3e405d011c.json │ │ ├── part_96e0cd6c-3ab4-4dfc-a64f-f99113f93e84.json │ │ ├── part_9954497f-10af-4158-934b-3b53068f6de4.json │ │ ├── part_9aec6cc5-e9e0-48fc-86bd-88fa2a55e520.json │ │ ├── part_9f4c3a36-cc32-4ae2-9ec7-75902c38749f.json │ │ ├── part_9fd5f60f-b6a7-4b5d-a253-c4be0693e275.json │ │ ├── part_a861640e-18e5-4c85-b91d-d59f2a573dbc.json │ │ ├── part_b00f7f9a-540d-4440-a73a-32732a8a8027.json │ │ ├── part_bb8fcb8a-9724-457f-a393-939bd4b3bc00.json │ │ ├── part_c3e332a4-7d74-41e1-9932-67cbd9d8530c.json │ │ ├── part_cbeda48c-7fb0-4cfb-a4de-d9672e8cc190.json │ │ ├── part_cd33be46-292f-422a-b276-286753493294.json │ │ ├── part_cddddb07-2341-4d9b-badc-54eb9e8fe68c.json │ │ ├── part_cde3cd60-4595-4ec5-81ed-41ad6c78fc86.json │ │ ├── part_d026fa60-628e-4514-bccb-4ce990fa72f7.json │ │ ├── part_d674b3a6-8f6d-4b6b-9e43-36a40fc09a58.json │ │ ├── part_d6eace4a-9b86-40f8-911d-4d5c028b1a70.json │ │ ├── part_d7835072-6ec8-49af-b9cf-22ad75e143da.json │ │ ├── part_dc034c1c-a504-4a8b-9c81-19dcd50a0f58.json │ │ ├── part_e8e41ec4-6931-4fc0-b4f4-da8f709b3f0b.json │ │ ├── part_eaa22961-f7dd-4a6c-834c-f212e7438fdd.json │ │ ├── part_eb6e3977-4bae-4295-88b5-b2809cfde134.json │ │ ├── part_f2604d92-e282-4300-a4db-496585bb469b.json │ │ ├── part_f2d04874-2b52-468b-8c77-50790a101a94.json │ │ ├── pkg_0c6f5ea3-c601-4b00-b985-6db23ce77246.json │ │ ├── pkg_226c3c69-79aa-4e87-8eea-51463ac9f278.json │ │ ├── pkg_29d43d68-e839-4564-b71e-b4d600c7341e.json │ │ ├── pkg_57476afd-d664-4268-bac3-704b58c85add.json │ │ ├── pkg_602390ae-4cf7-4e64-ae67-df84f9cdb322.json │ │ ├── pkg_615a5e7a-5d6c-4aad-b021-d71711a6eb73.json │ │ ├── pkg_6bd2e831-52db-4c54-bf87-23f1c3e96fdf.json │ │ ├── pkg_6d3afe3b-81e0-453a-ae96-084c01af1ed3.json │ │ ├── pkg_70c65846-2ee7-4d11-9d38-fe0fa84dc963.json │ │ ├── pkg_73efac3d-d3e5-4bc9-ab78-370b7faed6a9.json │ │ ├── pkg_82beb012-b4a4-4c6f-9e75-9eb70f394c5b.json │ │ ├── pkg_8be7fc82-c2d9-4d25-9741-08de9317435e.json │ │ ├── pkg_912ac77a-2d3a-46ce-a60d-18eb7a750a7c.json │ │ ├── pkg_9260270c-dc4a-446a-9fcd-0f930e1ffabc.json │ │ ├── pkg_94355730-7802-478f-87c1-e7ef639fb102.json │ │ ├── pkg_b0c8c92e-7aef-412b-a7a1-92ddb5475cf0.json │ │ ├── pkg_bd668303-4b11-4126-ad76-83fa0ec72818.json │ │ ├── pkg_cd1e7a02-9813-4f80-b1c7-93c5ea71ffb4.json │ │ ├── pkg_d37d22c0-a371-4fb1-98ef-511f368f16ea.json │ │ ├── pkg_e4154d23-4454-4f15-a001-35dc80912e84.json │ │ ├── pkg_fe22ac1d-25b9-4a47-8414-51c990d7f94b.json │ │ ├── ps_1b61c332-df5b-4571-9006-467968aafeee.json │ │ ├── ps_3846f4bf-7acf-403a-bc36-771ec675eac9.json │ │ ├── ps_42b89a10-6869-4143-8bd8-5cb157b00f5b.json │ │ ├── ps_574a4000-054a-4ae4-bf88-97d264cce38d.json │ │ ├── ps_762c84c2-187d-454a-af81-d3381bec5257.json │ │ ├── ps_8e762581-e1b1-4fb4-81d3-7f8a1cabb97f.json │ │ ├── ps_982142aa-2883-4fd0-9b0b-37eb5a37dd35.json │ │ ├── sym_0337813d-b625-477d-96b2-86da83aaf50e.json │ │ ├── sym_074a7b69-59e2-4c60-a224-072b24218a32.json │ │ ├── sym_1c7bd20c-d751-4e43-8bb1-8e218663ca1f.json │ │ ├── sym_1f176305-dbe6-4349-a3c0-fe0927faaec4.json │ │ ├── sym_282b24b5-4110-48b1-9de2-5ba445099674.json │ │ ├── sym_2ab1dfcc-3c33-4757-8fb6-c3e689525631.json │ │ ├── sym_4e652245-510c-4d3a-91cc-09c5b6e4dd5a.json │ │ ├── sym_53263dcf-a379-4905-841e-964f935177eb.json │ │ ├── sym_5b7a580f-fa81-4cde-84c2-9da30ebc9c5a.json │ │ ├── sym_666d73e4-aa34-4314-9529-9ff9bebe8222.json │ │ ├── sym_79608e45-d53c-46e5-8650-7d5413ff90ce.json │ │ ├── sym_8b74fc3a-bf2f-416c-b9a0-b4ba79efe54e.json │ │ ├── sym_9bf6abff-c38e-4e11-9d25-fbbe4af15a1f.json │ │ ├── sym_bace47c2-6ef3-4fb9-8f7f-040cce434b23.json │ │ ├── sym_bf4a400e-3a0c-4a0f-ac2e-503e8bae0dbb.json │ │ ├── sym_d128f534-1a9a-4174-9a59-d97eeb66a95e.json │ │ ├── sym_df9d1cee-e22a-453b-99ad-05c4d70c4ea2.json │ │ ├── sym_e2cde69b-9fa7-4332-ba8f-7e5b3ee8ad73.json │ │ ├── sym_e35a8198-b9de-459e-af45-4e62e2a401d0.json │ │ ├── sym_e6c07d38-4440-4847-bca9-5d1510510e6a.json │ │ ├── sym_e6e8ab58-97d9-4e72-966d-c3034ed27de5.json │ │ ├── sym_f551292b-eca9-49a3-948b-886a618ce45a.json │ │ ├── unit_1ff21aa2-c401-47e0-8b09-bdbf4168d0cd.json │ │ ├── unit_249c5d42-11bf-4569-8ff4-0b03bcac7a03.json │ │ ├── unit_3363f7ef-c8bf-4c29-9d80-2551b4551806.json │ │ ├── unit_375ee5ff-c8af-4b5e-bf2f-a59f8eb54fc3.json │ │ ├── unit_5cf859e7-139d-4c32-8884-3510fb9c9ad4.json │ │ ├── unit_65ca7042-168b-4fbf-8455-9fadd57d86e5.json │ │ ├── unit_7019e204-e404-4bcd-828b-3486c16dec3a.json │ │ ├── unit_70e733a1-8d63-4929-9bce-97f24cce01f9.json │ │ ├── unit_742d3965-2e4f-4b84-b375-93c2c817d933.json │ │ ├── unit_7600f363-97ed-4110-93de-fe885e24391e.json │ │ ├── unit_7a739335-7282-4229-b66b-7f654ed60faf.json │ │ ├── unit_94818c76-c777-496a-a103-4c2379990a9b.json │ │ ├── unit_9b22b899-e8eb-4ce8-b62d-79b7b2db035e.json │ │ ├── unit_a5d6080d-39f4-4e3d-aa5f-bb9520c2a657.json │ │ ├── unit_b2b8aeac-1d10-426c-94c4-37c4ba8a9e13.json │ │ ├── unit_b4d2282e-7d58-4a2a-9deb-c993b09dfcd2.json │ │ ├── unit_c6a7e13e-6c70-4a80-a0dd-335d7b16967f.json │ │ ├── unit_d5b9dc4b-7732-477d-bd7a-be760af429d5.json │ │ ├── unit_d73adcb6-a080-477f-a67e-f4c7a5c42956.json │ │ ├── unit_df1b4e47-be10-40c5-ab39-ec8ca5f2189f.json │ │ ├── unit_e6d2aa0d-d714-4689-bf88-95678de8504f.json │ │ └── unit_ebf07627-6cc6-4ab0-9d3a-6b5bb09f1b2e.json │ ├── hubble.hprj │ ├── output │ │ ├── 3d-1.png │ │ ├── 3d-2.png │ │ ├── 3d-3.png │ │ ├── gerber │ │ │ ├── hubble.gbl │ │ │ ├── hubble.gbo │ │ │ ├── hubble.gbp │ │ │ ├── hubble.gbs │ │ │ ├── hubble.gko │ │ │ ├── hubble.gtl │ │ │ ├── hubble.gto │ │ │ ├── hubble.gtp │ │ │ ├── hubble.gts │ │ │ ├── hubble.txt │ │ │ └── hubble.zip │ │ └── schematic.pdf │ ├── top_block.json │ ├── top_sch.json │ └── vias │ │ └── .keep └── swd │ ├── .gitignore │ ├── board.json │ ├── cache │ ├── 3d_models │ │ └── pool_6d752bc3-29b3-45df-8cf2-1e3aacefbcc6 │ │ │ └── 3d_models │ │ │ └── connector │ │ │ └── header │ │ │ └── 2.54mm │ │ │ └── PinHeader_1x06_P2.54mm_Vertical.step │ ├── entity_3163122e-5414-47a0-aa58-449d007268d4.json │ ├── entity_8b3bdf54-336c-485e-94d9-021ecf72a0d7.json │ ├── entity_c92588a0-86ac-4b1c-aa07-b591777d2617.json │ ├── frame_ba34cbaf-e36e-44c3-af16-bab253fc720b.json │ ├── part_30bc2df1-6813-4952-abf6-30bc84616d07.json │ ├── part_4a7dfff9-374f-45f9-9df8-0fe3ef63554f.json │ ├── part_c47b6e69-6004-42ef-ab49-968d8255e048.json │ ├── pkg_030a8458-fbfa-4505-ab7f-89b1bbd2a2ff.json │ ├── pkg_73efac3d-d3e5-4bc9-ab78-370b7faed6a9.json │ ├── pkg_c47b6e69-6004-42ef-ab49-968d8255e048.json │ ├── ps_296cf69b-9d53-45e4-aaab-4aedf4087d3a.json │ ├── ps_3846f4bf-7acf-403a-bc36-771ec675eac9.json │ ├── ps_3c4a52fe-3ae0-4c3e-a108-824b53d6d6da.json │ ├── sym_1a5ed450-6d04-4666-a3c7-fef06a355373.json │ ├── sym_1c80d9de-1371-4517-a9a2-cad0d9a1d337.json │ ├── sym_bf4a400e-3a0c-4a0f-ac2e-503e8bae0dbb.json │ ├── unit_65ca7042-168b-4fbf-8455-9fadd57d86e5.json │ ├── unit_903eed88-3d25-4290-a8e9-484a2e625c45.json │ └── unit_a5d6080d-39f4-4e3d-aa5f-bb9520c2a657.json │ ├── hubble-swd.hprj │ ├── output │ ├── 3d-1.png │ ├── 3d-2.png │ ├── gerber │ │ ├── hubble-swd.gbl │ │ ├── hubble-swd.gbo │ │ ├── hubble-swd.gbp │ │ ├── hubble-swd.gbs │ │ ├── hubble-swd.gko │ │ ├── hubble-swd.gtl │ │ ├── hubble-swd.gto │ │ ├── hubble-swd.gtp │ │ ├── hubble-swd.gts │ │ ├── hubble-swd.txt │ │ └── hubble-swd.zip │ └── schematic.pdf │ ├── top_block.json │ ├── top_sch.json │ └── vias │ └── .keep ├── mech ├── .gitignore └── hubble.FCStd └── photos ├── hubble-1.jpg └── hubble-2.jpg /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/README.md -------------------------------------------------------------------------------- /fw/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/.clang-format -------------------------------------------------------------------------------- /fw/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/.gitignore -------------------------------------------------------------------------------- /fw/common/auto_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/auto_off.c -------------------------------------------------------------------------------- /fw/common/auto_off.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/auto_off.h -------------------------------------------------------------------------------- /fw/common/bat_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/bat_hw.h -------------------------------------------------------------------------------- /fw/common/dfu_hw.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void enter_bootloader(void); 4 | -------------------------------------------------------------------------------- /fw/common/dpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/dpy.c -------------------------------------------------------------------------------- /fw/common/dpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/dpy.h -------------------------------------------------------------------------------- /fw/common/dpy_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/dpy_hw.h -------------------------------------------------------------------------------- /fw/common/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/event.h -------------------------------------------------------------------------------- /fw/common/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/font.c -------------------------------------------------------------------------------- /fw/common/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/font.h -------------------------------------------------------------------------------- /fw/common/font8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/font8.h -------------------------------------------------------------------------------- /fw/common/font_u16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/font_u16b.h -------------------------------------------------------------------------------- /fw/common/font_u16n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/font_u16n.h -------------------------------------------------------------------------------- /fw/common/font_u24b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/font_u24b.h -------------------------------------------------------------------------------- /fw/common/font_u32b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/font_u32b.h -------------------------------------------------------------------------------- /fw/common/font_u8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/font_u8.h -------------------------------------------------------------------------------- /fw/common/font_u8_small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/font_u8_small.h -------------------------------------------------------------------------------- /fw/common/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/led.c -------------------------------------------------------------------------------- /fw/common/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/led.h -------------------------------------------------------------------------------- /fw/common/led_hw.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | 4 | void led_hw_set(uint16_t v); 5 | -------------------------------------------------------------------------------- /fw/common/m88e111.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/m88e111.c -------------------------------------------------------------------------------- /fw/common/m88e111.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/m88e111.h -------------------------------------------------------------------------------- /fw/common/m88e111_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/m88e111_hw.h -------------------------------------------------------------------------------- /fw/common/ret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/ret.c -------------------------------------------------------------------------------- /fw/common/ret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/ret.h -------------------------------------------------------------------------------- /fw/common/ret_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/ret_hw.h -------------------------------------------------------------------------------- /fw/common/sfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/sfp.c -------------------------------------------------------------------------------- /fw/common/sfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/sfp.h -------------------------------------------------------------------------------- /fw/common/sfp_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/sfp_hw.h -------------------------------------------------------------------------------- /fw/common/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/sources.mk -------------------------------------------------------------------------------- /fw/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/util.h -------------------------------------------------------------------------------- /fw/common/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/view.c -------------------------------------------------------------------------------- /fw/common/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/view.h -------------------------------------------------------------------------------- /fw/common/view_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/view_timer.h -------------------------------------------------------------------------------- /fw/common/view_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/view_util.c -------------------------------------------------------------------------------- /fw/common/view_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/view_util.h -------------------------------------------------------------------------------- /fw/common/views/view_eye.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/views/view_eye.c -------------------------------------------------------------------------------- /fw/common/views/view_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/views/view_i2c.c -------------------------------------------------------------------------------- /fw/common/views/view_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/views/view_id.c -------------------------------------------------------------------------------- /fw/common/views/view_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/views/view_led.c -------------------------------------------------------------------------------- /fw/common/views/view_phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/views/view_phy.c -------------------------------------------------------------------------------- /fw/common/views/view_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/views/view_pwr.c -------------------------------------------------------------------------------- /fw/common/views/view_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/views/view_set.c -------------------------------------------------------------------------------- /fw/common/views/views.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/views/views.c -------------------------------------------------------------------------------- /fw/common/views/views.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/common/views/views.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/cmsis_version.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/core_armv8mml.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/core_cm0.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/core_cm0plus.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/core_cm1.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/core_cm23.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/core_cm3.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/core_cm33.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/core_cm4.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/core_cm7.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/core_sc000.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/core_sc300.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/mpu_armv7.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/mpu_armv8.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Include/tz_context.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Template/ARMv8-M/main_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Template/ARMv8-M/main_s.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core/Template/ARMv8-M/tz_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core/Template/ARMv8-M/tz_context.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core_A/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core_A/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core_A/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core_A/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core_A/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core_A/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core_A/Include/cmsis_cp15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core_A/Include/cmsis_cp15.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core_A/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core_A/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core_A/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core_A/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core_A/Include/core_ca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core_A/Include/core_ca.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core_A/Include/irq_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core_A/Include/irq_ctrl.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Core_A/Source/irq_ctrl_gic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Core_A/Source/irq_ctrl_gic.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/src/main.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/RefLibs/inc/ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/RefLibs/inc/ref.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/DSP/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/DSP/Include/arm_common_tables.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/DSP/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/DSP/Include/arm_const_structs.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/DSP/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/DSP/Include/arm_math.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/DSP/Source/SupportFunctions/arm_copy_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/DSP/Source/SupportFunctions/arm_copy_q7.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/DSP/Source/SupportFunctions/arm_fill_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/DSP/Source/SupportFunctions/arm_fill_q7.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l412xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l412xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l422xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l422xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l431xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l431xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l432xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l432xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l442xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l442xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l443xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l443xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l451xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l451xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l452xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l452xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l462xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l462xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l471xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l471xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l475xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l475xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l485xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l485xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l486xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l486xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l496xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l496xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4a6xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4a6xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4r5xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4r5xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4r7xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4r7xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4r9xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4r9xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4s5xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4s5xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4s7xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4s7xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4s9xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4s9xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Lib/ARM/arm_cortexM4b_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Lib/ARM/arm_cortexM4b_math.lib -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Lib/ARM/arm_cortexM4bf_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Lib/ARM/arm_cortexM4bf_math.lib -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Lib/ARM/arm_cortexM4l_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Lib/ARM/arm_cortexM4l_math.lib -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Lib/ARM/arm_cortexM4lf_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Lib/ARM/arm_cortexM4lf_math.lib -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Lib/GCC/libarm_cortexM4l_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Lib/GCC/libarm_cortexM4l_math.a -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Lib/GCC/libarm_cortexM4lf_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Lib/GCC/libarm_cortexM4lf_math.a -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Lib/IAR/iar_cortexM4b_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Lib/IAR/iar_cortexM4b_math.a -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Lib/IAR/iar_cortexM4bf_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Lib/IAR/iar_cortexM4bf_math.a -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Lib/IAR/iar_cortexM4l_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Lib/IAR/iar_cortexM4l_math.a -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/Lib/IAR/iar_cortexM4lf_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/Lib/IAR/iar_cortexM4lf_math.a -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/NN/Include/arm_nn_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/NN/Include/arm_nn_tables.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/NN/Include/arm_nnfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/NN/Include/arm_nnfunctions.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/NN/Include/arm_nnsupportfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/NN/Include/arm_nnsupportfunctions.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/RTOS/Template/cmsis_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/RTOS/Template/cmsis_os.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/RTOS2/Include/cmsis_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/RTOS2/Include/cmsis_os2.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/RTOS2/Include/os_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/RTOS2/Include/os_tick.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/RTOS2/Source/os_systick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/RTOS2/Source/os_systick.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/RTOS2/Source/os_tick_gtim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/RTOS2/Source/os_tick_gtim.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/RTOS2/Source/os_tick_ptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/RTOS2/Source/os_tick_ptim.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/RTOS2/Template/cmsis_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/RTOS2/Template/cmsis_os.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/CMSIS/RTOS2/Template/cmsis_os1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/CMSIS/RTOS2/Template/cmsis_os1.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_adc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_adc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_adc_ex.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_can.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_comp.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_crc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_crc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_crc_ex.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cryp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cryp.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dac.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dac_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dac_ex.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dcmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dcmi.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dfsdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dfsdm.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma2d.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma_ex.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dsi.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_exti.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_flash.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gfxmmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gfxmmu.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_gpio.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_hash.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_hcd.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c_ex.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_irda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_irda.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_iwdg.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_lcd.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_lptim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_lptim.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_ltdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_ltdc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_mmc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_mmc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_mmc_ex.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_nand.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_nor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_nor.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_opamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_opamp.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_ospi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_ospi.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd_ex.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_qspi.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rng.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc_ex.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_sai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_sai.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_sai_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_sai_ex.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_sd.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_sd_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_sd_ex.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_smbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_smbus.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi_ex.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_sram.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_swpmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_swpmi.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim_ex.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tsc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_uart.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_usart.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_wwdg.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_comp.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma2d.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dmamux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dmamux.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_fmc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_iwdg.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_lptim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_lptim.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_lpuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_lpuart.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_opamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_opamp.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rng.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rtc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_sdmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_sdmmc.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_swpmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_swpmi.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_wwdg.h -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_adc.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_adc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_adc_ex.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_can.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_comp.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_cortex.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_crc.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_crc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_crc_ex.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_cryp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_cryp.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dac.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dac_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dac_ex.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dcmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dcmi.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dfsdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dfsdm.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dma.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dma2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dma2d.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dma_ex.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dsi.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_exti.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_flash.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_gfxmmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_gfxmmu.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_gpio.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_hash.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_hcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_hcd.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_i2c.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_i2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_i2c_ex.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_irda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_irda.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_iwdg.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_lcd.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_lptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_lptim.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_ltdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_ltdc.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_mmc.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_mmc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_mmc_ex.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_nand.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_nor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_nor.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_opamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_opamp.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_ospi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_ospi.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pcd.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pcd_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pcd_ex.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pwr.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_qspi.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rcc.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rng.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rtc.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rtc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rtc_ex.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_sai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_sai.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_sai_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_sai_ex.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_sd.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_sd_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_sd_ex.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_smbus.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_spi.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_spi_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_spi_ex.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_sram.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_swpmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_swpmi.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_tim.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_tim_ex.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_tsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_tsc.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_uart.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_usart.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_wwdg.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_adc.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_comp.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_crc.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_crs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_crs.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_dac.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_dma.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_dma2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_dma2d.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_exti.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_fmc.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_gpio.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_i2c.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_lptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_lptim.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_lpuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_lpuart.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_opamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_opamp.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_pwr.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_rcc.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_rng.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_rtc.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_sdmmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_sdmmc.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_spi.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_swpmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_swpmi.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_tim.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_usart.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_usb.c -------------------------------------------------------------------------------- /fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_utils.c -------------------------------------------------------------------------------- /fw/dfu/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Inc/main.h -------------------------------------------------------------------------------- /fw/dfu/Inc/stm32_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Inc/stm32_assert.h -------------------------------------------------------------------------------- /fw/dfu/Inc/stm32l4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Inc/stm32l4xx_hal_conf.h -------------------------------------------------------------------------------- /fw/dfu/Inc/stm32l4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Inc/stm32l4xx_it.h -------------------------------------------------------------------------------- /fw/dfu/Inc/trg_conf.h: -------------------------------------------------------------------------------- 1 | #define TRG_BOOTLOADER 1 2 | -------------------------------------------------------------------------------- /fw/dfu/Inc/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Inc/usb_device.h -------------------------------------------------------------------------------- /fw/dfu/Inc/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Inc/usbd_conf.h -------------------------------------------------------------------------------- /fw/dfu/Inc/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Inc/usbd_desc.h -------------------------------------------------------------------------------- /fw/dfu/Inc/usbd_dfu_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Inc/usbd_dfu_if.h -------------------------------------------------------------------------------- /fw/dfu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Makefile -------------------------------------------------------------------------------- /fw/dfu/STM32L412CBUx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/STM32L412CBUx_FLASH.ld -------------------------------------------------------------------------------- /fw/dfu/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Src/main.c -------------------------------------------------------------------------------- /fw/dfu/Src/stm32l4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Src/stm32l4xx_hal_msp.c -------------------------------------------------------------------------------- /fw/dfu/Src/stm32l4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Src/stm32l4xx_it.c -------------------------------------------------------------------------------- /fw/dfu/Src/system_stm32l4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Src/system_stm32l4xx.c -------------------------------------------------------------------------------- /fw/dfu/Src/usb_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Src/usb_device.c -------------------------------------------------------------------------------- /fw/dfu/Src/usbd_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Src/usbd_conf.c -------------------------------------------------------------------------------- /fw/dfu/Src/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Src/usbd_desc.c -------------------------------------------------------------------------------- /fw/dfu/Src/usbd_dfu_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/Src/usbd_dfu_if.c -------------------------------------------------------------------------------- /fw/dfu/hubble-dfu.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/hubble-dfu.ioc -------------------------------------------------------------------------------- /fw/dfu/startup_stm32l412xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/dfu/startup_stm32l412xx.s -------------------------------------------------------------------------------- /fw/sim/.gitignore: -------------------------------------------------------------------------------- 1 | sim 2 | *~ 3 | -------------------------------------------------------------------------------- /fw/sim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/sim/Makefile -------------------------------------------------------------------------------- /fw/sim/bat_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/sim/bat_hw.c -------------------------------------------------------------------------------- /fw/sim/dpy_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/sim/dpy_hw.c -------------------------------------------------------------------------------- /fw/sim/led_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/sim/led_hw.c -------------------------------------------------------------------------------- /fw/sim/m88e111_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/sim/m88e111_hw.c -------------------------------------------------------------------------------- /fw/sim/ret_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/sim/ret_hw.c -------------------------------------------------------------------------------- /fw/sim/sfp_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/sim/sfp_hw.c -------------------------------------------------------------------------------- /fw/sim/sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/sim/sim.c -------------------------------------------------------------------------------- /fw/sim/trg_conf.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fw/sim/ui.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/sim/ui.glade -------------------------------------------------------------------------------- /fw/sim/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/sim/ui.py -------------------------------------------------------------------------------- /fw/target-common/Inc/dpy_trg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target-common/Inc/dpy_trg.h -------------------------------------------------------------------------------- /fw/target-common/Inc/version_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target-common/Inc/version_info.h -------------------------------------------------------------------------------- /fw/target-common/Src/dpy_trg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target-common/Src/dpy_trg.c -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/cmsis_version.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/core_armv8mml.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/core_cm0.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/core_cm0plus.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/core_cm1.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/core_cm23.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/core_cm3.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/core_cm33.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/core_cm4.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/core_cm7.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/core_sc000.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/core_sc300.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/mpu_armv7.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/mpu_armv8.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Include/tz_context.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Template/ARMv8-M/main_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Template/ARMv8-M/main_s.c -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core/Template/ARMv8-M/tz_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core/Template/ARMv8-M/tz_context.c -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core_A/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core_A/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core_A/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core_A/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core_A/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core_A/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core_A/Include/cmsis_cp15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core_A/Include/cmsis_cp15.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core_A/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core_A/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core_A/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core_A/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core_A/Include/core_ca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core_A/Include/core_ca.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core_A/Include/irq_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core_A/Include/irq_ctrl.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Core_A/Source/irq_ctrl_gic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Core_A/Source/irq_ctrl_gic.c -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/DSP/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/DSP/Include/arm_common_tables.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/DSP/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/DSP/Include/arm_const_structs.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/DSP/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/DSP/Include/arm_math.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Lib/ARM/arm_cortexM4b_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Lib/ARM/arm_cortexM4b_math.lib -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Lib/ARM/arm_cortexM4bf_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Lib/ARM/arm_cortexM4bf_math.lib -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Lib/ARM/arm_cortexM4l_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Lib/ARM/arm_cortexM4l_math.lib -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Lib/ARM/arm_cortexM4lf_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Lib/ARM/arm_cortexM4lf_math.lib -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Lib/GCC/libarm_cortexM4l_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Lib/GCC/libarm_cortexM4l_math.a -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Lib/GCC/libarm_cortexM4lf_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Lib/GCC/libarm_cortexM4lf_math.a -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Lib/IAR/iar_cortexM4b_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Lib/IAR/iar_cortexM4b_math.a -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Lib/IAR/iar_cortexM4bf_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Lib/IAR/iar_cortexM4bf_math.a -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Lib/IAR/iar_cortexM4l_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Lib/IAR/iar_cortexM4l_math.a -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/Lib/IAR/iar_cortexM4lf_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/Lib/IAR/iar_cortexM4lf_math.a -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/NN/Include/arm_nn_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/NN/Include/arm_nn_tables.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/NN/Include/arm_nnfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/NN/Include/arm_nnfunctions.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/NN/Include/arm_nnsupportfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/NN/Include/arm_nnsupportfunctions.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/RTOS/Template/cmsis_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/RTOS/Template/cmsis_os.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/RTOS2/Include/cmsis_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/RTOS2/Include/cmsis_os2.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/RTOS2/Include/os_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/RTOS2/Include/os_tick.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/RTOS2/Source/os_systick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/RTOS2/Source/os_systick.c -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/RTOS2/Source/os_tick_gtim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/RTOS2/Source/os_tick_gtim.c -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/RTOS2/Source/os_tick_ptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/RTOS2/Source/os_tick_ptim.c -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/RTOS2/Template/cmsis_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/RTOS2/Template/cmsis_os.h -------------------------------------------------------------------------------- /fw/target/Drivers/CMSIS/RTOS2/Template/cmsis_os1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/CMSIS/RTOS2/Template/cmsis_os1.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_adc.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_can.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_crc.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dac.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_def.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dma.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_dsi.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_hcd.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_i2c.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_lcd.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_mmc.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_nor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_nor.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pcd.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_pwr.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rcc.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rng.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_rtc.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_sai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_sai.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_sd.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_spi.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tim.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_tsc.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_comp.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crc.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_fmc.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_iwdg.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rng.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rtc.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usb.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_wwdg.h -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_adc.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_can.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_crc.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dac.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dma.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_dsi.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_hcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_hcd.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_i2c.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_lcd.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_mmc.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_nor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_nor.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pcd.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pwr.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rcc.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rng.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rtc.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_sai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_sai.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_sd.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_spi.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_tim.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_tsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_tsc.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_adc.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_comp.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_crc.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_crs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_crs.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_dac.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_dma.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_exti.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_fmc.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_gpio.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_i2c.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_pwr.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_rcc.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_rng.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_rtc.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_spi.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_tim.c -------------------------------------------------------------------------------- /fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_usb.c -------------------------------------------------------------------------------- /fw/target/Inc/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Inc/FreeRTOSConfig.h -------------------------------------------------------------------------------- /fw/target/Inc/bat_trg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Inc/bat_trg.h -------------------------------------------------------------------------------- /fw/target/Inc/debounce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Inc/debounce.h -------------------------------------------------------------------------------- /fw/target/Inc/led_trg.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "main.h" 3 | 4 | void led_trg_init(TIM_HandleTypeDef *h); 5 | -------------------------------------------------------------------------------- /fw/target/Inc/m88e111_trg.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "main.h" 3 | 4 | void m88e111_trg_init(I2C_HandleTypeDef *h); 5 | -------------------------------------------------------------------------------- /fw/target/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Inc/main.h -------------------------------------------------------------------------------- /fw/target/Inc/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Inc/os.h -------------------------------------------------------------------------------- /fw/target/Inc/persist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Inc/persist.h -------------------------------------------------------------------------------- /fw/target/Inc/ret_trg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Inc/ret_trg.h -------------------------------------------------------------------------------- /fw/target/Inc/sfp_trg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Inc/sfp_trg.h -------------------------------------------------------------------------------- /fw/target/Inc/stm32_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Inc/stm32_assert.h -------------------------------------------------------------------------------- /fw/target/Inc/stm32l4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Inc/stm32l4xx_hal_conf.h -------------------------------------------------------------------------------- /fw/target/Inc/stm32l4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Inc/stm32l4xx_it.h -------------------------------------------------------------------------------- /fw/target/Inc/trg_conf.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fw/target/Inc/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Inc/usb_device.h -------------------------------------------------------------------------------- /fw/target/Inc/usbd_cdc_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Inc/usbd_cdc_if.h -------------------------------------------------------------------------------- /fw/target/Inc/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Inc/usbd_conf.h -------------------------------------------------------------------------------- /fw/target/Inc/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Inc/usbd_desc.h -------------------------------------------------------------------------------- /fw/target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Makefile -------------------------------------------------------------------------------- /fw/target/Middlewares/Third_Party/FreeRTOS/Source/croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Middlewares/Third_Party/FreeRTOS/Source/croutine.c -------------------------------------------------------------------------------- /fw/target/Middlewares/Third_Party/FreeRTOS/Source/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Middlewares/Third_Party/FreeRTOS/Source/list.c -------------------------------------------------------------------------------- /fw/target/Middlewares/Third_Party/FreeRTOS/Source/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Middlewares/Third_Party/FreeRTOS/Source/queue.c -------------------------------------------------------------------------------- /fw/target/Middlewares/Third_Party/FreeRTOS/Source/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Middlewares/Third_Party/FreeRTOS/Source/tasks.c -------------------------------------------------------------------------------- /fw/target/Middlewares/Third_Party/FreeRTOS/Source/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Middlewares/Third_Party/FreeRTOS/Source/timers.c -------------------------------------------------------------------------------- /fw/target/STM32L412CBUx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/STM32L412CBUx_FLASH.ld -------------------------------------------------------------------------------- /fw/target/Src/bat_trg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/bat_trg.c -------------------------------------------------------------------------------- /fw/target/Src/debounce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/debounce.c -------------------------------------------------------------------------------- /fw/target/Src/freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/freertos.c -------------------------------------------------------------------------------- /fw/target/Src/led_trg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/led_trg.c -------------------------------------------------------------------------------- /fw/target/Src/m88e111_trg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/m88e111_trg.c -------------------------------------------------------------------------------- /fw/target/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/main.c -------------------------------------------------------------------------------- /fw/target/Src/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/os.c -------------------------------------------------------------------------------- /fw/target/Src/persist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/persist.c -------------------------------------------------------------------------------- /fw/target/Src/ret_trg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/ret_trg.c -------------------------------------------------------------------------------- /fw/target/Src/sfp_trg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/sfp_trg.c -------------------------------------------------------------------------------- /fw/target/Src/stm32l4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/stm32l4xx_hal_msp.c -------------------------------------------------------------------------------- /fw/target/Src/stm32l4xx_hal_timebase_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/stm32l4xx_hal_timebase_tim.c -------------------------------------------------------------------------------- /fw/target/Src/stm32l4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/stm32l4xx_it.c -------------------------------------------------------------------------------- /fw/target/Src/system_stm32l4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/system_stm32l4xx.c -------------------------------------------------------------------------------- /fw/target/Src/usb_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/usb_device.c -------------------------------------------------------------------------------- /fw/target/Src/usbd_cdc_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/usbd_cdc_if.c -------------------------------------------------------------------------------- /fw/target/Src/usbd_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/usbd_conf.c -------------------------------------------------------------------------------- /fw/target/Src/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/Src/usbd_desc.c -------------------------------------------------------------------------------- /fw/target/hubble.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/hubble.ioc -------------------------------------------------------------------------------- /fw/target/sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/sign.py -------------------------------------------------------------------------------- /fw/target/startup_stm32l412xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/fw/target/startup_stm32l412xx.s -------------------------------------------------------------------------------- /hw/led/.gitignore: -------------------------------------------------------------------------------- 1 | cache/3d_models/*/*/local 2 | -------------------------------------------------------------------------------- /hw/led/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/board.json -------------------------------------------------------------------------------- /hw/led/cache/entity_29f544a1-a789-4fe6-a1ef-29da5ba3d371.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/entity_29f544a1-a789-4fe6-a1ef-29da5ba3d371.json -------------------------------------------------------------------------------- /hw/led/cache/entity_7aea1811-235c-4f06-933b-1080df3d31ba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/entity_7aea1811-235c-4f06-933b-1080df3d31ba.json -------------------------------------------------------------------------------- /hw/led/cache/entity_e738fcf2-bf36-46b2-8288-82f43aabca8a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/entity_e738fcf2-bf36-46b2-8288-82f43aabca8a.json -------------------------------------------------------------------------------- /hw/led/cache/frame_ba34cbaf-e36e-44c3-af16-bab253fc720b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/frame_ba34cbaf-e36e-44c3-af16-bab253fc720b.json -------------------------------------------------------------------------------- /hw/led/cache/part_0afec80c-6a9a-4b8c-aa2f-101fe01f7659.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/part_0afec80c-6a9a-4b8c-aa2f-101fe01f7659.json -------------------------------------------------------------------------------- /hw/led/cache/part_5db7f314-544c-4b8a-bfe3-022205ec4d28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/part_5db7f314-544c-4b8a-bfe3-022205ec4d28.json -------------------------------------------------------------------------------- /hw/led/cache/part_6ac253eb-6518-4cd5-ab1f-47ee3a0aa9a3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/part_6ac253eb-6518-4cd5-ab1f-47ee3a0aa9a3.json -------------------------------------------------------------------------------- /hw/led/cache/part_90c2bb49-c448-47ec-a447-1e9f795aebe7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/part_90c2bb49-c448-47ec-a447-1e9f795aebe7.json -------------------------------------------------------------------------------- /hw/led/cache/pkg_19fcebde-c90d-4cfc-b163-d8b52146c0e3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/pkg_19fcebde-c90d-4cfc-b163-d8b52146c0e3.json -------------------------------------------------------------------------------- /hw/led/cache/pkg_5899c4ac-8ed7-4732-943e-7f841d4a96f7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/pkg_5899c4ac-8ed7-4732-943e-7f841d4a96f7.json -------------------------------------------------------------------------------- /hw/led/cache/pkg_d9b94dc5-539c-47cc-8bc3-724405aeb207.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/pkg_d9b94dc5-539c-47cc-8bc3-724405aeb207.json -------------------------------------------------------------------------------- /hw/led/cache/ps_296cf69b-9d53-45e4-aaab-4aedf4087d3a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/ps_296cf69b-9d53-45e4-aaab-4aedf4087d3a.json -------------------------------------------------------------------------------- /hw/led/cache/ps_3846f4bf-7acf-403a-bc36-771ec675eac9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/ps_3846f4bf-7acf-403a-bc36-771ec675eac9.json -------------------------------------------------------------------------------- /hw/led/cache/ps_3c4a52fe-3ae0-4c3e-a108-824b53d6d6da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/ps_3c4a52fe-3ae0-4c3e-a108-824b53d6d6da.json -------------------------------------------------------------------------------- /hw/led/cache/ps_762c84c2-187d-454a-af81-d3381bec5257.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/ps_762c84c2-187d-454a-af81-d3381bec5257.json -------------------------------------------------------------------------------- /hw/led/cache/ps_96ba4267-bc32-4695-bd85-71adac855b29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/ps_96ba4267-bc32-4695-bd85-71adac855b29.json -------------------------------------------------------------------------------- /hw/led/cache/sym_089ad062-27e0-4ed5-ac1e-8091669ad453.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/sym_089ad062-27e0-4ed5-ac1e-8091669ad453.json -------------------------------------------------------------------------------- /hw/led/cache/sym_1eeb2204-4f6d-4de7-bd63-6b07ad593a91.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/sym_1eeb2204-4f6d-4de7-bd63-6b07ad593a91.json -------------------------------------------------------------------------------- /hw/led/cache/sym_5b7a580f-fa81-4cde-84c2-9da30ebc9c5a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/sym_5b7a580f-fa81-4cde-84c2-9da30ebc9c5a.json -------------------------------------------------------------------------------- /hw/led/cache/unit_25a3d833-f0a5-4b3f-91ec-36b235b1d6d7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/unit_25a3d833-f0a5-4b3f-91ec-36b235b1d6d7.json -------------------------------------------------------------------------------- /hw/led/cache/unit_4204a51f-5541-47a3-9faa-e62701e087ee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/unit_4204a51f-5541-47a3-9faa-e62701e087ee.json -------------------------------------------------------------------------------- /hw/led/cache/unit_c6a7e13e-6c70-4a80-a0dd-335d7b16967f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/cache/unit_c6a7e13e-6c70-4a80-a0dd-335d7b16967f.json -------------------------------------------------------------------------------- /hw/led/hubble-led.hprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/hubble-led.hprj -------------------------------------------------------------------------------- /hw/led/output/3d-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/output/3d-1.png -------------------------------------------------------------------------------- /hw/led/output/3d-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/output/3d-2.png -------------------------------------------------------------------------------- /hw/led/output/3d-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/output/3d-3.png -------------------------------------------------------------------------------- /hw/led/output/gerber/hubble-led.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/output/gerber/hubble-led.gbl -------------------------------------------------------------------------------- /hw/led/output/gerber/hubble-led.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/output/gerber/hubble-led.gbo -------------------------------------------------------------------------------- /hw/led/output/gerber/hubble-led.gbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/output/gerber/hubble-led.gbp -------------------------------------------------------------------------------- /hw/led/output/gerber/hubble-led.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/output/gerber/hubble-led.gbs -------------------------------------------------------------------------------- /hw/led/output/gerber/hubble-led.gko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/output/gerber/hubble-led.gko -------------------------------------------------------------------------------- /hw/led/output/gerber/hubble-led.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/output/gerber/hubble-led.gtl -------------------------------------------------------------------------------- /hw/led/output/gerber/hubble-led.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/output/gerber/hubble-led.gto -------------------------------------------------------------------------------- /hw/led/output/gerber/hubble-led.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/output/gerber/hubble-led.gtp -------------------------------------------------------------------------------- /hw/led/output/gerber/hubble-led.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/output/gerber/hubble-led.gts -------------------------------------------------------------------------------- /hw/led/output/gerber/hubble-led.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/output/gerber/hubble-led.txt -------------------------------------------------------------------------------- /hw/led/output/gerber/hubble-led.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/output/gerber/hubble-led.zip -------------------------------------------------------------------------------- /hw/led/output/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/output/schematic.pdf -------------------------------------------------------------------------------- /hw/led/top_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/top_block.json -------------------------------------------------------------------------------- /hw/led/top_sch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/led/top_sch.json -------------------------------------------------------------------------------- /hw/led/vias/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hw/main/.gitignore: -------------------------------------------------------------------------------- 1 | cache/3d_models/*/*/local 2 | -------------------------------------------------------------------------------- /hw/main/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/board.json -------------------------------------------------------------------------------- /hw/main/cache/entity_09952b1f-1221-48ad-896c-4481914e3af2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_09952b1f-1221-48ad-896c-4481914e3af2.json -------------------------------------------------------------------------------- /hw/main/cache/entity_19a945e7-7eff-480b-bd56-85b8a821ab51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_19a945e7-7eff-480b-bd56-85b8a821ab51.json -------------------------------------------------------------------------------- /hw/main/cache/entity_1d534e1d-704a-4d44-a6e6-c6106a2827ab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_1d534e1d-704a-4d44-a6e6-c6106a2827ab.json -------------------------------------------------------------------------------- /hw/main/cache/entity_267343bf-e6bf-42f4-b256-381dd96f011d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_267343bf-e6bf-42f4-b256-381dd96f011d.json -------------------------------------------------------------------------------- /hw/main/cache/entity_29f544a1-a789-4fe6-a1ef-29da5ba3d371.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_29f544a1-a789-4fe6-a1ef-29da5ba3d371.json -------------------------------------------------------------------------------- /hw/main/cache/entity_3163122e-5414-47a0-aa58-449d007268d4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_3163122e-5414-47a0-aa58-449d007268d4.json -------------------------------------------------------------------------------- /hw/main/cache/entity_3ce770af-7be0-4f72-b2af-2c8010911aaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_3ce770af-7be0-4f72-b2af-2c8010911aaf.json -------------------------------------------------------------------------------- /hw/main/cache/entity_5156d094-b187-4e47-aec8-e78fee9733eb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_5156d094-b187-4e47-aec8-e78fee9733eb.json -------------------------------------------------------------------------------- /hw/main/cache/entity_5c723cab-5313-419e-aed3-6e5a34777da8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_5c723cab-5313-419e-aed3-6e5a34777da8.json -------------------------------------------------------------------------------- /hw/main/cache/entity_6e907d39-7f84-475c-b270-e693d6035193.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_6e907d39-7f84-475c-b270-e693d6035193.json -------------------------------------------------------------------------------- /hw/main/cache/entity_7fc885b0-a865-4ec5-a4cc-1a3680e34716.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_7fc885b0-a865-4ec5-a4cc-1a3680e34716.json -------------------------------------------------------------------------------- /hw/main/cache/entity_87b4784e-ac52-4917-b4cd-13703f3e9e0e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_87b4784e-ac52-4917-b4cd-13703f3e9e0e.json -------------------------------------------------------------------------------- /hw/main/cache/entity_8b3bdf54-336c-485e-94d9-021ecf72a0d7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_8b3bdf54-336c-485e-94d9-021ecf72a0d7.json -------------------------------------------------------------------------------- /hw/main/cache/entity_ab428500-9156-4918-b231-9c1e2e508454.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_ab428500-9156-4918-b231-9c1e2e508454.json -------------------------------------------------------------------------------- /hw/main/cache/entity_ac656848-2504-4c1e-9cee-c2d3a3320cca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_ac656848-2504-4c1e-9cee-c2d3a3320cca.json -------------------------------------------------------------------------------- /hw/main/cache/entity_b3c7f10f-2160-4b68-a38b-10bf0263c097.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_b3c7f10f-2160-4b68-a38b-10bf0263c097.json -------------------------------------------------------------------------------- /hw/main/cache/entity_c933ec53-003c-454f-a2bd-9fe4a7fc59c6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_c933ec53-003c-454f-a2bd-9fe4a7fc59c6.json -------------------------------------------------------------------------------- /hw/main/cache/entity_ca83a84f-6183-4088-84b6-5d79b2a119d4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_ca83a84f-6183-4088-84b6-5d79b2a119d4.json -------------------------------------------------------------------------------- /hw/main/cache/entity_cba5158c-706d-4f10-b48a-2de7e5a82a4c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_cba5158c-706d-4f10-b48a-2de7e5a82a4c.json -------------------------------------------------------------------------------- /hw/main/cache/entity_cc5a76b5-3aa5-46c7-9304-aae645ea3e11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_cc5a76b5-3aa5-46c7-9304-aae645ea3e11.json -------------------------------------------------------------------------------- /hw/main/cache/entity_f1cafe55-ca30-4a2f-9c9e-ae06f9ea7859.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_f1cafe55-ca30-4a2f-9c9e-ae06f9ea7859.json -------------------------------------------------------------------------------- /hw/main/cache/entity_f7ebd877-c58b-42ad-bf4e-360ce61908e9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/entity_f7ebd877-c58b-42ad-bf4e-360ce61908e9.json -------------------------------------------------------------------------------- /hw/main/cache/frame_ba34cbaf-e36e-44c3-af16-bab253fc720b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/frame_ba34cbaf-e36e-44c3-af16-bab253fc720b.json -------------------------------------------------------------------------------- /hw/main/cache/part_0181a5db-42e2-46ae-a8a6-49070b910d9f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/part_0181a5db-42e2-46ae-a8a6-49070b910d9f.json -------------------------------------------------------------------------------- /hw/main/cache/part_0228e225-3aec-4167-aaaa-3c5e9d6351d3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/part_0228e225-3aec-4167-aaaa-3c5e9d6351d3.json -------------------------------------------------------------------------------- /hw/main/cache/part_093cfc31-5e15-4c85-adaf-620154945a2a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/part_093cfc31-5e15-4c85-adaf-620154945a2a.json -------------------------------------------------------------------------------- /hw/main/cache/part_0b6632c7-c291-43a8-adae-b4d0bd12e5dd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/part_0b6632c7-c291-43a8-adae-b4d0bd12e5dd.json -------------------------------------------------------------------------------- /hw/main/cache/part_0b85d11f-be3d-4ca9-9648-385b4904e28f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/part_0b85d11f-be3d-4ca9-9648-385b4904e28f.json -------------------------------------------------------------------------------- /hw/main/cache/part_0bd908ef-62e1-4b93-b6d5-2c14aa4491e1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/part_0bd908ef-62e1-4b93-b6d5-2c14aa4491e1.json -------------------------------------------------------------------------------- /hw/main/cache/part_12c5b98e-d055-441d-ad02-760adde0cc1a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/part_12c5b98e-d055-441d-ad02-760adde0cc1a.json -------------------------------------------------------------------------------- /hw/main/cache/part_13402d3d-2176-491a-9a95-d09886c7737a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/part_13402d3d-2176-491a-9a95-d09886c7737a.json -------------------------------------------------------------------------------- /hw/main/cache/part_16321bae-6cfa-4e56-bd03-bfccc7b5570f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/part_16321bae-6cfa-4e56-bd03-bfccc7b5570f.json -------------------------------------------------------------------------------- /hw/main/cache/part_1afdcf86-9f3f-4f5c-b05a-43ae765a99e8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/part_1afdcf86-9f3f-4f5c-b05a-43ae765a99e8.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_0c6f5ea3-c601-4b00-b985-6db23ce77246.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_0c6f5ea3-c601-4b00-b985-6db23ce77246.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_226c3c69-79aa-4e87-8eea-51463ac9f278.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_226c3c69-79aa-4e87-8eea-51463ac9f278.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_29d43d68-e839-4564-b71e-b4d600c7341e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_29d43d68-e839-4564-b71e-b4d600c7341e.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_57476afd-d664-4268-bac3-704b58c85add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_57476afd-d664-4268-bac3-704b58c85add.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_602390ae-4cf7-4e64-ae67-df84f9cdb322.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_602390ae-4cf7-4e64-ae67-df84f9cdb322.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_615a5e7a-5d6c-4aad-b021-d71711a6eb73.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_615a5e7a-5d6c-4aad-b021-d71711a6eb73.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_6bd2e831-52db-4c54-bf87-23f1c3e96fdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_6bd2e831-52db-4c54-bf87-23f1c3e96fdf.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_6d3afe3b-81e0-453a-ae96-084c01af1ed3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_6d3afe3b-81e0-453a-ae96-084c01af1ed3.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_70c65846-2ee7-4d11-9d38-fe0fa84dc963.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_70c65846-2ee7-4d11-9d38-fe0fa84dc963.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_73efac3d-d3e5-4bc9-ab78-370b7faed6a9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_73efac3d-d3e5-4bc9-ab78-370b7faed6a9.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_82beb012-b4a4-4c6f-9e75-9eb70f394c5b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_82beb012-b4a4-4c6f-9e75-9eb70f394c5b.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_8be7fc82-c2d9-4d25-9741-08de9317435e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_8be7fc82-c2d9-4d25-9741-08de9317435e.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_912ac77a-2d3a-46ce-a60d-18eb7a750a7c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_912ac77a-2d3a-46ce-a60d-18eb7a750a7c.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_9260270c-dc4a-446a-9fcd-0f930e1ffabc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_9260270c-dc4a-446a-9fcd-0f930e1ffabc.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_94355730-7802-478f-87c1-e7ef639fb102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_94355730-7802-478f-87c1-e7ef639fb102.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_b0c8c92e-7aef-412b-a7a1-92ddb5475cf0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_b0c8c92e-7aef-412b-a7a1-92ddb5475cf0.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_bd668303-4b11-4126-ad76-83fa0ec72818.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_bd668303-4b11-4126-ad76-83fa0ec72818.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_cd1e7a02-9813-4f80-b1c7-93c5ea71ffb4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_cd1e7a02-9813-4f80-b1c7-93c5ea71ffb4.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_d37d22c0-a371-4fb1-98ef-511f368f16ea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_d37d22c0-a371-4fb1-98ef-511f368f16ea.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_e4154d23-4454-4f15-a001-35dc80912e84.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_e4154d23-4454-4f15-a001-35dc80912e84.json -------------------------------------------------------------------------------- /hw/main/cache/pkg_fe22ac1d-25b9-4a47-8414-51c990d7f94b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/pkg_fe22ac1d-25b9-4a47-8414-51c990d7f94b.json -------------------------------------------------------------------------------- /hw/main/cache/ps_1b61c332-df5b-4571-9006-467968aafeee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/ps_1b61c332-df5b-4571-9006-467968aafeee.json -------------------------------------------------------------------------------- /hw/main/cache/ps_3846f4bf-7acf-403a-bc36-771ec675eac9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/ps_3846f4bf-7acf-403a-bc36-771ec675eac9.json -------------------------------------------------------------------------------- /hw/main/cache/ps_42b89a10-6869-4143-8bd8-5cb157b00f5b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/ps_42b89a10-6869-4143-8bd8-5cb157b00f5b.json -------------------------------------------------------------------------------- /hw/main/cache/ps_574a4000-054a-4ae4-bf88-97d264cce38d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/ps_574a4000-054a-4ae4-bf88-97d264cce38d.json -------------------------------------------------------------------------------- /hw/main/cache/ps_762c84c2-187d-454a-af81-d3381bec5257.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/ps_762c84c2-187d-454a-af81-d3381bec5257.json -------------------------------------------------------------------------------- /hw/main/cache/ps_8e762581-e1b1-4fb4-81d3-7f8a1cabb97f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/ps_8e762581-e1b1-4fb4-81d3-7f8a1cabb97f.json -------------------------------------------------------------------------------- /hw/main/cache/ps_982142aa-2883-4fd0-9b0b-37eb5a37dd35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/ps_982142aa-2883-4fd0-9b0b-37eb5a37dd35.json -------------------------------------------------------------------------------- /hw/main/cache/sym_0337813d-b625-477d-96b2-86da83aaf50e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_0337813d-b625-477d-96b2-86da83aaf50e.json -------------------------------------------------------------------------------- /hw/main/cache/sym_074a7b69-59e2-4c60-a224-072b24218a32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_074a7b69-59e2-4c60-a224-072b24218a32.json -------------------------------------------------------------------------------- /hw/main/cache/sym_1c7bd20c-d751-4e43-8bb1-8e218663ca1f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_1c7bd20c-d751-4e43-8bb1-8e218663ca1f.json -------------------------------------------------------------------------------- /hw/main/cache/sym_1f176305-dbe6-4349-a3c0-fe0927faaec4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_1f176305-dbe6-4349-a3c0-fe0927faaec4.json -------------------------------------------------------------------------------- /hw/main/cache/sym_282b24b5-4110-48b1-9de2-5ba445099674.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_282b24b5-4110-48b1-9de2-5ba445099674.json -------------------------------------------------------------------------------- /hw/main/cache/sym_2ab1dfcc-3c33-4757-8fb6-c3e689525631.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_2ab1dfcc-3c33-4757-8fb6-c3e689525631.json -------------------------------------------------------------------------------- /hw/main/cache/sym_4e652245-510c-4d3a-91cc-09c5b6e4dd5a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_4e652245-510c-4d3a-91cc-09c5b6e4dd5a.json -------------------------------------------------------------------------------- /hw/main/cache/sym_53263dcf-a379-4905-841e-964f935177eb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_53263dcf-a379-4905-841e-964f935177eb.json -------------------------------------------------------------------------------- /hw/main/cache/sym_5b7a580f-fa81-4cde-84c2-9da30ebc9c5a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_5b7a580f-fa81-4cde-84c2-9da30ebc9c5a.json -------------------------------------------------------------------------------- /hw/main/cache/sym_666d73e4-aa34-4314-9529-9ff9bebe8222.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_666d73e4-aa34-4314-9529-9ff9bebe8222.json -------------------------------------------------------------------------------- /hw/main/cache/sym_79608e45-d53c-46e5-8650-7d5413ff90ce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_79608e45-d53c-46e5-8650-7d5413ff90ce.json -------------------------------------------------------------------------------- /hw/main/cache/sym_8b74fc3a-bf2f-416c-b9a0-b4ba79efe54e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_8b74fc3a-bf2f-416c-b9a0-b4ba79efe54e.json -------------------------------------------------------------------------------- /hw/main/cache/sym_9bf6abff-c38e-4e11-9d25-fbbe4af15a1f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_9bf6abff-c38e-4e11-9d25-fbbe4af15a1f.json -------------------------------------------------------------------------------- /hw/main/cache/sym_bace47c2-6ef3-4fb9-8f7f-040cce434b23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_bace47c2-6ef3-4fb9-8f7f-040cce434b23.json -------------------------------------------------------------------------------- /hw/main/cache/sym_bf4a400e-3a0c-4a0f-ac2e-503e8bae0dbb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_bf4a400e-3a0c-4a0f-ac2e-503e8bae0dbb.json -------------------------------------------------------------------------------- /hw/main/cache/sym_d128f534-1a9a-4174-9a59-d97eeb66a95e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_d128f534-1a9a-4174-9a59-d97eeb66a95e.json -------------------------------------------------------------------------------- /hw/main/cache/sym_df9d1cee-e22a-453b-99ad-05c4d70c4ea2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_df9d1cee-e22a-453b-99ad-05c4d70c4ea2.json -------------------------------------------------------------------------------- /hw/main/cache/sym_e2cde69b-9fa7-4332-ba8f-7e5b3ee8ad73.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_e2cde69b-9fa7-4332-ba8f-7e5b3ee8ad73.json -------------------------------------------------------------------------------- /hw/main/cache/sym_e35a8198-b9de-459e-af45-4e62e2a401d0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_e35a8198-b9de-459e-af45-4e62e2a401d0.json -------------------------------------------------------------------------------- /hw/main/cache/sym_e6c07d38-4440-4847-bca9-5d1510510e6a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_e6c07d38-4440-4847-bca9-5d1510510e6a.json -------------------------------------------------------------------------------- /hw/main/cache/sym_e6e8ab58-97d9-4e72-966d-c3034ed27de5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_e6e8ab58-97d9-4e72-966d-c3034ed27de5.json -------------------------------------------------------------------------------- /hw/main/cache/sym_f551292b-eca9-49a3-948b-886a618ce45a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/cache/sym_f551292b-eca9-49a3-948b-886a618ce45a.json -------------------------------------------------------------------------------- /hw/main/hubble.hprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/hubble.hprj -------------------------------------------------------------------------------- /hw/main/output/3d-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/output/3d-1.png -------------------------------------------------------------------------------- /hw/main/output/3d-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/output/3d-2.png -------------------------------------------------------------------------------- /hw/main/output/3d-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/output/3d-3.png -------------------------------------------------------------------------------- /hw/main/output/gerber/hubble.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/output/gerber/hubble.gbl -------------------------------------------------------------------------------- /hw/main/output/gerber/hubble.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/output/gerber/hubble.gbo -------------------------------------------------------------------------------- /hw/main/output/gerber/hubble.gbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/output/gerber/hubble.gbp -------------------------------------------------------------------------------- /hw/main/output/gerber/hubble.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/output/gerber/hubble.gbs -------------------------------------------------------------------------------- /hw/main/output/gerber/hubble.gko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/output/gerber/hubble.gko -------------------------------------------------------------------------------- /hw/main/output/gerber/hubble.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/output/gerber/hubble.gtl -------------------------------------------------------------------------------- /hw/main/output/gerber/hubble.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/output/gerber/hubble.gto -------------------------------------------------------------------------------- /hw/main/output/gerber/hubble.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/output/gerber/hubble.gtp -------------------------------------------------------------------------------- /hw/main/output/gerber/hubble.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/output/gerber/hubble.gts -------------------------------------------------------------------------------- /hw/main/output/gerber/hubble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/output/gerber/hubble.txt -------------------------------------------------------------------------------- /hw/main/output/gerber/hubble.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/output/gerber/hubble.zip -------------------------------------------------------------------------------- /hw/main/output/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/output/schematic.pdf -------------------------------------------------------------------------------- /hw/main/top_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/top_block.json -------------------------------------------------------------------------------- /hw/main/top_sch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/main/top_sch.json -------------------------------------------------------------------------------- /hw/main/vias/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hw/swd/.gitignore: -------------------------------------------------------------------------------- 1 | cache/3d_models/*/*/local 2 | -------------------------------------------------------------------------------- /hw/swd/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/board.json -------------------------------------------------------------------------------- /hw/swd/cache/part_30bc2df1-6813-4952-abf6-30bc84616d07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/cache/part_30bc2df1-6813-4952-abf6-30bc84616d07.json -------------------------------------------------------------------------------- /hw/swd/cache/part_4a7dfff9-374f-45f9-9df8-0fe3ef63554f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/cache/part_4a7dfff9-374f-45f9-9df8-0fe3ef63554f.json -------------------------------------------------------------------------------- /hw/swd/cache/part_c47b6e69-6004-42ef-ab49-968d8255e048.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/cache/part_c47b6e69-6004-42ef-ab49-968d8255e048.json -------------------------------------------------------------------------------- /hw/swd/cache/pkg_030a8458-fbfa-4505-ab7f-89b1bbd2a2ff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/cache/pkg_030a8458-fbfa-4505-ab7f-89b1bbd2a2ff.json -------------------------------------------------------------------------------- /hw/swd/cache/pkg_73efac3d-d3e5-4bc9-ab78-370b7faed6a9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/cache/pkg_73efac3d-d3e5-4bc9-ab78-370b7faed6a9.json -------------------------------------------------------------------------------- /hw/swd/cache/pkg_c47b6e69-6004-42ef-ab49-968d8255e048.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/cache/pkg_c47b6e69-6004-42ef-ab49-968d8255e048.json -------------------------------------------------------------------------------- /hw/swd/cache/ps_296cf69b-9d53-45e4-aaab-4aedf4087d3a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/cache/ps_296cf69b-9d53-45e4-aaab-4aedf4087d3a.json -------------------------------------------------------------------------------- /hw/swd/cache/ps_3846f4bf-7acf-403a-bc36-771ec675eac9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/cache/ps_3846f4bf-7acf-403a-bc36-771ec675eac9.json -------------------------------------------------------------------------------- /hw/swd/cache/ps_3c4a52fe-3ae0-4c3e-a108-824b53d6d6da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/cache/ps_3c4a52fe-3ae0-4c3e-a108-824b53d6d6da.json -------------------------------------------------------------------------------- /hw/swd/cache/sym_1a5ed450-6d04-4666-a3c7-fef06a355373.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/cache/sym_1a5ed450-6d04-4666-a3c7-fef06a355373.json -------------------------------------------------------------------------------- /hw/swd/cache/sym_1c80d9de-1371-4517-a9a2-cad0d9a1d337.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/cache/sym_1c80d9de-1371-4517-a9a2-cad0d9a1d337.json -------------------------------------------------------------------------------- /hw/swd/cache/sym_bf4a400e-3a0c-4a0f-ac2e-503e8bae0dbb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/cache/sym_bf4a400e-3a0c-4a0f-ac2e-503e8bae0dbb.json -------------------------------------------------------------------------------- /hw/swd/cache/unit_65ca7042-168b-4fbf-8455-9fadd57d86e5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/cache/unit_65ca7042-168b-4fbf-8455-9fadd57d86e5.json -------------------------------------------------------------------------------- /hw/swd/cache/unit_903eed88-3d25-4290-a8e9-484a2e625c45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/cache/unit_903eed88-3d25-4290-a8e9-484a2e625c45.json -------------------------------------------------------------------------------- /hw/swd/cache/unit_a5d6080d-39f4-4e3d-aa5f-bb9520c2a657.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/cache/unit_a5d6080d-39f4-4e3d-aa5f-bb9520c2a657.json -------------------------------------------------------------------------------- /hw/swd/hubble-swd.hprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/hubble-swd.hprj -------------------------------------------------------------------------------- /hw/swd/output/3d-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/output/3d-1.png -------------------------------------------------------------------------------- /hw/swd/output/3d-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/output/3d-2.png -------------------------------------------------------------------------------- /hw/swd/output/gerber/hubble-swd.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/output/gerber/hubble-swd.gbl -------------------------------------------------------------------------------- /hw/swd/output/gerber/hubble-swd.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/output/gerber/hubble-swd.gbo -------------------------------------------------------------------------------- /hw/swd/output/gerber/hubble-swd.gbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/output/gerber/hubble-swd.gbp -------------------------------------------------------------------------------- /hw/swd/output/gerber/hubble-swd.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/output/gerber/hubble-swd.gbs -------------------------------------------------------------------------------- /hw/swd/output/gerber/hubble-swd.gko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/output/gerber/hubble-swd.gko -------------------------------------------------------------------------------- /hw/swd/output/gerber/hubble-swd.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/output/gerber/hubble-swd.gtl -------------------------------------------------------------------------------- /hw/swd/output/gerber/hubble-swd.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/output/gerber/hubble-swd.gto -------------------------------------------------------------------------------- /hw/swd/output/gerber/hubble-swd.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/output/gerber/hubble-swd.gtp -------------------------------------------------------------------------------- /hw/swd/output/gerber/hubble-swd.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/output/gerber/hubble-swd.gts -------------------------------------------------------------------------------- /hw/swd/output/gerber/hubble-swd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/output/gerber/hubble-swd.txt -------------------------------------------------------------------------------- /hw/swd/output/gerber/hubble-swd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/output/gerber/hubble-swd.zip -------------------------------------------------------------------------------- /hw/swd/output/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/output/schematic.pdf -------------------------------------------------------------------------------- /hw/swd/top_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/top_block.json -------------------------------------------------------------------------------- /hw/swd/top_sch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/hw/swd/top_sch.json -------------------------------------------------------------------------------- /hw/swd/vias/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mech/.gitignore: -------------------------------------------------------------------------------- 1 | *.FCStd1 2 | -------------------------------------------------------------------------------- /mech/hubble.FCStd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/mech/hubble.FCStd -------------------------------------------------------------------------------- /photos/hubble-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/photos/hubble-1.jpg -------------------------------------------------------------------------------- /photos/hubble-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrotIndustries/hubble/HEAD/photos/hubble-2.jpg --------------------------------------------------------------------------------