├── .github └── workflows │ └── sync_issues.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── boards.txt ├── bootloaders ├── arch_mix │ ├── board │ │ └── MIMXRT1052 │ │ │ ├── MIMXRT1052xxxxx_flexspi_nor.scf │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── startup_MIMXRT1052.s │ ├── bootloader.hex │ ├── usb │ │ ├── usb_device_cdc_acm.c │ │ ├── usb_device_cdc_acm.h │ │ ├── usb_device_ch9.c │ │ ├── usb_device_ch9.h │ │ ├── usb_device_class.c │ │ ├── usb_device_class.h │ │ ├── usb_device_config.h │ │ ├── usb_device_descriptor.c │ │ ├── usb_device_descriptor.h │ │ ├── virtual_com.c │ │ └── virtual_com.h │ └── user │ │ ├── app.h │ │ ├── app.s │ │ ├── board_drive_led.c │ │ ├── board_drive_led.h │ │ ├── bootloader.c │ │ ├── flexspi_hyper_flash_ops.c │ │ ├── imxrt_ba_cdc.c │ │ ├── imxrt_ba_cdc.h │ │ ├── imxrt_ba_flash.c │ │ ├── imxrt_ba_flash.h │ │ ├── imxrt_ba_monitor.c │ │ └── imxrt_ba_monitor.h ├── rt1062 │ ├── board │ │ └── MIMXRT1062 │ │ │ ├── MIMXRT1062xxxxx_itcm_txt_sdram.scf │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── pin_mux.c │ │ │ ├── pin_mux.h │ │ │ └── startup_MIMXRT1062.s │ ├── bootloader.hex │ ├── usb │ │ ├── usb_device_cdc_acm.c │ │ ├── usb_device_cdc_acm.h │ │ ├── usb_device_ch9.c │ │ ├── usb_device_ch9.h │ │ ├── usb_device_class.c │ │ ├── usb_device_class.h │ │ ├── usb_device_config.h │ │ ├── usb_device_descriptor.c │ │ ├── usb_device_descriptor.h │ │ ├── virtual_com.c │ │ └── virtual_com.h │ ├── user │ │ ├── app.h │ │ ├── app.s │ │ ├── board_drive_led.c │ │ ├── board_drive_led.h │ │ ├── bootloader.c │ │ ├── flexspi_hyper_flash_ops.c │ │ ├── flexspi_hyper_flash_ops.h │ │ ├── imxrt_ba_cdc.c │ │ ├── imxrt_ba_cdc.h │ │ ├── imxrt_ba_flash.c │ │ ├── imxrt_ba_flash.h │ │ ├── imxrt_ba_monitor.c │ │ └── imxrt_ba_monitor.h │ └── xip │ │ ├── fsl_flexspi_nor_boot.c │ │ ├── fsl_flexspi_nor_boot.h │ │ ├── imxrt1062_sdram_ini_dcd.c │ │ ├── imxrt1062_sdram_ini_dcd.h │ │ ├── imxrt1062_spiflash_config.c │ │ └── imxrt1062_spiflash_config.h └── rt1064 │ └── readme.md ├── cores └── arduino │ ├── Arduino.h │ ├── Binary.h │ ├── Client.h │ ├── Common.cpp │ ├── Common.h │ ├── HardwareI2C.h │ ├── HardwareSerial.h │ ├── IPAddress.cpp │ ├── IPAddress.h │ ├── Interrupts.h │ ├── PluggableUSB.cpp │ ├── PluggableUSB.h │ ├── Print.cpp │ ├── Print.h │ ├── Printable.h │ ├── RingBuffer.h │ ├── Server.h │ ├── Stream.cpp │ ├── Stream.h │ ├── USB │ ├── usb_device_cdc_acm.c │ ├── usb_device_cdc_acm.h │ ├── usb_device_ch9.c │ ├── usb_device_ch9.h │ ├── usb_device_class.c │ ├── usb_device_class.h │ ├── usb_device_config.h │ ├── usb_device_descriptor.c │ ├── usb_device_descriptor.h │ ├── usb_host_config.h │ ├── virtual_com.c │ └── virtual_com.h │ ├── USBAPI.h │ ├── USBCDC.cpp │ ├── USBCDC.h │ ├── Uart.cpp │ ├── Uart.h │ ├── Udp.h │ ├── WCharacter.h │ ├── WMath.cpp │ ├── WString.cpp │ ├── WString.h │ ├── WVariant.h │ ├── abi.cpp │ ├── deprecated-avr-comp │ └── avr │ │ ├── dtostrf.c.impl │ │ ├── dtostrf.h │ │ ├── interrupt.h │ │ └── pgmspace.h │ ├── deprecated │ ├── Client.h │ ├── HardwareSerial.h │ ├── IPAddress.h │ ├── Print.h │ ├── Printable.h │ ├── Server.h │ ├── Stream.h │ └── Udp.h │ ├── hooks.c │ ├── itoa.h │ ├── main.cpp │ ├── new.cpp │ ├── wiring.c │ ├── wiring_analog.c │ ├── wiring_analog.h │ ├── wiring_digital.c │ ├── wiring_private.c │ └── wiring_private.h ├── drivers └── readme.md ├── extras ├── images │ └── GIF 2019-10-15 14-53-19.gif └── readme.md ├── libraries ├── SPI │ ├── SPI.cpp │ ├── SPI.h │ ├── examples │ │ ├── BarometricPressureSensor │ │ │ └── BarometricPressureSensor.ino │ │ └── DigitalPotControl │ │ │ └── DigitalPotControl.ino │ ├── keywords.txt │ └── library.properties └── Wire │ ├── Wire.cpp │ ├── Wire.h │ ├── examples │ ├── SFRRanger_reader │ │ └── SFRRanger_reader.ino │ ├── digital_potentiometer │ │ └── digital_potentiometer.ino │ ├── master_reader │ │ └── master_reader.ino │ ├── master_writer │ │ └── master_writer.ino │ ├── slave_receiver │ │ └── slave_receiver.ino │ └── slave_sender │ │ └── slave_sender.ino │ ├── keywords.txt │ └── library.properties ├── package.json ├── platform.txt ├── programmers.txt ├── sdk.cmake ├── tools ├── cmake │ ├── README.md │ ├── arm-none-toolchain.cmake │ ├── common.cmake │ ├── compile-flags.cmake │ ├── dump-config.cmake │ ├── executable.cmake │ ├── fix-9985.cmake │ ├── macros.cmake │ └── macros.internal.cmake ├── lib │ └── MIMXRT1052 │ │ ├── libfsl_bsp.a │ │ ├── libfsl_usb_drivers.a │ │ └── libfsl_xip_drivers.a └── sdk │ ├── CMSIS │ ├── DSP_Lib │ │ ├── Examples │ │ │ └── ARM │ │ │ │ ├── arm_class_marks_example │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE │ │ │ │ │ ├── Device │ │ │ │ │ │ ├── ARMCM0 │ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ │ ├── ARMCM3 │ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ │ ├── ARMCM4_FP │ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ │ └── ARMCM7_SP │ │ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ │ └── RTE_Components.h │ │ │ │ ├── arm_class_marks_example.ini │ │ │ │ ├── arm_class_marks_example.uvoptx │ │ │ │ ├── arm_class_marks_example.uvprojx │ │ │ │ └── arm_class_marks_example_f32.c │ │ │ │ ├── arm_convolution_example │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE │ │ │ │ │ ├── Device │ │ │ │ │ │ ├── ARMCM0 │ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ │ ├── ARMCM3 │ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ │ ├── ARMCM4_FP │ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ │ └── ARMCM7_SP │ │ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ │ └── RTE_Components.h │ │ │ │ ├── arm_convolution_example.ini │ │ │ │ ├── arm_convolution_example.uvoptx │ │ │ │ ├── arm_convolution_example.uvprojx │ │ │ │ ├── arm_convolution_example_f32.c │ │ │ │ ├── math_helper.c │ │ │ │ └── math_helper.h │ │ │ │ ├── arm_dotproduct_example │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE │ │ │ │ │ ├── Device │ │ │ │ │ │ ├── ARMCM0 │ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ │ ├── ARMCM3 │ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ │ ├── ARMCM4_FP │ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ │ └── ARMCM7_SP │ │ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ │ └── RTE_Components.h │ │ │ │ ├── arm_dotproduct_example.ini │ │ │ │ ├── arm_dotproduct_example.uvoptx │ │ │ │ ├── arm_dotproduct_example.uvprojx │ │ │ │ └── arm_dotproduct_example_f32.c │ │ │ │ ├── arm_fft_bin_example │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE │ │ │ │ │ ├── Device │ │ │ │ │ │ ├── ARMCM0 │ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ │ ├── ARMCM3 │ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ │ ├── ARMCM4_FP │ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ │ └── ARMCM7_SP │ │ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ │ └── RTE_Components.h │ │ │ │ ├── arm_fft_bin_data.c │ │ │ │ ├── arm_fft_bin_example.ini │ │ │ │ ├── arm_fft_bin_example.uvoptx │ │ │ │ ├── arm_fft_bin_example.uvprojx │ │ │ │ └── arm_fft_bin_example_f32.c │ │ │ │ ├── arm_fir_example │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE │ │ │ │ │ ├── Device │ │ │ │ │ │ ├── ARMCM0 │ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ │ ├── ARMCM3 │ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ │ ├── ARMCM4_FP │ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ │ └── ARMCM7_SP │ │ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ │ └── RTE_Components.h │ │ │ │ ├── arm_fir_data.c │ │ │ │ ├── arm_fir_example.ini │ │ │ │ ├── arm_fir_example.uvoptx │ │ │ │ ├── arm_fir_example.uvprojx │ │ │ │ ├── arm_fir_example_f32.c │ │ │ │ ├── math_helper.c │ │ │ │ └── math_helper.h │ │ │ │ ├── arm_graphic_equalizer_example │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE │ │ │ │ │ ├── Device │ │ │ │ │ │ ├── ARMCM0 │ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ │ ├── ARMCM3 │ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ │ ├── ARMCM4_FP │ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ │ └── ARMCM7_SP │ │ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ │ └── RTE_Components.h │ │ │ │ ├── arm_graphic_equalizer_data.c │ │ │ │ ├── arm_graphic_equalizer_example.ini │ │ │ │ ├── arm_graphic_equalizer_example.uvoptx │ │ │ │ ├── arm_graphic_equalizer_example.uvprojx │ │ │ │ ├── arm_graphic_equalizer_example_q31.c │ │ │ │ ├── math_helper.c │ │ │ │ └── math_helper.h │ │ │ │ ├── arm_linear_interp_example │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE │ │ │ │ │ ├── Device │ │ │ │ │ │ ├── ARMCM0 │ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ │ ├── ARMCM3 │ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ │ ├── ARMCM4_FP │ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ │ └── ARMCM7_SP │ │ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ │ └── RTE_Components.h │ │ │ │ ├── arm_linear_interp_data.c │ │ │ │ ├── arm_linear_interp_example.ini │ │ │ │ ├── arm_linear_interp_example.uvoptx │ │ │ │ ├── arm_linear_interp_example.uvprojx │ │ │ │ ├── arm_linear_interp_example_f32.c │ │ │ │ ├── math_helper.c │ │ │ │ └── math_helper.h │ │ │ │ ├── arm_matrix_example │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE │ │ │ │ │ ├── Device │ │ │ │ │ │ ├── ARMCM0 │ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ │ ├── ARMCM3 │ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ │ ├── ARMCM4_FP │ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ │ └── ARMCM7_SP │ │ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ │ └── RTE_Components.h │ │ │ │ ├── arm_matrix_example.ini │ │ │ │ ├── arm_matrix_example.uvoptx │ │ │ │ ├── arm_matrix_example.uvprojx │ │ │ │ ├── arm_matrix_example_f32.c │ │ │ │ ├── math_helper.c │ │ │ │ └── math_helper.h │ │ │ │ ├── arm_signal_converge_example │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE │ │ │ │ │ ├── Device │ │ │ │ │ │ ├── ARMCM0 │ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ │ ├── ARMCM3 │ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ │ ├── ARMCM4_FP │ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ │ └── ARMCM7_SP │ │ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ │ └── RTE_Components.h │ │ │ │ ├── arm_signal_converge_data.c │ │ │ │ ├── arm_signal_converge_example.ini │ │ │ │ ├── arm_signal_converge_example.uvoptx │ │ │ │ ├── arm_signal_converge_example.uvprojx │ │ │ │ ├── arm_signal_converge_example_f32.c │ │ │ │ ├── math_helper.c │ │ │ │ └── math_helper.h │ │ │ │ ├── arm_sin_cos_example │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE │ │ │ │ │ ├── Device │ │ │ │ │ │ ├── ARMCM0 │ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ │ ├── ARMCM3 │ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ │ ├── ARMCM4_FP │ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ │ └── ARMCM7_SP │ │ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ │ └── RTE_Components.h │ │ │ │ ├── arm_sin_cos_example.ini │ │ │ │ ├── arm_sin_cos_example.uvoptx │ │ │ │ ├── arm_sin_cos_example.uvprojx │ │ │ │ └── arm_sin_cos_example_f32.c │ │ │ │ └── arm_variance_example │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE │ │ │ │ ├── Device │ │ │ │ │ ├── ARMCM0 │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ ├── ARMCM3 │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ ├── ARMCM4_FP │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ └── ARMCM7_SP │ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ └── RTE_Components.h │ │ │ │ ├── arm_variance_example.ini │ │ │ │ ├── arm_variance_example.uvoptx │ │ │ │ ├── arm_variance_example.uvprojx │ │ │ │ └── arm_variance_example_f32.c │ │ └── Source │ │ │ ├── ARM │ │ │ ├── arm_cortexM_math.uvoptx │ │ │ ├── arm_cortexM_math.uvprojx │ │ │ └── arm_cortexM_math_Build.bat │ │ │ ├── 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 │ │ │ ├── GCC │ │ │ ├── arm_cortexM_math.uvoptx │ │ │ ├── arm_cortexM_math.uvprojx │ │ │ └── arm_cortexM_math_Build.bat │ │ │ ├── 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 │ ├── Driver │ │ ├── DriverTemplates │ │ │ ├── Driver_CAN.c │ │ │ ├── Driver_ETH_MAC.c │ │ │ ├── Driver_ETH_PHY.c │ │ │ ├── Driver_Flash.c │ │ │ ├── Driver_I2C.c │ │ │ ├── Driver_MCI.c │ │ │ ├── Driver_SAI.c │ │ │ ├── Driver_SPI.c │ │ │ ├── Driver_Storage.c │ │ │ ├── Driver_USART.c │ │ │ ├── Driver_USBD.c │ │ │ └── Driver_USBH.c │ │ └── Include │ │ │ ├── Driver_CAN.h │ │ │ ├── Driver_Common.h │ │ │ ├── Driver_ETH.h │ │ │ ├── Driver_ETH_MAC.h │ │ │ ├── Driver_ETH_PHY.h │ │ │ ├── Driver_Flash.h │ │ │ ├── Driver_I2C.h │ │ │ ├── Driver_MCI.h │ │ │ ├── Driver_NAND.h │ │ │ ├── Driver_SAI.h │ │ │ ├── Driver_SPI.h │ │ │ ├── Driver_USART.h │ │ │ ├── Driver_USB.h │ │ │ ├── Driver_USBD.h │ │ │ └── Driver_USBH.h │ ├── Include │ │ ├── arm_common_tables.h │ │ ├── arm_const_structs.h │ │ ├── arm_math.h │ │ ├── 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_cm23.h │ │ ├── core_cm3.h │ │ ├── core_cm33.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_dsp.h │ │ ├── core_sc000.h │ │ ├── core_sc300.h │ │ ├── mpu_armv7.h │ │ ├── mpu_armv8.h │ │ └── tz_context.h │ ├── LICENSE.txt │ └── Lib │ │ └── GCC │ │ ├── libarm_cortexM7lfdp_math.a │ │ └── libarm_cortexM7lfsp_math.a │ ├── components │ ├── codec │ │ ├── cs42888 │ │ │ ├── fsl_cs42888.c │ │ │ └── fsl_cs42888.h │ │ ├── fsl_codec_common.c │ │ ├── fsl_codec_common.h │ │ ├── i2c │ │ │ ├── fsl_codec_i2c.c │ │ │ └── fsl_codec_i2c.h │ │ ├── port │ │ │ ├── cs42888 │ │ │ │ └── fsl_codec_adapter.c │ │ │ ├── fsl_codec_adapter.h │ │ │ └── wm8960 │ │ │ │ └── fsl_codec_adapter.c │ │ └── wm8960 │ │ │ ├── fsl_wm8960.c │ │ │ └── fsl_wm8960.h │ ├── ft5406_rt │ │ ├── fsl_ft5406_rt.c │ │ └── fsl_ft5406_rt.h │ ├── fxos8700cq │ │ ├── fsl_fxos.c │ │ └── fsl_fxos.h │ ├── i2c │ │ ├── i2c.h │ │ └── lpi2c_adapter.c │ ├── lists │ │ ├── generic_list.c │ │ └── generic_list.h │ ├── phyksz8081 │ │ ├── fsl_phy.c │ │ └── fsl_phy.h │ ├── serial_manager │ │ ├── serial_manager.c │ │ ├── serial_manager.h │ │ ├── serial_port_internal.h │ │ ├── serial_port_uart.c │ │ ├── serial_port_uart.h │ │ ├── serial_port_usb.c │ │ ├── serial_port_usb.h │ │ └── usb_cdc_adapter │ │ │ ├── inf │ │ │ ├── cdc.cat │ │ │ └── fsl_ucwxp.inf │ │ │ ├── usb_device_cdc_acm.c │ │ │ ├── usb_device_cdc_acm.h │ │ │ ├── usb_device_ch9.c │ │ │ ├── usb_device_ch9.h │ │ │ ├── usb_device_class.c │ │ │ ├── usb_device_class.h │ │ │ ├── usb_device_descriptor.c │ │ │ └── usb_device_descriptor.h │ ├── uart │ │ ├── lpuart_adapter.c │ │ └── uart.h │ └── video │ │ ├── camera │ │ ├── device │ │ │ ├── fsl_camera_device.h │ │ │ ├── mt9m114 │ │ │ │ ├── fsl_mt9m114.c │ │ │ │ └── fsl_mt9m114.h │ │ │ ├── ov7725 │ │ │ │ ├── fsl_ov7725.c │ │ │ │ └── fsl_ov7725.h │ │ │ └── sccb │ │ │ │ ├── fsl_sccb.c │ │ │ │ └── fsl_sccb.h │ │ ├── fsl_camera.h │ │ └── receiver │ │ │ ├── csi │ │ │ ├── fsl_csi_camera_adapter.c │ │ │ └── fsl_csi_camera_adapter.h │ │ │ └── fsl_camera_receiver.h │ │ ├── fsl_video_common.c │ │ ├── fsl_video_common.h │ │ └── i2c │ │ ├── fsl_video_i2c.c │ │ └── fsl_video_i2c.h │ ├── devices │ ├── MIMXRT1052 │ │ ├── MIMXRT1052.h │ │ ├── MIMXRT1052.xml │ │ ├── MIMXRT1052_features.h │ │ ├── arm │ │ │ ├── MIMXRT105x_HYPER_256KB_SEC.FLM │ │ │ └── MIMXRT105x_QuadSPI_4KB_SEC.FLM │ │ ├── cmsis_drivers │ │ │ ├── fsl_lpi2c_cmsis.c │ │ │ ├── fsl_lpi2c_cmsis.h │ │ │ ├── fsl_lpspi_cmsis.c │ │ │ ├── fsl_lpspi_cmsis.h │ │ │ ├── fsl_lpuart_cmsis.c │ │ │ └── fsl_lpuart_cmsis.h │ │ ├── drivers │ │ │ ├── fsl_adc.c │ │ │ ├── fsl_adc.h │ │ │ ├── fsl_adc_etc.c │ │ │ ├── fsl_adc_etc.h │ │ │ ├── fsl_aipstz.c │ │ │ ├── fsl_aipstz.h │ │ │ ├── fsl_aoi.c │ │ │ ├── fsl_aoi.h │ │ │ ├── fsl_bee.c │ │ │ ├── fsl_bee.h │ │ │ ├── fsl_cache.c │ │ │ ├── fsl_cache.h │ │ │ ├── fsl_clock.c │ │ │ ├── fsl_clock.h │ │ │ ├── fsl_cmp.c │ │ │ ├── fsl_cmp.h │ │ │ ├── fsl_common.c │ │ │ ├── fsl_common.h │ │ │ ├── fsl_csi.c │ │ │ ├── fsl_csi.h │ │ │ ├── fsl_dcdc.c │ │ │ ├── fsl_dcdc.h │ │ │ ├── fsl_dcp.c │ │ │ ├── fsl_dcp.h │ │ │ ├── fsl_dmamux.c │ │ │ ├── fsl_dmamux.h │ │ │ ├── fsl_edma.c │ │ │ ├── fsl_edma.h │ │ │ ├── fsl_elcdif.c │ │ │ ├── fsl_elcdif.h │ │ │ ├── fsl_enc.c │ │ │ ├── fsl_enc.h │ │ │ ├── fsl_enet.c │ │ │ ├── fsl_enet.h │ │ │ ├── fsl_ewm.c │ │ │ ├── fsl_ewm.h │ │ │ ├── fsl_flexcan.c │ │ │ ├── fsl_flexcan.h │ │ │ ├── fsl_flexio.c │ │ │ ├── fsl_flexio.h │ │ │ ├── fsl_flexio_camera.c │ │ │ ├── fsl_flexio_camera.h │ │ │ ├── fsl_flexio_camera_edma.c │ │ │ ├── fsl_flexio_camera_edma.h │ │ │ ├── fsl_flexio_i2c_master.c │ │ │ ├── fsl_flexio_i2c_master.h │ │ │ ├── fsl_flexio_i2s.c │ │ │ ├── fsl_flexio_i2s.h │ │ │ ├── fsl_flexio_i2s_edma.c │ │ │ ├── fsl_flexio_i2s_edma.h │ │ │ ├── fsl_flexio_mculcd.c │ │ │ ├── fsl_flexio_mculcd.h │ │ │ ├── fsl_flexio_mculcd_edma.c │ │ │ ├── fsl_flexio_mculcd_edma.h │ │ │ ├── fsl_flexio_spi.c │ │ │ ├── fsl_flexio_spi.h │ │ │ ├── fsl_flexio_spi_edma.c │ │ │ ├── fsl_flexio_spi_edma.h │ │ │ ├── fsl_flexio_uart.c │ │ │ ├── fsl_flexio_uart.h │ │ │ ├── fsl_flexio_uart_edma.c │ │ │ ├── fsl_flexio_uart_edma.h │ │ │ ├── fsl_flexram.c │ │ │ ├── fsl_flexram.h │ │ │ ├── fsl_flexspi.c │ │ │ ├── fsl_flexspi.h │ │ │ ├── fsl_gpc.c │ │ │ ├── fsl_gpc.h │ │ │ ├── fsl_gpio.c │ │ │ ├── fsl_gpio.h │ │ │ ├── fsl_gpt.c │ │ │ ├── fsl_gpt.h │ │ │ ├── fsl_iomuxc.h │ │ │ ├── fsl_kpp.c │ │ │ ├── fsl_kpp.h │ │ │ ├── fsl_lpi2c.c │ │ │ ├── fsl_lpi2c.h │ │ │ ├── fsl_lpi2c_edma.c │ │ │ ├── fsl_lpi2c_edma.h │ │ │ ├── fsl_lpspi.c │ │ │ ├── fsl_lpspi.h │ │ │ ├── fsl_lpspi_edma.c │ │ │ ├── fsl_lpspi_edma.h │ │ │ ├── fsl_lpuart.c │ │ │ ├── fsl_lpuart.h │ │ │ ├── fsl_lpuart_edma.c │ │ │ ├── fsl_lpuart_edma.h │ │ │ ├── fsl_ocotp.c │ │ │ ├── fsl_ocotp.h │ │ │ ├── fsl_pit.c │ │ │ ├── fsl_pit.h │ │ │ ├── fsl_pmu.c │ │ │ ├── fsl_pmu.h │ │ │ ├── fsl_pwm.c │ │ │ ├── fsl_pwm.h │ │ │ ├── fsl_pxp.c │ │ │ ├── fsl_pxp.h │ │ │ ├── fsl_qtmr.c │ │ │ ├── fsl_qtmr.h │ │ │ ├── fsl_rtwdog.c │ │ │ ├── fsl_rtwdog.h │ │ │ ├── fsl_sai.c │ │ │ ├── fsl_sai.h │ │ │ ├── fsl_sai_edma.c │ │ │ ├── fsl_sai_edma.h │ │ │ ├── fsl_semc.c │ │ │ ├── fsl_semc.h │ │ │ ├── fsl_snvs_hp.c │ │ │ ├── fsl_snvs_hp.h │ │ │ ├── fsl_snvs_lp.c │ │ │ ├── fsl_snvs_lp.h │ │ │ ├── fsl_spdif.c │ │ │ ├── fsl_spdif.h │ │ │ ├── fsl_spdif_edma.c │ │ │ ├── fsl_spdif_edma.h │ │ │ ├── fsl_src.c │ │ │ ├── fsl_src.h │ │ │ ├── fsl_tempmon.c │ │ │ ├── fsl_tempmon.h │ │ │ ├── fsl_trng.c │ │ │ ├── fsl_trng.h │ │ │ ├── fsl_tsc.c │ │ │ ├── fsl_tsc.h │ │ │ ├── fsl_usdhc.c │ │ │ ├── fsl_usdhc.h │ │ │ ├── fsl_wdog.c │ │ │ ├── fsl_wdog.h │ │ │ ├── fsl_xbara.c │ │ │ ├── fsl_xbara.h │ │ │ ├── fsl_xbarb.c │ │ │ └── fsl_xbarb.h │ │ ├── fsl_device_registers.h │ │ ├── gcc │ │ │ ├── MIMXRT1052xxxxx_flexspi_nor.ld │ │ │ ├── MIMXRT1052xxxxx_flexspi_nor_sdram.ld │ │ │ ├── MIMXRT1052xxxxx_ram.ld │ │ │ ├── MIMXRT1052xxxxx_sdram.ld │ │ │ ├── MIMXRT1052xxxxx_sdram_txt.ld │ │ │ └── startup_MIMXRT1052.S │ │ ├── project_template │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── peripherals.c │ │ │ ├── peripherals.h │ │ │ ├── pin_mux.c │ │ │ └── pin_mux.h │ │ ├── system_MIMXRT1052.c │ │ ├── system_MIMXRT1052.h │ │ ├── template │ │ │ └── RTE_Device.h │ │ ├── utilities │ │ │ ├── debug_console │ │ │ │ ├── fsl_debug_console.c │ │ │ │ ├── fsl_debug_console.h │ │ │ │ └── fsl_debug_console_conf.h │ │ │ ├── fsl_assert.c │ │ │ ├── fsl_notifier.c │ │ │ ├── fsl_notifier.h │ │ │ ├── fsl_sbrk.c │ │ │ ├── fsl_shell.c │ │ │ ├── fsl_shell.h │ │ │ └── str │ │ │ │ ├── fsl_str.c │ │ │ │ └── fsl_str.h │ │ └── xip │ │ │ ├── fsl_flexspi_nor_boot.c │ │ │ └── fsl_flexspi_nor_boot.h │ └── MIMXRT1062 │ │ ├── MIMXRT1062.h │ │ ├── MIMXRT1062.xml │ │ ├── MIMXRT1062_features.h │ │ ├── arm │ │ └── MIMXRT106x_QSPI_4KB_SEC.FLM │ │ ├── cmsis_drivers │ │ ├── fsl_lpi2c_cmsis.c │ │ ├── fsl_lpi2c_cmsis.h │ │ ├── fsl_lpspi_cmsis.c │ │ ├── fsl_lpspi_cmsis.h │ │ ├── fsl_lpuart_cmsis.c │ │ └── fsl_lpuart_cmsis.h │ │ ├── drivers │ │ ├── fsl_adc.c │ │ ├── fsl_adc.h │ │ ├── fsl_adc_etc.c │ │ ├── fsl_adc_etc.h │ │ ├── fsl_aipstz.c │ │ ├── fsl_aipstz.h │ │ ├── fsl_aoi.c │ │ ├── fsl_aoi.h │ │ ├── fsl_bee.c │ │ ├── fsl_bee.h │ │ ├── fsl_cache.c │ │ ├── fsl_cache.h │ │ ├── fsl_clock.c │ │ ├── fsl_clock.h │ │ ├── fsl_cmp.c │ │ ├── fsl_cmp.h │ │ ├── fsl_common.c │ │ ├── fsl_common.h │ │ ├── fsl_csi.c │ │ ├── fsl_csi.h │ │ ├── fsl_dcdc.c │ │ ├── fsl_dcdc.h │ │ ├── fsl_dcp.c │ │ ├── fsl_dcp.h │ │ ├── fsl_dmamux.c │ │ ├── fsl_dmamux.h │ │ ├── fsl_edma.c │ │ ├── fsl_edma.h │ │ ├── fsl_elcdif.c │ │ ├── fsl_elcdif.h │ │ ├── fsl_enc.c │ │ ├── fsl_enc.h │ │ ├── fsl_enet.c │ │ ├── fsl_enet.h │ │ ├── fsl_ewm.c │ │ ├── fsl_ewm.h │ │ ├── fsl_flexcan.c │ │ ├── fsl_flexcan.h │ │ ├── fsl_flexcan_edma.c │ │ ├── fsl_flexcan_edma.h │ │ ├── fsl_flexio.c │ │ ├── fsl_flexio.h │ │ ├── fsl_flexio_camera.c │ │ ├── fsl_flexio_camera.h │ │ ├── fsl_flexio_camera_edma.c │ │ ├── fsl_flexio_camera_edma.h │ │ ├── fsl_flexio_i2c_master.c │ │ ├── fsl_flexio_i2c_master.h │ │ ├── fsl_flexio_i2s.c │ │ ├── fsl_flexio_i2s.h │ │ ├── fsl_flexio_i2s_edma.c │ │ ├── fsl_flexio_i2s_edma.h │ │ ├── fsl_flexio_mculcd.c │ │ ├── fsl_flexio_mculcd.h │ │ ├── fsl_flexio_mculcd_edma.c │ │ ├── fsl_flexio_mculcd_edma.h │ │ ├── fsl_flexio_spi.c │ │ ├── fsl_flexio_spi.h │ │ ├── fsl_flexio_spi_edma.c │ │ ├── fsl_flexio_spi_edma.h │ │ ├── fsl_flexio_uart.c │ │ ├── fsl_flexio_uart.h │ │ ├── fsl_flexio_uart_edma.c │ │ ├── fsl_flexio_uart_edma.h │ │ ├── fsl_flexram.c │ │ ├── fsl_flexram.h │ │ ├── fsl_flexspi.c │ │ ├── fsl_flexspi.h │ │ ├── fsl_gpc.c │ │ ├── fsl_gpc.h │ │ ├── fsl_gpio.c │ │ ├── fsl_gpio.h │ │ ├── fsl_gpt.c │ │ ├── fsl_gpt.h │ │ ├── fsl_iomuxc.h │ │ ├── fsl_kpp.c │ │ ├── fsl_kpp.h │ │ ├── fsl_lpi2c.c │ │ ├── fsl_lpi2c.h │ │ ├── fsl_lpi2c_edma.c │ │ ├── fsl_lpi2c_edma.h │ │ ├── fsl_lpspi.c │ │ ├── fsl_lpspi.h │ │ ├── fsl_lpspi_edma.c │ │ ├── fsl_lpspi_edma.h │ │ ├── fsl_lpuart.c │ │ ├── fsl_lpuart.h │ │ ├── fsl_lpuart_edma.c │ │ ├── fsl_lpuart_edma.h │ │ ├── fsl_ocotp.c │ │ ├── fsl_ocotp.h │ │ ├── fsl_pit.c │ │ ├── fsl_pit.h │ │ ├── fsl_pmu.c │ │ ├── fsl_pmu.h │ │ ├── fsl_pwm.c │ │ ├── fsl_pwm.h │ │ ├── fsl_pxp.c │ │ ├── fsl_pxp.h │ │ ├── fsl_qtmr.c │ │ ├── fsl_qtmr.h │ │ ├── fsl_rtwdog.c │ │ ├── fsl_rtwdog.h │ │ ├── fsl_sai.c │ │ ├── fsl_sai.h │ │ ├── fsl_sai_edma.c │ │ ├── fsl_sai_edma.h │ │ ├── fsl_semc.c │ │ ├── fsl_semc.h │ │ ├── fsl_snvs_hp.c │ │ ├── fsl_snvs_hp.h │ │ ├── fsl_snvs_lp.c │ │ ├── fsl_snvs_lp.h │ │ ├── fsl_spdif.c │ │ ├── fsl_spdif.h │ │ ├── fsl_spdif_edma.c │ │ ├── fsl_spdif_edma.h │ │ ├── fsl_src.c │ │ ├── fsl_src.h │ │ ├── fsl_tempmon.c │ │ ├── fsl_tempmon.h │ │ ├── fsl_trng.c │ │ ├── fsl_trng.h │ │ ├── fsl_tsc.c │ │ ├── fsl_tsc.h │ │ ├── fsl_usdhc.c │ │ ├── fsl_usdhc.h │ │ ├── fsl_wdog.c │ │ ├── fsl_wdog.h │ │ ├── fsl_xbara.c │ │ ├── fsl_xbara.h │ │ ├── fsl_xbarb.c │ │ └── fsl_xbarb.h │ │ ├── fsl_device_registers.h │ │ ├── gcc │ │ ├── MIMXRT1062xxxxx_flexspi_nor.ld │ │ ├── MIMXRT1062xxxxx_flexspi_nor_sdram.ld │ │ ├── MIMXRT1062xxxxx_ram.ld │ │ ├── MIMXRT1062xxxxx_sdram.ld │ │ ├── MIMXRT1062xxxxx_sdram_txt.ld │ │ └── startup_MIMXRT1062.S │ │ ├── project_template │ │ ├── board.c │ │ ├── board.h │ │ ├── clock_config.c │ │ ├── clock_config.h │ │ ├── peripherals.c │ │ ├── peripherals.h │ │ ├── pin_mux.c │ │ └── pin_mux.h │ │ ├── system_MIMXRT1062.c │ │ ├── system_MIMXRT1062.h │ │ ├── template │ │ └── RTE_Device.h │ │ ├── utilities │ │ ├── debug_console │ │ │ ├── fsl_debug_console.c │ │ │ ├── fsl_debug_console.h │ │ │ └── fsl_debug_console_conf.h │ │ ├── fsl_assert.c │ │ ├── fsl_notifier.c │ │ ├── fsl_notifier.h │ │ ├── fsl_sbrk.c │ │ ├── fsl_shell.c │ │ ├── fsl_shell.h │ │ └── str │ │ │ ├── fsl_str.c │ │ │ └── fsl_str.h │ │ └── xip │ │ ├── fsl_flexspi_nor_boot.c │ │ └── fsl_flexspi_nor_boot.h │ ├── docs │ ├── Getting Started with MCUXpresso SDK for i.MX RT1050 Derivatives.pdf │ ├── MCUXpresso SDK Release Notes_MIMXRT105x.pdf │ └── images │ │ ├── EVKB-IMXRT1050.gif │ │ └── device.jpg │ ├── middleware │ ├── eiq │ │ ├── cmsis-nn │ │ │ ├── Examples │ │ │ │ ├── cifar10 │ │ │ │ │ ├── inputs.h │ │ │ │ │ ├── main.c │ │ │ │ │ ├── parameter.h │ │ │ │ │ ├── ship.bmp │ │ │ │ │ ├── timer.c │ │ │ │ │ ├── timer.h │ │ │ │ │ └── weights.h │ │ │ │ └── kws │ │ │ │ │ ├── KWS │ │ │ │ │ ├── kws.cpp │ │ │ │ │ ├── kws.h │ │ │ │ │ ├── kws_dnn.cpp │ │ │ │ │ ├── kws_dnn.h │ │ │ │ │ ├── kws_ds_cnn.cpp │ │ │ │ │ └── kws_ds_cnn.h │ │ │ │ │ ├── KWS_NN │ │ │ │ │ ├── dnn.cpp │ │ │ │ │ ├── dnn.h │ │ │ │ │ ├── dnn_weights.h │ │ │ │ │ ├── ds_cnn.cpp │ │ │ │ │ ├── ds_cnn.h │ │ │ │ │ ├── ds_cnn_weights.h │ │ │ │ │ ├── nn.cpp │ │ │ │ │ └── nn.h │ │ │ │ │ ├── MFCC │ │ │ │ │ ├── mfcc.cpp │ │ │ │ │ └── mfcc.h │ │ │ │ │ ├── local_NN │ │ │ │ │ ├── arm_avepool_q7_HWC_nonsquare.c │ │ │ │ │ └── local_NN.h │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── timer.c │ │ │ │ │ ├── timer.h │ │ │ │ │ ├── wav_data.h │ │ │ │ │ └── yes.wav │ │ │ ├── Include │ │ │ │ ├── arm_nn_tables.h │ │ │ │ ├── arm_nnfunctions.h │ │ │ │ └── arm_nnsupportfunctions.h │ │ │ ├── LICENSE.txt │ │ │ ├── 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 │ │ │ └── readme.txt │ │ └── tensorflow-lite │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── examples │ │ │ ├── cifar10 │ │ │ │ ├── cifar10.cpp │ │ │ │ ├── cifar10_model.h │ │ │ │ ├── cifar10_model.tflite │ │ │ │ ├── get_top_n.h │ │ │ │ ├── get_top_n_impl.h │ │ │ │ ├── ship.bmp │ │ │ │ ├── ship_image.h │ │ │ │ ├── timer.c │ │ │ │ └── timer.h │ │ │ ├── kws │ │ │ │ ├── get_top_n.h │ │ │ │ ├── get_top_n_impl.h │ │ │ │ ├── kws.cpp │ │ │ │ ├── timer.c │ │ │ │ ├── timer.h │ │ │ │ ├── tiny_conv_model_data.cpp │ │ │ │ ├── tiny_conv_model_data.h │ │ │ │ ├── yes.wav │ │ │ │ ├── yes_features_data.cpp │ │ │ │ └── yes_features_data.h │ │ │ └── label_image │ │ │ │ ├── bitmap_helpers.cpp │ │ │ │ ├── bitmap_helpers.h │ │ │ │ ├── bitmap_helpers_impl.h │ │ │ │ ├── get_top_n.h │ │ │ │ ├── get_top_n_impl.h │ │ │ │ ├── label_image.cpp │ │ │ │ ├── label_image.h │ │ │ │ ├── labels.h │ │ │ │ ├── labels.txt │ │ │ │ ├── mobilenet_v1_0.25_128_quant.tflite │ │ │ │ ├── mobilenet_v1_0.25_128_quant_model.h │ │ │ │ ├── stopwatch.bmp │ │ │ │ ├── stopwatch_image.h │ │ │ │ ├── timer.c │ │ │ │ └── timer.h │ │ │ ├── lib │ │ │ └── cm7 │ │ │ │ └── gcc │ │ │ │ └── libtensorflow-lite.a │ │ │ ├── readme.txt │ │ │ ├── tensorflow │ │ │ ├── contrib │ │ │ │ └── lite │ │ │ │ │ ├── _string.h │ │ │ │ │ ├── allocation.cc │ │ │ │ │ ├── allocation.h │ │ │ │ │ ├── arena_planner.cc │ │ │ │ │ ├── arena_planner.h │ │ │ │ │ ├── builtin_op_data.h │ │ │ │ │ ├── builtin_ops.h │ │ │ │ │ ├── context.c │ │ │ │ │ ├── context.h │ │ │ │ │ ├── context_util.h │ │ │ │ │ ├── error_reporter.cc │ │ │ │ │ ├── error_reporter.h │ │ │ │ │ ├── graph_info.cc │ │ │ │ │ ├── graph_info.h │ │ │ │ │ ├── interpreter.cc │ │ │ │ │ ├── interpreter.h │ │ │ │ │ ├── kernels │ │ │ │ │ ├── activation_functor.h │ │ │ │ │ ├── activations.cc │ │ │ │ │ ├── add.cc │ │ │ │ │ ├── arg_min_max.cc │ │ │ │ │ ├── audio_spectrogram.cc │ │ │ │ │ ├── basic_rnn.cc │ │ │ │ │ ├── batch_to_space_nd.cc │ │ │ │ │ ├── bidirectional_sequence_lstm.cc │ │ │ │ │ ├── bidirectional_sequence_rnn.cc │ │ │ │ │ ├── cast.cc │ │ │ │ │ ├── comparisons.cc │ │ │ │ │ ├── concatenation.cc │ │ │ │ │ ├── conv.cc │ │ │ │ │ ├── depthwise_conv.cc │ │ │ │ │ ├── dequantize.cc │ │ │ │ │ ├── detection_postprocess.cc │ │ │ │ │ ├── div.cc │ │ │ │ │ ├── eigen_support.cc │ │ │ │ │ ├── eigen_support.h │ │ │ │ │ ├── elementwise.cc │ │ │ │ │ ├── embedding_lookup.cc │ │ │ │ │ ├── embedding_lookup_sparse.cc │ │ │ │ │ ├── exp.cc │ │ │ │ │ ├── expand_dims.cc │ │ │ │ │ ├── fake_quant.cc │ │ │ │ │ ├── floor.cc │ │ │ │ │ ├── floor_div.cc │ │ │ │ │ ├── fully_connected.cc │ │ │ │ │ ├── gather.cc │ │ │ │ │ ├── gemm_support.cc │ │ │ │ │ ├── gemm_support.h │ │ │ │ │ ├── hashtable_lookup.cc │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── compatibility.h │ │ │ │ │ │ ├── kernel_utils.cc │ │ │ │ │ │ ├── kernel_utils.h │ │ │ │ │ │ ├── mfcc.h │ │ │ │ │ │ ├── mfcc_dct.cc │ │ │ │ │ │ ├── mfcc_dct.h │ │ │ │ │ │ ├── mfcc_internal.cc │ │ │ │ │ │ ├── mfcc_mel_filterbank.cc │ │ │ │ │ │ ├── mfcc_mel_filterbank.h │ │ │ │ │ │ ├── optimized │ │ │ │ │ │ │ ├── cblas_conv.h │ │ │ │ │ │ │ ├── cblas_reference.h │ │ │ │ │ │ │ ├── cpu_check.h │ │ │ │ │ │ │ ├── depthwiseconv_float.h │ │ │ │ │ │ │ ├── depthwiseconv_uint8.h │ │ │ │ │ │ │ ├── depthwiseconv_uint8_3x3_filter.h │ │ │ │ │ │ │ ├── eigen_spatial_convolutions.h │ │ │ │ │ │ │ ├── eigen_tensor_reduced_instantiations_google.h │ │ │ │ │ │ │ ├── eigen_tensor_reduced_instantiations_oss.h │ │ │ │ │ │ │ ├── legacy_optimized_ops.h │ │ │ │ │ │ │ ├── multithreaded_conv.h │ │ │ │ │ │ │ ├── neon_tensor_utils.cc │ │ │ │ │ │ │ ├── neon_tensor_utils.h │ │ │ │ │ │ │ ├── optimized_ops.h │ │ │ │ │ │ │ └── tensor_utils_impl.h │ │ │ │ │ │ ├── quantization_util.cc │ │ │ │ │ │ ├── quantization_util.h │ │ │ │ │ │ ├── reference │ │ │ │ │ │ │ ├── depthwiseconv_float.h │ │ │ │ │ │ │ ├── depthwiseconv_uint8.h │ │ │ │ │ │ │ ├── legacy_reference_ops.h │ │ │ │ │ │ │ ├── portable_tensor_utils.cc │ │ │ │ │ │ │ ├── portable_tensor_utils.h │ │ │ │ │ │ │ └── reference_ops.h │ │ │ │ │ │ ├── round.h │ │ │ │ │ │ ├── spectrogram.cc │ │ │ │ │ │ ├── spectrogram.h │ │ │ │ │ │ ├── strided_slice_logic.h │ │ │ │ │ │ ├── tensor.h │ │ │ │ │ │ ├── tensor_utils.cc │ │ │ │ │ │ ├── tensor_utils.h │ │ │ │ │ │ ├── test_util.h │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── kernel_util.cc │ │ │ │ │ ├── kernel_util.h │ │ │ │ │ ├── l2norm.cc │ │ │ │ │ ├── local_response_norm.cc │ │ │ │ │ ├── logical.cc │ │ │ │ │ ├── lsh_projection.cc │ │ │ │ │ ├── lstm.cc │ │ │ │ │ ├── maximum_minimum.cc │ │ │ │ │ ├── mfcc.cc │ │ │ │ │ ├── mul.cc │ │ │ │ │ ├── neg.cc │ │ │ │ │ ├── one_hot.cc │ │ │ │ │ ├── op_macros.h │ │ │ │ │ ├── pack.cc │ │ │ │ │ ├── pad.cc │ │ │ │ │ ├── padding.h │ │ │ │ │ ├── pooling.cc │ │ │ │ │ ├── pow.cc │ │ │ │ │ ├── reduce.cc │ │ │ │ │ ├── register.cc │ │ │ │ │ ├── register.h │ │ │ │ │ ├── reshape.cc │ │ │ │ │ ├── resize_bilinear.cc │ │ │ │ │ ├── select.cc │ │ │ │ │ ├── shape.cc │ │ │ │ │ ├── skip_gram.cc │ │ │ │ │ ├── slice.cc │ │ │ │ │ ├── space_to_batch_nd.cc │ │ │ │ │ ├── space_to_depth.cc │ │ │ │ │ ├── sparse_to_dense.cc │ │ │ │ │ ├── split.cc │ │ │ │ │ ├── squeeze.cc │ │ │ │ │ ├── strided_slice.cc │ │ │ │ │ ├── sub.cc │ │ │ │ │ ├── svdf.cc │ │ │ │ │ ├── test_util.h │ │ │ │ │ ├── tile.cc │ │ │ │ │ ├── topk_v2.cc │ │ │ │ │ ├── transpose.cc │ │ │ │ │ ├── transpose_conv.cc │ │ │ │ │ ├── unidirectional_sequence_lstm.cc │ │ │ │ │ ├── unidirectional_sequence_rnn.cc │ │ │ │ │ └── unpack.cc │ │ │ │ │ ├── memory_planner.h │ │ │ │ │ ├── mmap_allocation_disabled.cc │ │ │ │ │ ├── model.cc │ │ │ │ │ ├── model.h │ │ │ │ │ ├── nnapi │ │ │ │ │ └── NeuralNetworksShim.h │ │ │ │ │ ├── nnapi_delegate.h │ │ │ │ │ ├── nnapi_delegate_disabled.cc │ │ │ │ │ ├── op_resolver.cc │ │ │ │ │ ├── op_resolver.h │ │ │ │ │ ├── optional_debug_tools.cc │ │ │ │ │ ├── optional_debug_tools.h │ │ │ │ │ ├── profiling │ │ │ │ │ ├── _time.h │ │ │ │ │ ├── profile_buffer.h │ │ │ │ │ ├── profile_summarizer.cc │ │ │ │ │ ├── profile_summarizer.h │ │ │ │ │ ├── profiler.h │ │ │ │ │ └── time.cc │ │ │ │ │ ├── schema │ │ │ │ │ └── schema_generated.h │ │ │ │ │ ├── simple_memory_arena.cc │ │ │ │ │ ├── simple_memory_arena.h │ │ │ │ │ ├── string_util.cc │ │ │ │ │ ├── string_util.h │ │ │ │ │ ├── util.cc │ │ │ │ │ ├── util.h │ │ │ │ │ └── version.h │ │ │ └── core │ │ │ │ └── util │ │ │ │ ├── stat_summarizer_options.h │ │ │ │ └── stats_calculator.h │ │ │ └── third_party │ │ │ ├── eigen │ │ │ ├── COPYING.BSD │ │ │ ├── COPYING.LGPL │ │ │ ├── COPYING.MINPACK │ │ │ ├── COPYING.MPL2 │ │ │ ├── COPYING.README │ │ │ ├── Eigen │ │ │ │ ├── Cholesky │ │ │ │ ├── CholmodSupport │ │ │ │ ├── Core │ │ │ │ ├── Dense │ │ │ │ ├── Eigen │ │ │ │ ├── Eigenvalues │ │ │ │ ├── Geometry │ │ │ │ ├── Householder │ │ │ │ ├── IterativeLinearSolvers │ │ │ │ ├── Jacobi │ │ │ │ ├── KLUSupport │ │ │ │ ├── LU │ │ │ │ ├── MetisSupport │ │ │ │ ├── OrderingMethods │ │ │ │ ├── PaStiXSupport │ │ │ │ ├── PardisoSupport │ │ │ │ ├── QR │ │ │ │ ├── QtAlignedMalloc │ │ │ │ ├── SPQRSupport │ │ │ │ ├── SVD │ │ │ │ ├── Sparse │ │ │ │ ├── SparseCholesky │ │ │ │ ├── SparseCore │ │ │ │ ├── SparseLU │ │ │ │ ├── SparseQR │ │ │ │ ├── StdDeque │ │ │ │ ├── StdList │ │ │ │ ├── StdVector │ │ │ │ ├── SuperLUSupport │ │ │ │ ├── UmfPackSupport │ │ │ │ └── src │ │ │ │ │ ├── Cholesky │ │ │ │ │ ├── LDLT.h │ │ │ │ │ ├── LLT.h │ │ │ │ │ └── LLT_LAPACKE.h │ │ │ │ │ ├── CholmodSupport │ │ │ │ │ └── CholmodSupport.h │ │ │ │ │ ├── Core │ │ │ │ │ ├── ArithmeticSequence.h │ │ │ │ │ ├── Array.h │ │ │ │ │ ├── ArrayBase.h │ │ │ │ │ ├── ArrayWrapper.h │ │ │ │ │ ├── Assign.h │ │ │ │ │ ├── AssignEvaluator.h │ │ │ │ │ ├── Assign_MKL.h │ │ │ │ │ ├── BandMatrix.h │ │ │ │ │ ├── Block.h │ │ │ │ │ ├── BooleanRedux.h │ │ │ │ │ ├── CommaInitializer.h │ │ │ │ │ ├── ConditionEstimator.h │ │ │ │ │ ├── CoreEvaluators.h │ │ │ │ │ ├── CoreIterators.h │ │ │ │ │ ├── CwiseBinaryOp.h │ │ │ │ │ ├── CwiseNullaryOp.h │ │ │ │ │ ├── CwiseTernaryOp.h │ │ │ │ │ ├── CwiseUnaryOp.h │ │ │ │ │ ├── CwiseUnaryView.h │ │ │ │ │ ├── DenseBase.h │ │ │ │ │ ├── DenseCoeffsBase.h │ │ │ │ │ ├── DenseStorage.h │ │ │ │ │ ├── Diagonal.h │ │ │ │ │ ├── DiagonalMatrix.h │ │ │ │ │ ├── DiagonalProduct.h │ │ │ │ │ ├── Dot.h │ │ │ │ │ ├── EigenBase.h │ │ │ │ │ ├── ForceAlignedAccess.h │ │ │ │ │ ├── Fuzzy.h │ │ │ │ │ ├── GeneralProduct.h │ │ │ │ │ ├── GenericPacketMath.h │ │ │ │ │ ├── GlobalFunctions.h │ │ │ │ │ ├── IO.h │ │ │ │ │ ├── IndexedView.h │ │ │ │ │ ├── Inverse.h │ │ │ │ │ ├── Map.h │ │ │ │ │ ├── MapBase.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── MathFunctionsImpl.h │ │ │ │ │ ├── Matrix.h │ │ │ │ │ ├── MatrixBase.h │ │ │ │ │ ├── NestByValue.h │ │ │ │ │ ├── NoAlias.h │ │ │ │ │ ├── NumTraits.h │ │ │ │ │ ├── PermutationMatrix.h │ │ │ │ │ ├── PlainObjectBase.h │ │ │ │ │ ├── Product.h │ │ │ │ │ ├── ProductEvaluators.h │ │ │ │ │ ├── Random.h │ │ │ │ │ ├── Redux.h │ │ │ │ │ ├── Ref.h │ │ │ │ │ ├── Replicate.h │ │ │ │ │ ├── ReturnByValue.h │ │ │ │ │ ├── Reverse.h │ │ │ │ │ ├── Select.h │ │ │ │ │ ├── SelfAdjointView.h │ │ │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ │ │ ├── Solve.h │ │ │ │ │ ├── SolveTriangular.h │ │ │ │ │ ├── SolverBase.h │ │ │ │ │ ├── StableNorm.h │ │ │ │ │ ├── Stride.h │ │ │ │ │ ├── Swap.h │ │ │ │ │ ├── Transpose.h │ │ │ │ │ ├── Transpositions.h │ │ │ │ │ ├── TriangularMatrix.h │ │ │ │ │ ├── VectorBlock.h │ │ │ │ │ ├── VectorwiseOp.h │ │ │ │ │ ├── Visitor.h │ │ │ │ │ ├── arch │ │ │ │ │ │ ├── AVX │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ ├── AVX512 │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ ├── AltiVec │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ ├── CUDA │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── Half.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ ├── PacketMathHalf.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ ├── Default │ │ │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ │ │ └── Settings.h │ │ │ │ │ │ ├── NEON │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ ├── SSE │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ └── ZVector │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── functors │ │ │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ │ │ ├── BinaryFunctors.h │ │ │ │ │ │ ├── NullaryFunctors.h │ │ │ │ │ │ ├── StlFunctors.h │ │ │ │ │ │ ├── TernaryFunctors.h │ │ │ │ │ │ └── UnaryFunctors.h │ │ │ │ │ ├── products │ │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ │ │ ├── Parallelizer.h │ │ │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ │ │ └── TriangularSolverVector.h │ │ │ │ │ └── util │ │ │ │ │ │ ├── BlasUtil.h │ │ │ │ │ │ ├── Constants.h │ │ │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ │ │ ├── IndexedViewHelper.h │ │ │ │ │ │ ├── IntegralConstant.h │ │ │ │ │ │ ├── MKL_support.h │ │ │ │ │ │ ├── Macros.h │ │ │ │ │ │ ├── Memory.h │ │ │ │ │ │ ├── Meta.h │ │ │ │ │ │ ├── NonMPL2.h │ │ │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ │ │ ├── StaticAssert.h │ │ │ │ │ │ ├── SymbolicIndex.h │ │ │ │ │ │ └── XprHelper.h │ │ │ │ │ ├── Eigenvalues │ │ │ │ │ ├── ComplexEigenSolver.h │ │ │ │ │ ├── ComplexSchur.h │ │ │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ │ │ ├── EigenSolver.h │ │ │ │ │ ├── GeneralizedEigenSolver.h │ │ │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ │ │ ├── HessenbergDecomposition.h │ │ │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ │ │ ├── RealQZ.h │ │ │ │ │ ├── RealSchur.h │ │ │ │ │ ├── RealSchur_LAPACKE.h │ │ │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ │ │ └── Tridiagonalization.h │ │ │ │ │ ├── Geometry │ │ │ │ │ ├── AlignedBox.h │ │ │ │ │ ├── AngleAxis.h │ │ │ │ │ ├── EulerAngles.h │ │ │ │ │ ├── Homogeneous.h │ │ │ │ │ ├── Hyperplane.h │ │ │ │ │ ├── OrthoMethods.h │ │ │ │ │ ├── ParametrizedLine.h │ │ │ │ │ ├── Quaternion.h │ │ │ │ │ ├── Rotation2D.h │ │ │ │ │ ├── RotationBase.h │ │ │ │ │ ├── Scaling.h │ │ │ │ │ ├── Transform.h │ │ │ │ │ ├── Translation.h │ │ │ │ │ ├── Umeyama.h │ │ │ │ │ └── arch │ │ │ │ │ │ └── Geometry_SSE.h │ │ │ │ │ ├── Householder │ │ │ │ │ ├── BlockHouseholder.h │ │ │ │ │ ├── Householder.h │ │ │ │ │ └── HouseholderSequence.h │ │ │ │ │ ├── IterativeLinearSolvers │ │ │ │ │ ├── BasicPreconditioners.h │ │ │ │ │ ├── BiCGSTAB.h │ │ │ │ │ ├── ConjugateGradient.h │ │ │ │ │ ├── IncompleteCholesky.h │ │ │ │ │ ├── IterativeSolverBase.h │ │ │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ │ │ └── SolveWithGuess.h │ │ │ │ │ ├── Jacobi │ │ │ │ │ └── Jacobi.h │ │ │ │ │ ├── KLUSupport │ │ │ │ │ └── KLUSupport.h │ │ │ │ │ ├── LU │ │ │ │ │ ├── Determinant.h │ │ │ │ │ ├── FullPivLU.h │ │ │ │ │ ├── InverseImpl.h │ │ │ │ │ ├── PartialPivLU.h │ │ │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ │ │ └── arch │ │ │ │ │ │ └── Inverse_SSE.h │ │ │ │ │ ├── MetisSupport │ │ │ │ │ └── MetisSupport.h │ │ │ │ │ ├── OrderingMethods │ │ │ │ │ ├── Eigen_Colamd.h │ │ │ │ │ └── Ordering.h │ │ │ │ │ ├── PaStiXSupport │ │ │ │ │ └── PaStiXSupport.h │ │ │ │ │ ├── PardisoSupport │ │ │ │ │ └── PardisoSupport.h │ │ │ │ │ ├── QR │ │ │ │ │ ├── ColPivHouseholderQR.h │ │ │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ │ │ ├── FullPivHouseholderQR.h │ │ │ │ │ ├── HouseholderQR.h │ │ │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ │ │ ├── SPQRSupport │ │ │ │ │ └── SuiteSparseQRSupport.h │ │ │ │ │ ├── SVD │ │ │ │ │ ├── BDCSVD.h │ │ │ │ │ ├── JacobiSVD.h │ │ │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ │ │ ├── SVDBase.h │ │ │ │ │ └── UpperBidiagonalization.h │ │ │ │ │ ├── SparseCholesky │ │ │ │ │ └── SimplicialCholesky.h │ │ │ │ │ ├── SparseCore │ │ │ │ │ ├── AmbiVector.h │ │ │ │ │ ├── CompressedStorage.h │ │ │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ │ │ ├── MappedSparseMatrix.h │ │ │ │ │ ├── SparseAssign.h │ │ │ │ │ ├── SparseBlock.h │ │ │ │ │ ├── SparseColEtree.h │ │ │ │ │ ├── SparseCompressedBase.h │ │ │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ │ │ ├── SparseDenseProduct.h │ │ │ │ │ ├── SparseDiagonalProduct.h │ │ │ │ │ ├── SparseDot.h │ │ │ │ │ ├── SparseFuzzy.h │ │ │ │ │ ├── SparseMap.h │ │ │ │ │ ├── SparseMatrix.h │ │ │ │ │ ├── SparseMatrixBase.h │ │ │ │ │ ├── SparsePermutation.h │ │ │ │ │ ├── SparseProduct.h │ │ │ │ │ ├── SparseRedux.h │ │ │ │ │ ├── SparseRef.h │ │ │ │ │ ├── SparseSelfAdjointView.h │ │ │ │ │ ├── SparseSolverBase.h │ │ │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ │ │ ├── SparseTranspose.h │ │ │ │ │ ├── SparseTriangularView.h │ │ │ │ │ ├── SparseUtil.h │ │ │ │ │ ├── SparseVector.h │ │ │ │ │ ├── SparseView.h │ │ │ │ │ └── TriangularSolver.h │ │ │ │ │ ├── SparseLU │ │ │ │ │ ├── SparseLU.h │ │ │ │ │ ├── SparseLUImpl.h │ │ │ │ │ ├── SparseLU_Memory.h │ │ │ │ │ ├── SparseLU_Structs.h │ │ │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ │ │ ├── SparseLU_Utils.h │ │ │ │ │ ├── SparseLU_column_bmod.h │ │ │ │ │ ├── SparseLU_column_dfs.h │ │ │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ │ │ ├── SparseLU_panel_bmod.h │ │ │ │ │ ├── SparseLU_panel_dfs.h │ │ │ │ │ ├── SparseLU_pivotL.h │ │ │ │ │ ├── SparseLU_pruneL.h │ │ │ │ │ └── SparseLU_relax_snode.h │ │ │ │ │ ├── SparseQR │ │ │ │ │ └── SparseQR.h │ │ │ │ │ ├── StlSupport │ │ │ │ │ ├── StdDeque.h │ │ │ │ │ ├── StdList.h │ │ │ │ │ ├── StdVector.h │ │ │ │ │ └── details.h │ │ │ │ │ ├── SuperLUSupport │ │ │ │ │ └── SuperLUSupport.h │ │ │ │ │ ├── UmfPackSupport │ │ │ │ │ └── UmfPackSupport.h │ │ │ │ │ ├── misc │ │ │ │ │ ├── Image.h │ │ │ │ │ ├── Kernel.h │ │ │ │ │ ├── RealSvd2x2.h │ │ │ │ │ ├── blas.h │ │ │ │ │ ├── lapack.h │ │ │ │ │ ├── lapacke.h │ │ │ │ │ └── lapacke_mangling.h │ │ │ │ │ └── plugins │ │ │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ │ │ ├── BlockMethods.h │ │ │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ │ │ ├── IndexedViewMethods.h │ │ │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ │ │ └── MatrixCwiseUnaryOps.h │ │ │ ├── Empty.h │ │ │ ├── README.md │ │ │ ├── blas │ │ │ │ ├── BandTriangularSolver.h │ │ │ │ ├── GeneralRank1Update.h │ │ │ │ ├── PackedSelfadjointProduct.h │ │ │ │ ├── PackedTriangularMatrixVector.h │ │ │ │ ├── PackedTriangularSolverVector.h │ │ │ │ ├── Rank2Update.h │ │ │ │ ├── common.h │ │ │ │ ├── complex_double.cpp │ │ │ │ ├── complex_single.cpp │ │ │ │ ├── double.cpp │ │ │ │ ├── f2c │ │ │ │ │ ├── chbmv.c │ │ │ │ │ ├── chpmv.c │ │ │ │ │ ├── complexdots.c │ │ │ │ │ ├── ctbmv.c │ │ │ │ │ ├── d_cnjg.c │ │ │ │ │ ├── datatypes.h │ │ │ │ │ ├── drotm.c │ │ │ │ │ ├── drotmg.c │ │ │ │ │ ├── dsbmv.c │ │ │ │ │ ├── dspmv.c │ │ │ │ │ ├── dtbmv.c │ │ │ │ │ ├── lsame.c │ │ │ │ │ ├── r_cnjg.c │ │ │ │ │ ├── srotm.c │ │ │ │ │ ├── srotmg.c │ │ │ │ │ ├── ssbmv.c │ │ │ │ │ ├── sspmv.c │ │ │ │ │ ├── stbmv.c │ │ │ │ │ ├── zhbmv.c │ │ │ │ │ ├── zhpmv.c │ │ │ │ │ └── ztbmv.c │ │ │ │ ├── level1_cplx_impl.h │ │ │ │ ├── level1_impl.h │ │ │ │ ├── level1_real_impl.h │ │ │ │ ├── level2_cplx_impl.h │ │ │ │ ├── level2_impl.h │ │ │ │ ├── level2_real_impl.h │ │ │ │ ├── level3_impl.h │ │ │ │ ├── single.cpp │ │ │ │ └── xerbla.cpp │ │ │ └── unsupported │ │ │ │ └── Eigen │ │ │ │ ├── AdolcForward │ │ │ │ ├── AlignedVector3 │ │ │ │ ├── ArpackSupport │ │ │ │ ├── AutoDiff │ │ │ │ ├── BVH │ │ │ │ ├── CXX11 │ │ │ │ ├── Tensor │ │ │ │ ├── TensorSymmetry │ │ │ │ ├── ThreadPool │ │ │ │ └── src │ │ │ │ │ ├── Tensor │ │ │ │ │ ├── Tensor.h │ │ │ │ │ ├── TensorArgMax.h │ │ │ │ │ ├── TensorArgMaxSycl.h │ │ │ │ │ ├── TensorAssign.h │ │ │ │ │ ├── TensorBase.h │ │ │ │ │ ├── TensorBroadcasting.h │ │ │ │ │ ├── TensorChipping.h │ │ │ │ │ ├── TensorConcatenation.h │ │ │ │ │ ├── TensorContraction.h │ │ │ │ │ ├── TensorContractionBlocking.h │ │ │ │ │ ├── TensorContractionCuda.h │ │ │ │ │ ├── TensorContractionMapper.h │ │ │ │ │ ├── TensorContractionSycl.h │ │ │ │ │ ├── TensorContractionThreadPool.h │ │ │ │ │ ├── TensorConversion.h │ │ │ │ │ ├── TensorConvolution.h │ │ │ │ │ ├── TensorConvolutionSycl.h │ │ │ │ │ ├── TensorCostModel.h │ │ │ │ │ ├── TensorCustomOp.h │ │ │ │ │ ├── TensorDevice.h │ │ │ │ │ ├── TensorDeviceCuda.h │ │ │ │ │ ├── TensorDeviceDefault.h │ │ │ │ │ ├── TensorDeviceSycl.h │ │ │ │ │ ├── TensorDeviceThreadPool.h │ │ │ │ │ ├── TensorDimensionList.h │ │ │ │ │ ├── TensorDimensions.h │ │ │ │ │ ├── TensorEvalTo.h │ │ │ │ │ ├── TensorEvaluator.h │ │ │ │ │ ├── TensorExecutor.h │ │ │ │ │ ├── TensorExpr.h │ │ │ │ │ ├── TensorFFT.h │ │ │ │ │ ├── TensorFixedSize.h │ │ │ │ │ ├── TensorForcedEval.h │ │ │ │ │ ├── TensorForwardDeclarations.h │ │ │ │ │ ├── TensorFunctors.h │ │ │ │ │ ├── TensorGenerator.h │ │ │ │ │ ├── TensorGlobalFunctions.h │ │ │ │ │ ├── TensorIO.h │ │ │ │ │ ├── TensorImagePatch.h │ │ │ │ │ ├── TensorIndexList.h │ │ │ │ │ ├── TensorInflation.h │ │ │ │ │ ├── TensorInitializer.h │ │ │ │ │ ├── TensorIntDiv.h │ │ │ │ │ ├── TensorLayoutSwap.h │ │ │ │ │ ├── TensorMacros.h │ │ │ │ │ ├── TensorMap.h │ │ │ │ │ ├── TensorMeta.h │ │ │ │ │ ├── TensorMorphing.h │ │ │ │ │ ├── TensorPadding.h │ │ │ │ │ ├── TensorPatch.h │ │ │ │ │ ├── TensorRandom.h │ │ │ │ │ ├── TensorReduction.h │ │ │ │ │ ├── TensorReductionCuda.h │ │ │ │ │ ├── TensorReductionSycl.h │ │ │ │ │ ├── TensorRef.h │ │ │ │ │ ├── TensorReverse.h │ │ │ │ │ ├── TensorScan.h │ │ │ │ │ ├── TensorShuffling.h │ │ │ │ │ ├── TensorStorage.h │ │ │ │ │ ├── TensorStriding.h │ │ │ │ │ ├── TensorSycl.h │ │ │ │ │ ├── TensorSyclConvertToDeviceExpression.h │ │ │ │ │ ├── TensorSyclExprConstructor.h │ │ │ │ │ ├── TensorSyclExtractAccessor.h │ │ │ │ │ ├── TensorSyclExtractFunctors.h │ │ │ │ │ ├── TensorSyclFunctors.h │ │ │ │ │ ├── TensorSyclLeafCount.h │ │ │ │ │ ├── TensorSyclPlaceHolderExpr.h │ │ │ │ │ ├── TensorSyclRun.h │ │ │ │ │ ├── TensorSyclTuple.h │ │ │ │ │ ├── TensorTrace.h │ │ │ │ │ ├── TensorTraits.h │ │ │ │ │ ├── TensorUInt128.h │ │ │ │ │ └── TensorVolumePatch.h │ │ │ │ │ ├── TensorSymmetry │ │ │ │ │ ├── DynamicSymmetry.h │ │ │ │ │ ├── StaticSymmetry.h │ │ │ │ │ ├── Symmetry.h │ │ │ │ │ └── util │ │ │ │ │ │ └── TemplateGroupTheory.h │ │ │ │ │ ├── ThreadPool │ │ │ │ │ ├── EventCount.h │ │ │ │ │ ├── NonBlockingThreadPool.h │ │ │ │ │ ├── RunQueue.h │ │ │ │ │ ├── SimpleThreadPool.h │ │ │ │ │ ├── ThreadCancel.h │ │ │ │ │ ├── ThreadEnvironment.h │ │ │ │ │ ├── ThreadLocal.h │ │ │ │ │ ├── ThreadPoolInterface.h │ │ │ │ │ └── ThreadYield.h │ │ │ │ │ └── util │ │ │ │ │ ├── CXX11Meta.h │ │ │ │ │ ├── CXX11Workarounds.h │ │ │ │ │ ├── EmulateArray.h │ │ │ │ │ ├── EmulateCXX11Meta.h │ │ │ │ │ └── MaxSizeVector.h │ │ │ │ ├── EulerAngles │ │ │ │ ├── IterativeSolvers │ │ │ │ ├── KroneckerProduct │ │ │ │ ├── LevenbergMarquardt │ │ │ │ ├── MatrixFunctions │ │ │ │ ├── MoreVectorization │ │ │ │ ├── NonLinearOptimization │ │ │ │ ├── NumericalDiff │ │ │ │ ├── OpenGLSupport │ │ │ │ ├── Polynomials │ │ │ │ ├── Skyline │ │ │ │ ├── SparseExtra │ │ │ │ ├── SpecialFunctions │ │ │ │ ├── Splines │ │ │ │ └── src │ │ │ │ ├── AutoDiff │ │ │ │ ├── AutoDiffJacobian.h │ │ │ │ ├── AutoDiffScalar.h │ │ │ │ └── AutoDiffVector.h │ │ │ │ ├── BVH │ │ │ │ ├── BVAlgorithms.h │ │ │ │ └── KdBVH.h │ │ │ │ ├── EulerAngles │ │ │ │ ├── EulerAngles.h │ │ │ │ └── EulerSystem.h │ │ │ │ ├── FFT │ │ │ │ ├── ei_fftw_impl.h │ │ │ │ └── ei_kissfft_impl.h │ │ │ │ ├── IterativeSolvers │ │ │ │ ├── DGMRES.h │ │ │ │ ├── GMRES.h │ │ │ │ ├── IncompleteLU.h │ │ │ │ ├── MINRES.h │ │ │ │ └── Scaling.h │ │ │ │ ├── KroneckerProduct │ │ │ │ └── KroneckerTensorProduct.h │ │ │ │ ├── LevenbergMarquardt │ │ │ │ ├── LMcovar.h │ │ │ │ ├── LMonestep.h │ │ │ │ ├── LMpar.h │ │ │ │ ├── LMqrsolv.h │ │ │ │ └── LevenbergMarquardt.h │ │ │ │ ├── MatrixFunctions │ │ │ │ ├── MatrixExponential.h │ │ │ │ ├── MatrixFunction.h │ │ │ │ ├── MatrixLogarithm.h │ │ │ │ ├── MatrixPower.h │ │ │ │ ├── MatrixSquareRoot.h │ │ │ │ └── StemFunction.h │ │ │ │ ├── MoreVectorization │ │ │ │ └── MathFunctions.h │ │ │ │ ├── NonLinearOptimization │ │ │ │ ├── HybridNonLinearSolver.h │ │ │ │ ├── LevenbergMarquardt.h │ │ │ │ ├── chkder.h │ │ │ │ ├── covar.h │ │ │ │ ├── dogleg.h │ │ │ │ ├── fdjac1.h │ │ │ │ ├── lmpar.h │ │ │ │ ├── qrsolv.h │ │ │ │ ├── r1mpyq.h │ │ │ │ ├── r1updt.h │ │ │ │ └── rwupdt.h │ │ │ │ ├── NumericalDiff │ │ │ │ └── NumericalDiff.h │ │ │ │ ├── Polynomials │ │ │ │ ├── Companion.h │ │ │ │ ├── PolynomialSolver.h │ │ │ │ └── PolynomialUtils.h │ │ │ │ ├── Skyline │ │ │ │ ├── SkylineInplaceLU.h │ │ │ │ ├── SkylineMatrix.h │ │ │ │ ├── SkylineMatrixBase.h │ │ │ │ ├── SkylineProduct.h │ │ │ │ ├── SkylineStorage.h │ │ │ │ └── SkylineUtil.h │ │ │ │ ├── SparseExtra │ │ │ │ ├── BlockOfDynamicSparseMatrix.h │ │ │ │ ├── BlockSparseMatrix.h │ │ │ │ ├── DynamicSparseMatrix.h │ │ │ │ ├── MarketIO.h │ │ │ │ ├── MatrixMarketIterator.h │ │ │ │ └── RandomSetter.h │ │ │ │ ├── SpecialFunctions │ │ │ │ ├── SpecialFunctionsArrayAPI.h │ │ │ │ ├── SpecialFunctionsFunctors.h │ │ │ │ ├── SpecialFunctionsHalf.h │ │ │ │ ├── SpecialFunctionsImpl.h │ │ │ │ ├── SpecialFunctionsPacketMath.h │ │ │ │ └── arch │ │ │ │ │ └── CUDA │ │ │ │ │ └── CudaSpecialFunctions.h │ │ │ │ └── Splines │ │ │ │ ├── Spline.h │ │ │ │ ├── SplineFitting.h │ │ │ │ └── SplineFwd.h │ │ │ ├── eigen3 │ │ │ ├── Eigen │ │ │ │ ├── Cholesky │ │ │ │ ├── Core │ │ │ │ ├── Eigenvalues │ │ │ │ ├── LU │ │ │ │ ├── QR │ │ │ │ └── SVD │ │ │ ├── LICENSE │ │ │ └── unsupported │ │ │ │ └── Eigen │ │ │ │ ├── CXX11 │ │ │ │ ├── Core │ │ │ │ ├── FixedPoint │ │ │ │ ├── NeuralNetworks │ │ │ │ ├── Tensor │ │ │ │ ├── ThreadPool │ │ │ │ └── src │ │ │ │ │ ├── FixedPoint │ │ │ │ │ ├── FixedPointTypes.h │ │ │ │ │ ├── MatMatProduct.h │ │ │ │ │ ├── MatMatProductAVX2.h │ │ │ │ │ ├── MatMatProductNEON.h │ │ │ │ │ ├── MatVecProduct.h │ │ │ │ │ ├── PacketMathAVX2.h │ │ │ │ │ ├── PacketMathAVX512.h │ │ │ │ │ ├── TypeCastingAVX2.h │ │ │ │ │ └── TypeCastingAVX512.h │ │ │ │ │ └── NeuralNetworks │ │ │ │ │ ├── Activations.h │ │ │ │ │ ├── Attention.h │ │ │ │ │ ├── BackwardCuboidConvolutions.h │ │ │ │ │ ├── BackwardSpatialConvolutions.h │ │ │ │ │ ├── CuboidConvolution.h │ │ │ │ │ ├── Patch3d.h │ │ │ │ │ ├── Pooling.h │ │ │ │ │ ├── SoftMax.h │ │ │ │ │ ├── SpatialConvolutions.h │ │ │ │ │ └── TensorConvolutionByFFT.h │ │ │ │ ├── MatrixFunctions │ │ │ │ └── SpecialFunctions │ │ │ ├── farmhash │ │ │ ├── COPYING │ │ │ ├── farmhash.cc │ │ │ └── farmhash.h │ │ │ ├── fft2d │ │ │ ├── fft.h │ │ │ ├── fftsg.c │ │ │ └── readme.txt │ │ │ ├── flatbuffers │ │ │ ├── LICENSE.txt │ │ │ ├── include │ │ │ │ └── flatbuffers │ │ │ │ │ ├── base.h │ │ │ │ │ ├── code_generators.h │ │ │ │ │ ├── flatbuffers.h │ │ │ │ │ ├── flexbuffers.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── idl.h │ │ │ │ │ ├── minireflect.h │ │ │ │ │ ├── reflection.h │ │ │ │ │ ├── reflection_generated.h │ │ │ │ │ ├── registry.h │ │ │ │ │ ├── stl_emulation.h │ │ │ │ │ └── util.h │ │ │ └── readme.md │ │ │ └── gemmlowp │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── eight_bit_int_gemm │ │ │ ├── eight_bit_int_gemm.cc │ │ │ └── eight_bit_int_gemm.h │ │ │ ├── fixedpoint │ │ │ ├── fixedpoint.h │ │ │ ├── fixedpoint_msa.h │ │ │ ├── fixedpoint_neon.h │ │ │ └── fixedpoint_sse.h │ │ │ ├── internal │ │ │ ├── allocator.h │ │ │ ├── block_params.h │ │ │ ├── common.h │ │ │ ├── compute.h │ │ │ ├── dispatch_gemm_shape.h │ │ │ ├── kernel.h │ │ │ ├── kernel_default.h │ │ │ ├── kernel_dsp.h │ │ │ ├── kernel_msa.h │ │ │ ├── kernel_neon.h │ │ │ ├── kernel_reference.h │ │ │ ├── kernel_sse.h │ │ │ ├── multi_thread_gemm.h │ │ │ ├── output.h │ │ │ ├── output_msa.h │ │ │ ├── output_neon.h │ │ │ ├── output_sse.h │ │ │ ├── pack.h │ │ │ ├── pack_msa.h │ │ │ ├── pack_neon.h │ │ │ ├── pack_sse.h │ │ │ ├── platform.h │ │ │ ├── simd_wrappers.h │ │ │ ├── simd_wrappers_common_neon_sse.h │ │ │ ├── simd_wrappers_msa.h │ │ │ ├── simd_wrappers_neon.h │ │ │ ├── simd_wrappers_sse.h │ │ │ ├── single_thread_gemm.h │ │ │ └── unpack.h │ │ │ ├── meta │ │ │ ├── base.h │ │ │ ├── legacy_multi_thread_common.h │ │ │ ├── legacy_multi_thread_gemm.h │ │ │ ├── legacy_multi_thread_gemv.h │ │ │ ├── legacy_operations_common.h │ │ │ ├── legacy_single_thread_gemm.h │ │ │ ├── multi_thread_common.h │ │ │ ├── multi_thread_gemm.h │ │ │ ├── multi_thread_transform.h │ │ │ ├── quantized_mul_kernels.h │ │ │ ├── quantized_mul_kernels_arm_32.h │ │ │ ├── quantized_mul_kernels_arm_64.h │ │ │ ├── single_thread_gemm.h │ │ │ ├── single_thread_transform.h │ │ │ ├── streams.h │ │ │ ├── streams_arm_32.h │ │ │ ├── streams_arm_64.h │ │ │ ├── transform_kernels.h │ │ │ ├── transform_kernels_arm_32.h │ │ │ └── transform_kernels_arm_64.h │ │ │ ├── profiling │ │ │ ├── instrumentation.h │ │ │ ├── profiler.h │ │ │ └── pthread_everywhere.h │ │ │ └── public │ │ │ ├── bit_depth.h │ │ │ ├── gemmlowp.h │ │ │ ├── map.h │ │ │ └── output_stages.h │ ├── mcu-boot │ │ ├── apps │ │ │ └── led_demo │ │ │ │ └── src │ │ │ │ ├── milliseconds_delay.c │ │ │ │ └── milliseconds_delay.h │ │ ├── bin │ │ │ └── Tools │ │ │ │ ├── bd_file │ │ │ │ └── imxrt105x │ │ │ │ │ ├── enable_hab.bd │ │ │ │ │ ├── imx-dtcm-encrypted.bd │ │ │ │ │ ├── imx-dtcm-signed.bd │ │ │ │ │ ├── imx-dtcm-unsigned.bd │ │ │ │ │ ├── imx-flexspinor-normal-signed.bd │ │ │ │ │ ├── imx-flexspinor-normal-unsigned.bd │ │ │ │ │ ├── imx-flexspinor-plugin-signed.bd │ │ │ │ │ ├── imx-flexspinor-plugin-unsigned.bd │ │ │ │ │ ├── imx-itcm-encrypted.bd │ │ │ │ │ ├── imx-itcm-signed.bd │ │ │ │ │ ├── imx-itcm-unsigned.bd │ │ │ │ │ ├── imx-ocram-unsigned.bd │ │ │ │ │ ├── program_flexspinand_encrypt_image_keyblob.bd │ │ │ │ │ ├── program_flexspinand_image.bd │ │ │ │ │ ├── program_flexspinor_image_adesto_atxp032.bd │ │ │ │ │ ├── program_flexspinor_image_hyperflash.bd │ │ │ │ │ ├── program_flexspinor_image_hyperflash_encrypt.bd │ │ │ │ │ ├── program_flexspinor_image_micron_mt35x.bd │ │ │ │ │ ├── program_flexspinor_image_mxic_mx25um51245g.bd │ │ │ │ │ ├── program_flexspinor_image_mxic_mx25um51345g.bd │ │ │ │ │ ├── program_flexspinor_image_qspinor.bd │ │ │ │ │ ├── program_flexspinor_image_qspinor_status_reg1_bit6.bd │ │ │ │ │ ├── program_flexspinor_image_qspinor_status_reg2_0x31.bd │ │ │ │ │ ├── program_flexspinor_image_qspinor_status_reg2_bit1.bd │ │ │ │ │ ├── program_flexspinor_image_qspinor_status_reg2_bit7.bd │ │ │ │ │ ├── program_mmccard_image_fastboot.bd │ │ │ │ │ ├── program_mmccard_image_normal.bd │ │ │ │ │ ├── program_sdcard_encrypt_image_keyblob.bd │ │ │ │ │ ├── program_sdcard_image.bd │ │ │ │ │ ├── program_semcnand_image.bd │ │ │ │ │ ├── program_semcnor_image.bd │ │ │ │ │ ├── program_spinor_eeprom_image.bd │ │ │ │ │ └── program_spinor_eeprom_image_encrypt_image_keyblob.bd │ │ │ │ ├── blhost │ │ │ │ └── linux │ │ │ │ │ ├── amd64 │ │ │ │ │ └── blhost │ │ │ │ │ └── i386 │ │ │ │ │ └── blhost │ │ │ │ ├── elftosb │ │ │ │ └── linux │ │ │ │ │ ├── amd64 │ │ │ │ │ └── elftosb │ │ │ │ │ └── i386 │ │ │ │ │ └── elftosb │ │ │ │ └── sdphost │ │ │ │ └── linux │ │ │ │ ├── amd64 │ │ │ │ └── sdphost │ │ │ │ └── i386 │ │ │ │ └── sdphost │ │ ├── doc │ │ │ ├── MCU Flashloader Reference Manual.pdf │ │ │ ├── blhost User's Guide.pdf │ │ │ ├── elftosb User's Guide.pdf │ │ │ ├── i.MX RT1050 Flashloader v2.7.0 Release Notes.pdf │ │ │ ├── i.MX RT1050 Manufacturing User's Guide.pdf │ │ │ └── sdphost User's Guide.pdf │ │ ├── src │ │ │ ├── autobaud │ │ │ │ ├── autobaud.h │ │ │ │ └── src │ │ │ │ │ └── autobaud_irq.c │ │ │ ├── bm_usb │ │ │ │ ├── bootloader_hid_report_ids.h │ │ │ │ ├── composite.c │ │ │ │ ├── composite.h │ │ │ │ ├── fat_directory_entry.h │ │ │ │ ├── hid_bootloader.c │ │ │ │ ├── hid_bootloader.h │ │ │ │ ├── msc_disk.c │ │ │ │ ├── msc_disk.h │ │ │ │ ├── usb_descriptor.c │ │ │ │ └── usb_descriptor.h │ │ │ ├── bootloader │ │ │ │ ├── bl_app_crc_check.h │ │ │ │ ├── bl_command.h │ │ │ │ ├── bl_context.h │ │ │ │ ├── bl_irq_common.h │ │ │ │ ├── bl_keyblob.h │ │ │ │ ├── bl_nor_encrypt.h │ │ │ │ ├── bl_peripheral.h │ │ │ │ ├── bl_peripheral_interface.h │ │ │ │ ├── bl_shutdown_cleanup.h │ │ │ │ ├── bl_user_entry.h │ │ │ │ ├── bl_version.h │ │ │ │ ├── bootloader.h │ │ │ │ └── src │ │ │ │ │ ├── bl_app_crc_check.c │ │ │ │ │ ├── bl_command.c │ │ │ │ │ ├── bl_context.c │ │ │ │ │ ├── bl_exception_handler.c │ │ │ │ │ ├── bl_keyblob.c │ │ │ │ │ ├── bl_keyblob_dcp.c │ │ │ │ │ ├── bl_main.c │ │ │ │ │ ├── bl_misc.c │ │ │ │ │ ├── bl_nor_encrypt_bee.c │ │ │ │ │ ├── bl_shutdown_cleanup.c │ │ │ │ │ ├── bl_tree_root.c │ │ │ │ │ ├── bl_user_entry.c │ │ │ │ │ ├── lpuart_peripheral_interface.c │ │ │ │ │ └── usb_hid_msc_peripheral_interface.c │ │ │ ├── crc │ │ │ │ ├── crc16.h │ │ │ │ ├── crc32.h │ │ │ │ └── src │ │ │ │ │ ├── crc16.c │ │ │ │ │ └── crc32.c │ │ │ ├── drivers │ │ │ │ ├── dcp │ │ │ │ │ ├── fsl_dcp.c │ │ │ │ │ └── fsl_dcp.h │ │ │ │ ├── flexspi │ │ │ │ │ ├── fsl_flexspi.c │ │ │ │ │ └── fsl_flexspi.h │ │ │ │ ├── flexspi_nand │ │ │ │ │ ├── flexspi_nand_flash.c │ │ │ │ │ └── flexspi_nand_flash.h │ │ │ │ ├── flexspi_nor │ │ │ │ │ ├── flexspi_nor_flash.c │ │ │ │ │ └── flexspi_nor_flash.h │ │ │ │ ├── gpio │ │ │ │ │ └── fsl_gpio.h │ │ │ │ ├── igpio │ │ │ │ │ ├── fsl_gpio.c │ │ │ │ │ └── fsl_gpio.h │ │ │ │ ├── lpspi │ │ │ │ │ ├── fsl_lpspi.c │ │ │ │ │ └── fsl_lpspi.h │ │ │ │ ├── lpuart │ │ │ │ │ ├── fsl_lpuart.c │ │ │ │ │ └── fsl_lpuart.h │ │ │ │ ├── microseconds │ │ │ │ │ ├── microseconds.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── microseconds_pit.c │ │ │ │ │ │ └── microseconds_sysclk.c │ │ │ │ ├── nand_ecc │ │ │ │ │ ├── nand_ecc.c │ │ │ │ │ └── nand_ecc.h │ │ │ │ ├── ocotp │ │ │ │ │ ├── fsl_ocotp.c │ │ │ │ │ └── fsl_ocotp.h │ │ │ │ ├── port │ │ │ │ │ └── fsl_port.h │ │ │ │ ├── sdmmc │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── fsl_card.h │ │ │ │ │ │ ├── fsl_host.h │ │ │ │ │ │ ├── fsl_sdmmc.h │ │ │ │ │ │ └── fsl_specification.h │ │ │ │ │ ├── port │ │ │ │ │ │ └── usdhc │ │ │ │ │ │ │ └── polling │ │ │ │ │ │ │ └── fsl_host.c │ │ │ │ │ └── src │ │ │ │ │ │ ├── fsl_mmc.c │ │ │ │ │ │ ├── fsl_sd.c │ │ │ │ │ │ └── fsl_sdmmc.c │ │ │ │ ├── semc │ │ │ │ │ ├── fsl_semc.c │ │ │ │ │ └── fsl_semc.h │ │ │ │ ├── semc_nand │ │ │ │ │ ├── semc_nand_flash.c │ │ │ │ │ └── semc_nand_flash.h │ │ │ │ ├── semc_nor │ │ │ │ │ ├── semc_nor_flash.c │ │ │ │ │ └── semc_nor_flash.h │ │ │ │ ├── serial_nor_eeprom │ │ │ │ │ ├── serial_nor_eeprom.c │ │ │ │ │ └── serial_nor_eeprom.h │ │ │ │ ├── smc │ │ │ │ │ └── smc.h │ │ │ │ ├── trng │ │ │ │ │ ├── fsl_trng.c │ │ │ │ │ └── fsl_trng.h │ │ │ │ └── usdhc │ │ │ │ │ ├── fsl_usdhc.c │ │ │ │ │ └── fsl_usdhc.h │ │ │ ├── include │ │ │ │ ├── bootloader_common.h │ │ │ │ └── bootloader_core.h │ │ │ ├── memory │ │ │ │ ├── memory.h │ │ │ │ └── src │ │ │ │ │ ├── device_memory.c │ │ │ │ │ ├── device_memory.h │ │ │ │ │ ├── flexspi_nor_memory.c │ │ │ │ │ ├── flexspi_nor_memory.h │ │ │ │ │ ├── memory.c │ │ │ │ │ ├── mmc_memory.c │ │ │ │ │ ├── mmc_memory.h │ │ │ │ │ ├── normal_memory.c │ │ │ │ │ ├── normal_memory.h │ │ │ │ │ ├── pattern_fill.h │ │ │ │ │ ├── sd_memory.c │ │ │ │ │ ├── sd_memory.h │ │ │ │ │ ├── semc_nand_memory.c │ │ │ │ │ ├── semc_nand_memory.h │ │ │ │ │ ├── semc_nor_memory.c │ │ │ │ │ ├── semc_nor_memory.h │ │ │ │ │ ├── spi_nor_eeprom_memory.c │ │ │ │ │ ├── spi_nor_eeprom_memory.h │ │ │ │ │ ├── spinand_memory.c │ │ │ │ │ ├── spinand_memory.h │ │ │ │ │ └── sram_init.h │ │ │ ├── packet │ │ │ │ ├── command_packet.h │ │ │ │ ├── serial_packet.h │ │ │ │ └── src │ │ │ │ │ └── serial_packet.c │ │ │ ├── property │ │ │ │ ├── property.h │ │ │ │ └── src │ │ │ │ │ └── property_imx.c │ │ │ ├── sbloader │ │ │ │ ├── sb_file_format.h │ │ │ │ ├── sbloader.h │ │ │ │ └── src │ │ │ │ │ └── sbloader.c │ │ │ ├── startup │ │ │ │ ├── ar_asm_macros.h │ │ │ │ └── startup.c │ │ │ └── utilities │ │ │ │ ├── fsl_assert.h │ │ │ │ ├── fsl_rtos_abstraction.h │ │ │ │ ├── kinetis_family.h │ │ │ │ ├── ring_buffer.h │ │ │ │ ├── src │ │ │ │ ├── bootloader_tree_stub.c │ │ │ │ ├── fsl_assert.c │ │ │ │ ├── fsl_rtos_abstraction.c │ │ │ │ └── ring_buffer.c │ │ │ │ └── vector_table_info.h │ │ ├── targets │ │ │ ├── MIMXRT1052 │ │ │ │ └── src │ │ │ │ │ ├── bl_lpuart_irq_config_MIMXRT1052.c │ │ │ │ │ ├── bootloader_config.h │ │ │ │ │ ├── clock_config_MIMXRT1052.c │ │ │ │ │ ├── external_memory_property_map_MIMXRT1052.c │ │ │ │ │ ├── flexspi_nand_config_MIMXRT1052.c │ │ │ │ │ ├── flexspi_nor_config_MIMXRT1052.c │ │ │ │ │ ├── fusemap.h │ │ │ │ │ ├── hardware_init_MIMXRT1052.c │ │ │ │ │ ├── memory_map_MIMXRT1052.c │ │ │ │ │ ├── peripherals_MIMXRT1052.c │ │ │ │ │ ├── peripherals_pinmux.h │ │ │ │ │ ├── sdmmc_config_MIMXRT1052.c │ │ │ │ │ ├── sdmmc_init.h │ │ │ │ │ ├── semc_nand_config_MIMXRT1052.c │ │ │ │ │ ├── semc_nor_config_MIMXRT1052.c │ │ │ │ │ ├── sram_init_MIMXRT1052.c │ │ │ │ │ ├── startup │ │ │ │ │ └── system_MIMXRT1052.c │ │ │ │ │ ├── target_config.h │ │ │ │ │ └── usb_device_config.h │ │ │ └── common │ │ │ │ └── src │ │ │ │ └── pinmux_utility_imxrt_series.c │ │ └── tools │ │ │ ├── mk │ │ │ └── common.mk │ │ │ ├── src │ │ │ ├── blfwk │ │ │ │ ├── AESCounter.h │ │ │ │ ├── AESKey.h │ │ │ │ ├── BlfwkErrors.h │ │ │ │ ├── Blob.h │ │ │ │ ├── Bootloader.h │ │ │ │ ├── BusPal.h │ │ │ │ ├── BusPalPeripheral.h │ │ │ │ ├── Command.h │ │ │ │ ├── Crc.h │ │ │ │ ├── DataSource.h │ │ │ │ ├── DataSourceImager.h │ │ │ │ ├── DataTarget.h │ │ │ │ ├── ELF.h │ │ │ │ ├── ELFSourceFile.h │ │ │ │ ├── EndianUtilities.h │ │ │ │ ├── ExcludesListMatcher.h │ │ │ │ ├── GHSSecInfo.h │ │ │ │ ├── GlobMatcher.h │ │ │ │ ├── HexValues.h │ │ │ │ ├── IntelHexSourceFile.h │ │ │ │ ├── Logging.h │ │ │ │ ├── OptionContext.h │ │ │ │ ├── Packetizer.h │ │ │ │ ├── Peripheral.h │ │ │ │ ├── Progress.h │ │ │ │ ├── Random.h │ │ │ │ ├── RijndaelCTR.h │ │ │ │ ├── SBSourceFile.h │ │ │ │ ├── SDPCommand.h │ │ │ │ ├── SDPUartPacketizer.h │ │ │ │ ├── SDPUsbHidPacketizer.h │ │ │ │ ├── SRecordSourceFile.h │ │ │ │ ├── SearchPath.h │ │ │ │ ├── SerialPacketizer.h │ │ │ │ ├── SimPacketizer.h │ │ │ │ ├── SimPeripheral.h │ │ │ │ ├── Simulator.h │ │ │ │ ├── SimulatorMemory.h │ │ │ │ ├── SourceFile.h │ │ │ │ ├── StELFFile.h │ │ │ │ ├── StExecutableImage.h │ │ │ │ ├── StIntelHexFile.h │ │ │ │ ├── StSRecordFile.h │ │ │ │ ├── StringMatcher.h │ │ │ │ ├── UartPeripheral.h │ │ │ │ ├── Updater.h │ │ │ │ ├── UsbHidPacketizer.h │ │ │ │ ├── UsbHidPeripheral.h │ │ │ │ ├── Value.h │ │ │ │ ├── bootloader_config.h │ │ │ │ ├── doc │ │ │ │ │ └── blfwk.md │ │ │ │ ├── format_string.h │ │ │ │ ├── hidapi.h │ │ │ │ ├── host_types.h │ │ │ │ ├── int_size.h │ │ │ │ ├── json.h │ │ │ │ ├── options.h │ │ │ │ ├── rijndael.h │ │ │ │ ├── serial.h │ │ │ │ ├── smart_ptr.h │ │ │ │ ├── src │ │ │ │ │ ├── AESCounter.cpp │ │ │ │ │ ├── AESKey.cpp │ │ │ │ │ ├── Blob.cpp │ │ │ │ │ ├── Bootloader.cpp │ │ │ │ │ ├── BusPal.cpp │ │ │ │ │ ├── BusPalPeripheral.cpp │ │ │ │ │ ├── Command.cpp │ │ │ │ │ ├── Crc.cpp │ │ │ │ │ ├── DataSource.cpp │ │ │ │ │ ├── DataSourceImager.cpp │ │ │ │ │ ├── DataTarget.cpp │ │ │ │ │ ├── ELFSourceFile.cpp │ │ │ │ │ ├── ExcludesListMatcher.cpp │ │ │ │ │ ├── GHSSecInfo.cpp │ │ │ │ │ ├── GlobMatcher.cpp │ │ │ │ │ ├── HexValues.cpp │ │ │ │ │ ├── IntelHexSourceFile.cpp │ │ │ │ │ ├── Logging.cpp │ │ │ │ │ ├── Random.cpp │ │ │ │ │ ├── RijndaelCTR.cpp │ │ │ │ │ ├── SBSourceFile.cpp │ │ │ │ │ ├── SDPCommand.cpp │ │ │ │ │ ├── SDPUsbHidPacketizer.cpp │ │ │ │ │ ├── SRecordSourceFile.cpp │ │ │ │ │ ├── SearchPath.cpp │ │ │ │ │ ├── SerialPacketizer.cpp │ │ │ │ │ ├── SimPacketizer.cpp │ │ │ │ │ ├── SimPeripheral.cpp │ │ │ │ │ ├── Simulator.cpp │ │ │ │ │ ├── SimulatorMemory.cpp │ │ │ │ │ ├── SourceFile.cpp │ │ │ │ │ ├── StELFFile.cpp │ │ │ │ │ ├── StExecutableImage.cpp │ │ │ │ │ ├── StIntelHexFile.cpp │ │ │ │ │ ├── StSRecordFile.cpp │ │ │ │ │ ├── UartPeripheral.cpp │ │ │ │ │ ├── Updater.cpp │ │ │ │ │ ├── UsbHidPacketizer.cpp │ │ │ │ │ ├── UsbHidPeripheral.cpp │ │ │ │ │ ├── Value.cpp │ │ │ │ │ ├── format_string.cpp │ │ │ │ │ ├── hid-linux.c │ │ │ │ │ ├── hid-mac.c │ │ │ │ │ ├── hid-windows.c │ │ │ │ │ ├── jsoncpp.cpp │ │ │ │ │ ├── options.cpp │ │ │ │ │ ├── rijndael.cpp │ │ │ │ │ ├── serial.c │ │ │ │ │ └── utils.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── utils.h │ │ │ ├── bootloader │ │ │ │ └── bl_peripheral.h │ │ │ ├── crc │ │ │ │ ├── crc16.h │ │ │ │ ├── crc32.h │ │ │ │ └── src │ │ │ │ │ ├── crc16.c │ │ │ │ │ └── crc32.c │ │ │ ├── include │ │ │ │ ├── bootloader_common.h │ │ │ │ └── bootloader_hid_report_ids.h │ │ │ ├── memory │ │ │ │ └── memory.h │ │ │ ├── packet │ │ │ │ ├── command_packet.h │ │ │ │ └── serial_packet.h │ │ │ └── property │ │ │ │ └── property.h │ │ │ └── tools │ │ │ ├── blhost │ │ │ ├── gcc │ │ │ │ └── Makefile │ │ │ └── src │ │ │ │ ├── blhost.cpp │ │ │ │ └── targetver.h │ │ │ ├── common │ │ │ └── blfwkdll │ │ │ │ ├── blfwkdll.cpp │ │ │ │ └── blfwkdll.h │ │ │ ├── elftosb │ │ │ ├── common │ │ │ │ ├── AESCounter.h │ │ │ │ ├── AESKey.cpp │ │ │ │ ├── AESKey.h │ │ │ │ ├── Blob.cpp │ │ │ │ ├── Blob.h │ │ │ │ ├── BootImage.h │ │ │ │ ├── DataSource.cpp │ │ │ │ ├── DataSource.h │ │ │ │ ├── DataSourceImager.cpp │ │ │ │ ├── DataSourceImager.h │ │ │ │ ├── DataTarget.cpp │ │ │ │ ├── DataTarget.h │ │ │ │ ├── ELF.h │ │ │ │ ├── ELFSourceFile.cpp │ │ │ │ ├── ELFSourceFile.h │ │ │ │ ├── EncoreBootImage.cpp │ │ │ │ ├── EncoreBootImage.h │ │ │ │ ├── EncoreBootImageReader.cpp │ │ │ │ ├── EncoreBootImageReader.h │ │ │ │ ├── EndianUtilities.h │ │ │ │ ├── EvalContext.cpp │ │ │ │ ├── EvalContext.h │ │ │ │ ├── ExcludesListMatcher.cpp │ │ │ │ ├── ExcludesListMatcher.h │ │ │ │ ├── GHSSecInfo.cpp │ │ │ │ ├── GHSSecInfo.h │ │ │ │ ├── GlobMatcher.cpp │ │ │ │ ├── GlobMatcher.h │ │ │ │ ├── HexValues.cpp │ │ │ │ ├── HexValues.h │ │ │ │ ├── IVTDataSource.cpp │ │ │ │ ├── IVTDataSource.h │ │ │ │ ├── Keyblob.cpp │ │ │ │ ├── Keyblob.h │ │ │ │ ├── KeyblobEntry.h │ │ │ │ ├── Logging.cpp │ │ │ │ ├── Logging.h │ │ │ │ ├── Operation.cpp │ │ │ │ ├── Operation.h │ │ │ │ ├── OptionContext.h │ │ │ │ ├── OptionDictionary.cpp │ │ │ │ ├── OptionDictionary.h │ │ │ │ ├── OutputSection.cpp │ │ │ │ ├── OutputSection.h │ │ │ │ ├── Random.cpp │ │ │ │ ├── Random.h │ │ │ │ ├── RijndaelCBCMAC.cpp │ │ │ │ ├── RijndaelCBCMAC.h │ │ │ │ ├── RijndaelCTR.cpp │ │ │ │ ├── RijndaelCTR.h │ │ │ │ ├── SB2Image.cpp │ │ │ │ ├── SB2Image.h │ │ │ │ ├── SHA1.cpp │ │ │ │ ├── SHA1.h │ │ │ │ ├── SRecordSourceFile.cpp │ │ │ │ ├── SRecordSourceFile.h │ │ │ │ ├── SearchPath.cpp │ │ │ │ ├── SearchPath.h │ │ │ │ ├── SourceFile.cpp │ │ │ │ ├── SourceFile.h │ │ │ │ ├── StELFFile.cpp │ │ │ │ ├── StELFFile.h │ │ │ │ ├── StExecutableImage.cpp │ │ │ │ ├── StExecutableImage.h │ │ │ │ ├── StSRecordFile.cpp │ │ │ │ ├── StSRecordFile.h │ │ │ │ ├── StringMatcher.h │ │ │ │ ├── Value.cpp │ │ │ │ ├── Value.h │ │ │ │ ├── Version.cpp │ │ │ │ ├── Version.h │ │ │ │ ├── aes128_key_wrap_unwrap.c │ │ │ │ ├── aes128_key_wrap_unwrap.h │ │ │ │ ├── bytes_aes.c │ │ │ │ ├── crc.cpp │ │ │ │ ├── crc.h │ │ │ │ ├── format_string.cpp │ │ │ │ ├── format_string.h │ │ │ │ ├── iMXImage.cpp │ │ │ │ ├── iMXImage.h │ │ │ │ ├── int_size.h │ │ │ │ ├── options.cpp │ │ │ │ ├── options.h │ │ │ │ ├── rijndael.cpp │ │ │ │ ├── rijndael.h │ │ │ │ ├── smart_ptr.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── elftosb2 │ │ │ │ ├── BootImageGenerator.cpp │ │ │ │ ├── BootImageGenerator.h │ │ │ │ ├── ConversionController.cpp │ │ │ │ ├── ConversionController.h │ │ │ │ ├── ElftosbAST.cpp │ │ │ │ ├── ElftosbAST.h │ │ │ │ ├── ElftosbErrors.h │ │ │ │ ├── ElftosbLexer.cpp │ │ │ │ ├── ElftosbLexer.h │ │ │ │ ├── EncoreBootImageGenerator.cpp │ │ │ │ ├── EncoreBootImageGenerator.h │ │ │ │ ├── FlexLexer.h │ │ │ │ ├── SB2ImageGenerator.cpp │ │ │ │ ├── SB2ImageGenerator.h │ │ │ │ ├── elftosb.cpp │ │ │ │ ├── elftosb_lexer.cpp │ │ │ │ ├── elftosb_lexer.l │ │ │ │ ├── elftosb_parser.tab.cpp │ │ │ │ ├── elftosb_parser.tab.hpp │ │ │ │ ├── elftosb_parser.y │ │ │ │ ├── iMXImageGenerator.cpp │ │ │ │ └── iMXImageGenerator.h │ │ │ ├── encryptgpk │ │ │ │ └── encryptgpk.cpp │ │ │ ├── keygen │ │ │ │ └── keygen.cpp │ │ │ ├── makefile │ │ │ ├── makefile.rules │ │ │ ├── mbedtls │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── apache-2.0.txt │ │ │ │ ├── configs │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── config-ccm-psk-tls1_2.h │ │ │ │ │ ├── config-mini-tls1_1.h │ │ │ │ │ ├── config-picocoin.h │ │ │ │ │ ├── config-suite-b.h │ │ │ │ │ └── config-thread.h │ │ │ │ ├── include │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── mbedtls │ │ │ │ │ │ ├── aes.h │ │ │ │ │ │ ├── aesni.h │ │ │ │ │ │ ├── arc4.h │ │ │ │ │ │ ├── asn1.h │ │ │ │ │ │ ├── asn1write.h │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ ├── bignum.h │ │ │ │ │ │ ├── blowfish.h │ │ │ │ │ │ ├── bn_mul.h │ │ │ │ │ │ ├── camellia.h │ │ │ │ │ │ ├── ccm.h │ │ │ │ │ │ ├── certs.h │ │ │ │ │ │ ├── check_config.h │ │ │ │ │ │ ├── cipher.h │ │ │ │ │ │ ├── cipher_internal.h │ │ │ │ │ │ ├── compat-1.3.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── ctr_drbg.h │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── des.h │ │ │ │ │ │ ├── dhm.h │ │ │ │ │ │ ├── ecdh.h │ │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ │ ├── ecjpake.h │ │ │ │ │ │ ├── ecp.h │ │ │ │ │ │ ├── entropy.h │ │ │ │ │ │ ├── entropy_poll.h │ │ │ │ │ │ ├── error.h │ │ │ │ │ │ ├── gcm.h │ │ │ │ │ │ ├── havege.h │ │ │ │ │ │ ├── hmac_drbg.h │ │ │ │ │ │ ├── md.h │ │ │ │ │ │ ├── md2.h │ │ │ │ │ │ ├── md4.h │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ ├── md_internal.h │ │ │ │ │ │ ├── memory_buffer_alloc.h │ │ │ │ │ │ ├── net.h │ │ │ │ │ │ ├── oid.h │ │ │ │ │ │ ├── padlock.h │ │ │ │ │ │ ├── pem.h │ │ │ │ │ │ ├── pk.h │ │ │ │ │ │ ├── pk_internal.h │ │ │ │ │ │ ├── pkcs11.h │ │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ │ ├── pkcs5.h │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ ├── ripemd160.h │ │ │ │ │ │ ├── rsa.h │ │ │ │ │ │ ├── sha1.h │ │ │ │ │ │ ├── sha256.h │ │ │ │ │ │ ├── sha512.h │ │ │ │ │ │ ├── ssl.h │ │ │ │ │ │ ├── ssl_cache.h │ │ │ │ │ │ ├── ssl_ciphersuites.h │ │ │ │ │ │ ├── ssl_cookie.h │ │ │ │ │ │ ├── ssl_internal.h │ │ │ │ │ │ ├── ssl_ticket.h │ │ │ │ │ │ ├── threading.h │ │ │ │ │ │ ├── timing.h │ │ │ │ │ │ ├── version.h │ │ │ │ │ │ ├── x509.h │ │ │ │ │ │ ├── x509_crl.h │ │ │ │ │ │ ├── x509_crt.h │ │ │ │ │ │ ├── x509_csr.h │ │ │ │ │ │ └── xtea.h │ │ │ │ ├── library │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── aes.c │ │ │ │ │ ├── aesni.c │ │ │ │ │ ├── arc4.c │ │ │ │ │ ├── asn1parse.c │ │ │ │ │ ├── asn1write.c │ │ │ │ │ ├── base64.c │ │ │ │ │ ├── bignum.c │ │ │ │ │ ├── blowfish.c │ │ │ │ │ ├── camellia.c │ │ │ │ │ ├── ccm.c │ │ │ │ │ ├── certs.c │ │ │ │ │ ├── cipher.c │ │ │ │ │ ├── cipher_wrap.c │ │ │ │ │ ├── ctr_drbg.c │ │ │ │ │ ├── debug.c │ │ │ │ │ ├── des.c │ │ │ │ │ ├── dhm.c │ │ │ │ │ ├── ecdh.c │ │ │ │ │ ├── ecdsa.c │ │ │ │ │ ├── ecjpake.c │ │ │ │ │ ├── ecp.c │ │ │ │ │ ├── ecp_curves.c │ │ │ │ │ ├── entropy.c │ │ │ │ │ ├── entropy_poll.c │ │ │ │ │ ├── error.c │ │ │ │ │ ├── gcm.c │ │ │ │ │ ├── havege.c │ │ │ │ │ ├── hmac_drbg.c │ │ │ │ │ ├── md.c │ │ │ │ │ ├── md2.c │ │ │ │ │ ├── md4.c │ │ │ │ │ ├── md5.c │ │ │ │ │ ├── md_wrap.c │ │ │ │ │ ├── memory_buffer_alloc.c │ │ │ │ │ ├── net.c │ │ │ │ │ ├── oid.c │ │ │ │ │ ├── padlock.c │ │ │ │ │ ├── pem.c │ │ │ │ │ ├── pk.c │ │ │ │ │ ├── pk_wrap.c │ │ │ │ │ ├── pkcs11.c │ │ │ │ │ ├── pkcs12.c │ │ │ │ │ ├── pkcs5.c │ │ │ │ │ ├── pkparse.c │ │ │ │ │ ├── pkwrite.c │ │ │ │ │ ├── platform.c │ │ │ │ │ ├── ripemd160.c │ │ │ │ │ ├── rsa.c │ │ │ │ │ ├── sha1.c │ │ │ │ │ ├── sha256.c │ │ │ │ │ ├── sha512.c │ │ │ │ │ ├── ssl_cache.c │ │ │ │ │ ├── ssl_ciphersuites.c │ │ │ │ │ ├── ssl_cli.c │ │ │ │ │ ├── ssl_cookie.c │ │ │ │ │ ├── ssl_srv.c │ │ │ │ │ ├── ssl_ticket.c │ │ │ │ │ ├── ssl_tls.c │ │ │ │ │ ├── threading.c │ │ │ │ │ ├── timing.c │ │ │ │ │ ├── version.c │ │ │ │ │ ├── version_features.c │ │ │ │ │ ├── x509.c │ │ │ │ │ ├── x509_create.c │ │ │ │ │ ├── x509_crl.c │ │ │ │ │ ├── x509_crt.c │ │ │ │ │ ├── x509_csr.c │ │ │ │ │ ├── x509write_crt.c │ │ │ │ │ ├── x509write_csr.c │ │ │ │ │ └── xtea.c │ │ │ │ ├── programs │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── aes │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── aescrypt2.c │ │ │ │ │ │ └── crypt_and_hash.c │ │ │ │ │ ├── hash │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── generic_sum.c │ │ │ │ │ │ └── hello.c │ │ │ │ │ ├── pkey │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── dh_client.c │ │ │ │ │ │ ├── dh_genprime.c │ │ │ │ │ │ ├── dh_prime.txt │ │ │ │ │ │ ├── dh_server.c │ │ │ │ │ │ ├── ecdh_curve25519.c │ │ │ │ │ │ ├── ecdsa.c │ │ │ │ │ │ ├── gen_key.c │ │ │ │ │ │ ├── key_app.c │ │ │ │ │ │ ├── key_app_writer.c │ │ │ │ │ │ ├── mpi_demo.c │ │ │ │ │ │ ├── pk_decrypt.c │ │ │ │ │ │ ├── pk_encrypt.c │ │ │ │ │ │ ├── pk_sign.c │ │ │ │ │ │ ├── pk_verify.c │ │ │ │ │ │ ├── rsa_decrypt.c │ │ │ │ │ │ ├── rsa_encrypt.c │ │ │ │ │ │ ├── rsa_genkey.c │ │ │ │ │ │ ├── rsa_priv.txt │ │ │ │ │ │ ├── rsa_pub.txt │ │ │ │ │ │ ├── rsa_sign.c │ │ │ │ │ │ ├── rsa_sign_pss.c │ │ │ │ │ │ ├── rsa_verify.c │ │ │ │ │ │ └── rsa_verify_pss.c │ │ │ │ │ ├── random │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── gen_entropy.c │ │ │ │ │ │ ├── gen_random_ctr_drbg.c │ │ │ │ │ │ └── gen_random_havege.c │ │ │ │ │ ├── ssl │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── dtls_client.c │ │ │ │ │ │ ├── dtls_server.c │ │ │ │ │ │ ├── mini_client.c │ │ │ │ │ │ ├── ssl_client1.c │ │ │ │ │ │ ├── ssl_client2.c │ │ │ │ │ │ ├── ssl_fork_server.c │ │ │ │ │ │ ├── ssl_mail_client.c │ │ │ │ │ │ ├── ssl_pthread_server.c │ │ │ │ │ │ ├── ssl_server.c │ │ │ │ │ │ └── ssl_server2.c │ │ │ │ │ ├── test │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── benchmark.c │ │ │ │ │ │ ├── selftest.c │ │ │ │ │ │ ├── ssl_cert_test.c │ │ │ │ │ │ └── udp_proxy.c │ │ │ │ │ ├── util │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── pem2der.c │ │ │ │ │ │ └── strerror.c │ │ │ │ │ ├── wince_main.c │ │ │ │ │ └── x509 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── cert_app.c │ │ │ │ │ │ ├── cert_req.c │ │ │ │ │ │ ├── cert_write.c │ │ │ │ │ │ ├── crl_app.c │ │ │ │ │ │ └── req_app.c │ │ │ │ ├── scripts │ │ │ │ │ ├── apidoc_full.sh │ │ │ │ │ ├── bump_version.sh │ │ │ │ │ ├── config.pl │ │ │ │ │ ├── data_files │ │ │ │ │ │ ├── error.fmt │ │ │ │ │ │ ├── rename-1.3-2.0.txt │ │ │ │ │ │ ├── version_features.fmt │ │ │ │ │ │ ├── vs2010-app-template.vcxproj │ │ │ │ │ │ ├── vs2010-main-template.vcxproj │ │ │ │ │ │ ├── vs2010-sln-template.sln │ │ │ │ │ │ ├── vs6-app-template.dsp │ │ │ │ │ │ ├── vs6-main-template.dsp │ │ │ │ │ │ └── vs6-workspace-template.dsw │ │ │ │ │ ├── ecc-heap.sh │ │ │ │ │ ├── find-mem-leak.cocci │ │ │ │ │ ├── footprint.sh │ │ │ │ │ ├── generate_errors.pl │ │ │ │ │ ├── generate_features.pl │ │ │ │ │ ├── generate_visualc_files.pl │ │ │ │ │ ├── malloc-init.pl │ │ │ │ │ ├── massif_max.pl │ │ │ │ │ ├── memory.sh │ │ │ │ │ ├── rename.pl │ │ │ │ │ ├── rm-malloc-cast.cocci │ │ │ │ │ └── tmp_ignore_makefiles.sh │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Descriptions.txt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── compat.sh │ │ │ │ │ ├── data_files │ │ │ │ │ ├── Readme-x509.txt │ │ │ │ │ ├── bitstring-in-dn.pem │ │ │ │ │ ├── cert_example_multi.crt │ │ │ │ │ ├── cert_example_multi_nocn.crt │ │ │ │ │ ├── cert_example_wildcard.crt │ │ │ │ │ ├── cert_md2.crt │ │ │ │ │ ├── cert_md4.crt │ │ │ │ │ ├── cert_md5.crt │ │ │ │ │ ├── cert_sha1.crt │ │ │ │ │ ├── cert_sha224.crt │ │ │ │ │ ├── cert_sha256.crt │ │ │ │ │ ├── cert_sha384.crt │ │ │ │ │ ├── cert_sha512.crt │ │ │ │ │ ├── cert_v1_with_ext.crt │ │ │ │ │ ├── cli2.crt │ │ │ │ │ ├── cli2.key │ │ │ │ │ ├── crl-ec-sha1.pem │ │ │ │ │ ├── crl-ec-sha224.pem │ │ │ │ │ ├── crl-ec-sha256.pem │ │ │ │ │ ├── crl-ec-sha384.pem │ │ │ │ │ ├── crl-ec-sha512.pem │ │ │ │ │ ├── crl-future.pem │ │ │ │ │ ├── crl-rsa-pss-sha1-badsign.pem │ │ │ │ │ ├── crl-rsa-pss-sha1.pem │ │ │ │ │ ├── crl-rsa-pss-sha224.pem │ │ │ │ │ ├── crl-rsa-pss-sha256.pem │ │ │ │ │ ├── crl-rsa-pss-sha384.pem │ │ │ │ │ ├── crl-rsa-pss-sha512.pem │ │ │ │ │ ├── crl.pem │ │ │ │ │ ├── crl_cat_ec-rsa.pem │ │ │ │ │ ├── crl_cat_ecfut-rsa.pem │ │ │ │ │ ├── crl_cat_rsa-ec.pem │ │ │ │ │ ├── crl_cat_rsabadpem-ec.pem │ │ │ │ │ ├── crl_expired.pem │ │ │ │ │ ├── crl_md2.pem │ │ │ │ │ ├── crl_md4.pem │ │ │ │ │ ├── crl_md5.pem │ │ │ │ │ ├── crl_sha1.pem │ │ │ │ │ ├── crl_sha224.pem │ │ │ │ │ ├── crl_sha256.pem │ │ │ │ │ ├── crl_sha384.pem │ │ │ │ │ ├── crl_sha512.pem │ │ │ │ │ ├── crt_cat_rsaexp-ec.pem │ │ │ │ │ ├── dh.1000.pem │ │ │ │ │ ├── dh.optlen.pem │ │ │ │ │ ├── dhparams.pem │ │ │ │ │ ├── dir1 │ │ │ │ │ │ └── test-ca.crt │ │ │ │ │ ├── dir2 │ │ │ │ │ │ ├── test-ca.crt │ │ │ │ │ │ └── test-ca2.crt │ │ │ │ │ ├── dir3 │ │ │ │ │ │ ├── test-ca.crt │ │ │ │ │ │ └── test-ca2.crt │ │ │ │ │ ├── dir4 │ │ │ │ │ │ ├── cert11.crt │ │ │ │ │ │ ├── cert12.crt │ │ │ │ │ │ ├── cert13.crt │ │ │ │ │ │ ├── cert14.crt │ │ │ │ │ │ ├── cert21.crt │ │ │ │ │ │ ├── cert22.crt │ │ │ │ │ │ ├── cert23.crt │ │ │ │ │ │ ├── cert31.crt │ │ │ │ │ │ ├── cert32.crt │ │ │ │ │ │ ├── cert33.crt │ │ │ │ │ │ ├── cert34.crt │ │ │ │ │ │ ├── cert41.crt │ │ │ │ │ │ ├── cert42.crt │ │ │ │ │ │ ├── cert43.crt │ │ │ │ │ │ ├── cert44.crt │ │ │ │ │ │ ├── cert45.crt │ │ │ │ │ │ ├── cert51.crt │ │ │ │ │ │ ├── cert52.crt │ │ │ │ │ │ ├── cert53.crt │ │ │ │ │ │ ├── cert54.crt │ │ │ │ │ │ ├── cert61.crt │ │ │ │ │ │ ├── cert62.crt │ │ │ │ │ │ ├── cert63.crt │ │ │ │ │ │ ├── cert71.crt │ │ │ │ │ │ ├── cert72.crt │ │ │ │ │ │ ├── cert73.crt │ │ │ │ │ │ ├── cert74.crt │ │ │ │ │ │ ├── cert81.crt │ │ │ │ │ │ ├── cert82.crt │ │ │ │ │ │ ├── cert83.crt │ │ │ │ │ │ ├── cert91.crt │ │ │ │ │ │ └── cert92.crt │ │ │ │ │ ├── ec_224_prv.pem │ │ │ │ │ ├── ec_224_pub.pem │ │ │ │ │ ├── ec_256_prv.pem │ │ │ │ │ ├── ec_256_pub.pem │ │ │ │ │ ├── ec_384_prv.pem │ │ │ │ │ ├── ec_384_pub.pem │ │ │ │ │ ├── ec_521_prv.pem │ │ │ │ │ ├── ec_521_pub.pem │ │ │ │ │ ├── ec_bp256_prv.pem │ │ │ │ │ ├── ec_bp256_pub.pem │ │ │ │ │ ├── ec_bp384_prv.pem │ │ │ │ │ ├── ec_bp384_pub.pem │ │ │ │ │ ├── ec_bp512_prv.pem │ │ │ │ │ ├── ec_bp512_pub.pem │ │ │ │ │ ├── ec_prv.noopt.der │ │ │ │ │ ├── ec_prv.pk8.der │ │ │ │ │ ├── ec_prv.pk8.pem │ │ │ │ │ ├── ec_prv.pk8.pw.der │ │ │ │ │ ├── ec_prv.pk8.pw.pem │ │ │ │ │ ├── ec_prv.sec1.der │ │ │ │ │ ├── ec_prv.sec1.pem │ │ │ │ │ ├── ec_prv.sec1.pw.pem │ │ │ │ │ ├── ec_prv.specdom.der │ │ │ │ │ ├── ec_pub.der │ │ │ │ │ ├── ec_pub.pem │ │ │ │ │ ├── enco-ca-prstr.pem │ │ │ │ │ ├── enco-cert-utf8str.pem │ │ │ │ │ ├── format_gen.key │ │ │ │ │ ├── format_gen.pub │ │ │ │ │ ├── format_pkcs12.fmt │ │ │ │ │ ├── format_rsa.key │ │ │ │ │ ├── keyUsage.decipherOnly.crt │ │ │ │ │ ├── keyfile.3des │ │ │ │ │ ├── keyfile.aes128 │ │ │ │ │ ├── keyfile.aes192 │ │ │ │ │ ├── keyfile.aes256 │ │ │ │ │ ├── keyfile.des │ │ │ │ │ ├── passwd.psk │ │ │ │ │ ├── pkcs8_pbe_sha1_2des.key │ │ │ │ │ ├── pkcs8_pbe_sha1_3des.der │ │ │ │ │ ├── pkcs8_pbe_sha1_3des.key │ │ │ │ │ ├── pkcs8_pbe_sha1_rc4_128.key │ │ │ │ │ ├── pkcs8_pbes2_pbkdf2_3des.der │ │ │ │ │ ├── pkcs8_pbes2_pbkdf2_3des.key │ │ │ │ │ ├── pkcs8_pbes2_pbkdf2_des.key │ │ │ │ │ ├── rsa4096_prv.pem │ │ │ │ │ ├── rsa4096_pub.pem │ │ │ │ │ ├── server1-nospace.crt │ │ │ │ │ ├── server1-v1.crt │ │ │ │ │ ├── server1.cert_type.crt │ │ │ │ │ ├── server1.crt │ │ │ │ │ ├── server1.ext_ku.crt │ │ │ │ │ ├── server1.key │ │ │ │ │ ├── server1.key_usage.crt │ │ │ │ │ ├── server1.pubkey │ │ │ │ │ ├── server1.req.cert_type │ │ │ │ │ ├── server1.req.key_usage │ │ │ │ │ ├── server1.req.ku-ct │ │ │ │ │ ├── server1.req.md4 │ │ │ │ │ ├── server1.req.md5 │ │ │ │ │ ├── server1.req.sha1 │ │ │ │ │ ├── server1.req.sha224 │ │ │ │ │ ├── server1.req.sha256 │ │ │ │ │ ├── server1.req.sha384 │ │ │ │ │ ├── server1.req.sha512 │ │ │ │ │ ├── server1.v1.crt │ │ │ │ │ ├── server10.key │ │ │ │ │ ├── server10_int3_int-ca2.crt │ │ │ │ │ ├── server10_int3_int-ca2_ca.crt │ │ │ │ │ ├── server1_ca.crt │ │ │ │ │ ├── server2-badsign.crt │ │ │ │ │ ├── server2-v1-chain.crt │ │ │ │ │ ├── server2-v1.crt │ │ │ │ │ ├── server2.crt │ │ │ │ │ ├── server2.key │ │ │ │ │ ├── server2.ku-ds.crt │ │ │ │ │ ├── server2.ku-ds_ke.crt │ │ │ │ │ ├── server2.ku-ka.crt │ │ │ │ │ ├── server2.ku-ke.crt │ │ │ │ │ ├── server3.crt │ │ │ │ │ ├── server3.key │ │ │ │ │ ├── server4.crt │ │ │ │ │ ├── server4.key │ │ │ │ │ ├── server5-badsign.crt │ │ │ │ │ ├── server5-der0.crt │ │ │ │ │ ├── server5-der1a.crt │ │ │ │ │ ├── server5-der1b.crt │ │ │ │ │ ├── server5-der2.crt │ │ │ │ │ ├── server5-der4.crt │ │ │ │ │ ├── server5-der8.crt │ │ │ │ │ ├── server5-der9.crt │ │ │ │ │ ├── server5-expired.crt │ │ │ │ │ ├── server5-future.crt │ │ │ │ │ ├── server5-selfsigned.crt │ │ │ │ │ ├── server5-sha1.crt │ │ │ │ │ ├── server5-sha224.crt │ │ │ │ │ ├── server5-sha384.crt │ │ │ │ │ ├── server5-sha512.crt │ │ │ │ │ ├── server5.crt │ │ │ │ │ ├── server5.eku-cli.crt │ │ │ │ │ ├── server5.eku-cs.crt │ │ │ │ │ ├── server5.eku-cs_any.crt │ │ │ │ │ ├── server5.eku-srv.crt │ │ │ │ │ ├── server5.eku-srv_cli.crt │ │ │ │ │ ├── server5.key │ │ │ │ │ ├── server5.ku-ds.crt │ │ │ │ │ ├── server5.ku-ka.crt │ │ │ │ │ ├── server5.ku-ke.crt │ │ │ │ │ ├── server5.req.ku.sha1 │ │ │ │ │ ├── server5.req.sha1 │ │ │ │ │ ├── server5.req.sha224 │ │ │ │ │ ├── server5.req.sha256 │ │ │ │ │ ├── server5.req.sha384 │ │ │ │ │ ├── server5.req.sha512 │ │ │ │ │ ├── server6-ss-child.crt │ │ │ │ │ ├── server6.crt │ │ │ │ │ ├── server6.key │ │ │ │ │ ├── server7.crt │ │ │ │ │ ├── server7.key │ │ │ │ │ ├── server7_all_space.crt │ │ │ │ │ ├── server7_int-ca.crt │ │ │ │ │ ├── server7_int-ca_ca2.crt │ │ │ │ │ ├── server7_pem_space.crt │ │ │ │ │ ├── server7_trailing_space.crt │ │ │ │ │ ├── server8.crt │ │ │ │ │ ├── server8.key │ │ │ │ │ ├── server8_int-ca2.crt │ │ │ │ │ ├── server9-bad-mgfhash.crt │ │ │ │ │ ├── server9-bad-saltlen.crt │ │ │ │ │ ├── server9-badsign.crt │ │ │ │ │ ├── server9-defaults.crt │ │ │ │ │ ├── server9-sha224.crt │ │ │ │ │ ├── server9-sha256.crt │ │ │ │ │ ├── server9-sha384.crt │ │ │ │ │ ├── server9-sha512.crt │ │ │ │ │ ├── server9-with-ca.crt │ │ │ │ │ ├── server9.crt │ │ │ │ │ ├── server9.key │ │ │ │ │ ├── server9.req.sha1 │ │ │ │ │ ├── server9.req.sha224 │ │ │ │ │ ├── server9.req.sha256 │ │ │ │ │ ├── server9.req.sha384 │ │ │ │ │ ├── server9.req.sha512 │ │ │ │ │ ├── test-ca-v1.crt │ │ │ │ │ ├── test-ca.crt │ │ │ │ │ ├── test-ca.key │ │ │ │ │ ├── test-ca2.crt │ │ │ │ │ ├── test-ca2.key │ │ │ │ │ ├── test-ca2.ku-crl.crt │ │ │ │ │ ├── test-ca2.ku-crt.crt │ │ │ │ │ ├── test-ca2.ku-crt_crl.crt │ │ │ │ │ ├── test-ca2.ku-ds.crt │ │ │ │ │ ├── test-ca2_cat-future-present.crt │ │ │ │ │ ├── test-ca2_cat-past-present.crt │ │ │ │ │ ├── test-ca2_cat-present-future.crt │ │ │ │ │ ├── test-ca2_cat-present-past.crt │ │ │ │ │ ├── test-ca_cat12.crt │ │ │ │ │ ├── test-ca_cat21.crt │ │ │ │ │ ├── test-int-ca.crt │ │ │ │ │ ├── test-int-ca.key │ │ │ │ │ ├── test-int-ca2.crt │ │ │ │ │ ├── test-int-ca2.key │ │ │ │ │ ├── test-int-ca3.crt │ │ │ │ │ └── test-int-ca3.key │ │ │ │ │ ├── scripts │ │ │ │ │ ├── all.sh │ │ │ │ │ ├── basic-build-test.sh │ │ │ │ │ ├── check-doxy-blocks.pl │ │ │ │ │ ├── check-generated-files.sh │ │ │ │ │ ├── check-names.sh │ │ │ │ │ ├── curves.pl │ │ │ │ │ ├── doxygen.sh │ │ │ │ │ ├── gen_ctr_drbg.pl │ │ │ │ │ ├── gen_gcm_decrypt.pl │ │ │ │ │ ├── gen_gcm_encrypt.pl │ │ │ │ │ ├── gen_pkcs1_v21_sign_verify.pl │ │ │ │ │ ├── generate-afl-tests.sh │ │ │ │ │ ├── generate_code.pl │ │ │ │ │ ├── key-exchanges.pl │ │ │ │ │ ├── list-enum-consts.pl │ │ │ │ │ ├── list-identifiers.sh │ │ │ │ │ ├── list-macros.sh │ │ │ │ │ ├── list-symbols.sh │ │ │ │ │ ├── recursion.pl │ │ │ │ │ ├── run-test-suites.pl │ │ │ │ │ ├── test-ref-configs.pl │ │ │ │ │ ├── travis-log-failure.sh │ │ │ │ │ └── yotta-build.sh │ │ │ │ │ ├── ssl-opt.sh │ │ │ │ │ └── suites │ │ │ │ │ ├── helpers.function │ │ │ │ │ ├── main_test.function │ │ │ │ │ ├── test_suite_aes.cbc.data │ │ │ │ │ ├── test_suite_aes.cfb.data │ │ │ │ │ ├── test_suite_aes.ecb.data │ │ │ │ │ ├── test_suite_aes.function │ │ │ │ │ ├── test_suite_aes.rest.data │ │ │ │ │ ├── test_suite_arc4.data │ │ │ │ │ ├── test_suite_arc4.function │ │ │ │ │ ├── test_suite_asn1write.data │ │ │ │ │ ├── test_suite_asn1write.function │ │ │ │ │ ├── test_suite_base64.data │ │ │ │ │ ├── test_suite_base64.function │ │ │ │ │ ├── test_suite_blowfish.data │ │ │ │ │ ├── test_suite_blowfish.function │ │ │ │ │ ├── test_suite_camellia.data │ │ │ │ │ ├── test_suite_camellia.function │ │ │ │ │ ├── test_suite_ccm.data │ │ │ │ │ ├── test_suite_ccm.function │ │ │ │ │ ├── test_suite_cipher.aes.data │ │ │ │ │ ├── test_suite_cipher.arc4.data │ │ │ │ │ ├── test_suite_cipher.blowfish.data │ │ │ │ │ ├── test_suite_cipher.camellia.data │ │ │ │ │ ├── test_suite_cipher.ccm.data │ │ │ │ │ ├── test_suite_cipher.des.data │ │ │ │ │ ├── test_suite_cipher.function │ │ │ │ │ ├── test_suite_cipher.gcm.data │ │ │ │ │ ├── test_suite_cipher.null.data │ │ │ │ │ ├── test_suite_cipher.padding.data │ │ │ │ │ ├── test_suite_ctr_drbg.data │ │ │ │ │ ├── test_suite_ctr_drbg.function │ │ │ │ │ ├── test_suite_debug.data │ │ │ │ │ ├── test_suite_debug.function │ │ │ │ │ ├── test_suite_des.data │ │ │ │ │ ├── test_suite_des.function │ │ │ │ │ ├── test_suite_dhm.data │ │ │ │ │ ├── test_suite_dhm.function │ │ │ │ │ ├── test_suite_ecdh.data │ │ │ │ │ ├── test_suite_ecdh.function │ │ │ │ │ ├── test_suite_ecdsa.data │ │ │ │ │ ├── test_suite_ecdsa.function │ │ │ │ │ ├── test_suite_ecjpake.data │ │ │ │ │ ├── test_suite_ecjpake.function │ │ │ │ │ ├── test_suite_ecp.data │ │ │ │ │ ├── test_suite_ecp.function │ │ │ │ │ ├── test_suite_entropy.data │ │ │ │ │ ├── test_suite_entropy.function │ │ │ │ │ ├── test_suite_error.data │ │ │ │ │ ├── test_suite_error.function │ │ │ │ │ ├── test_suite_gcm.aes128_de.data │ │ │ │ │ ├── test_suite_gcm.aes128_en.data │ │ │ │ │ ├── test_suite_gcm.aes192_de.data │ │ │ │ │ ├── test_suite_gcm.aes192_en.data │ │ │ │ │ ├── test_suite_gcm.aes256_de.data │ │ │ │ │ ├── test_suite_gcm.aes256_en.data │ │ │ │ │ ├── test_suite_gcm.camellia.data │ │ │ │ │ ├── test_suite_gcm.function │ │ │ │ │ ├── test_suite_hmac_drbg.function │ │ │ │ │ ├── test_suite_hmac_drbg.misc.data │ │ │ │ │ ├── test_suite_hmac_drbg.no_reseed.data │ │ │ │ │ ├── test_suite_hmac_drbg.nopr.data │ │ │ │ │ ├── test_suite_hmac_drbg.pr.data │ │ │ │ │ ├── test_suite_md.data │ │ │ │ │ ├── test_suite_md.function │ │ │ │ │ ├── test_suite_mdx.data │ │ │ │ │ ├── test_suite_mdx.function │ │ │ │ │ ├── test_suite_memory_buffer_alloc.data │ │ │ │ │ ├── test_suite_memory_buffer_alloc.function │ │ │ │ │ ├── test_suite_mpi.data │ │ │ │ │ ├── test_suite_mpi.function │ │ │ │ │ ├── test_suite_pem.data │ │ │ │ │ ├── test_suite_pem.function │ │ │ │ │ ├── test_suite_pk.data │ │ │ │ │ ├── test_suite_pk.function │ │ │ │ │ ├── test_suite_pkcs1_v15.data │ │ │ │ │ ├── test_suite_pkcs1_v15.function │ │ │ │ │ ├── test_suite_pkcs1_v21.data │ │ │ │ │ ├── test_suite_pkcs1_v21.function │ │ │ │ │ ├── test_suite_pkcs5.data │ │ │ │ │ ├── test_suite_pkcs5.function │ │ │ │ │ ├── test_suite_pkparse.data │ │ │ │ │ ├── test_suite_pkparse.function │ │ │ │ │ ├── test_suite_pkwrite.data │ │ │ │ │ ├── test_suite_pkwrite.function │ │ │ │ │ ├── test_suite_rsa.data │ │ │ │ │ ├── test_suite_rsa.function │ │ │ │ │ ├── test_suite_shax.data │ │ │ │ │ ├── test_suite_shax.function │ │ │ │ │ ├── test_suite_ssl.data │ │ │ │ │ ├── test_suite_ssl.function │ │ │ │ │ ├── test_suite_version.data │ │ │ │ │ ├── test_suite_version.function │ │ │ │ │ ├── test_suite_x509parse.data │ │ │ │ │ ├── test_suite_x509parse.function │ │ │ │ │ ├── test_suite_x509write.data │ │ │ │ │ ├── test_suite_x509write.function │ │ │ │ │ ├── test_suite_xtea.data │ │ │ │ │ └── test_suite_xtea.function │ │ │ ├── sbtool │ │ │ │ ├── EncoreBootImageReader.cpp │ │ │ │ ├── EncoreBootImageReader.h │ │ │ │ └── sbtool.cpp │ │ │ ├── stdafx.h │ │ │ └── winsupport │ │ │ │ └── unistd.h │ │ │ └── sdphost │ │ │ ├── gcc │ │ │ └── Makefile │ │ │ └── sdphost │ │ │ ├── sdphost.cpp │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ ├── sdmmc │ │ ├── inc │ │ │ ├── fsl_mmc.h │ │ │ ├── fsl_sd.h │ │ │ ├── fsl_sdio.h │ │ │ ├── fsl_sdmmc_common.h │ │ │ ├── fsl_sdmmc_host.h │ │ │ └── fsl_sdmmc_spec.h │ │ ├── port │ │ │ ├── fsl_sdmmc_event.h │ │ │ └── usdhc │ │ │ │ ├── freertos │ │ │ │ ├── fsl_sdmmc_event.c │ │ │ │ └── fsl_sdmmc_host.c │ │ │ │ ├── interrupt │ │ │ │ ├── fsl_sdmmc_event.c │ │ │ │ └── fsl_sdmmc_host.c │ │ │ │ └── polling │ │ │ │ ├── fsl_sdmmc_event.c │ │ │ │ └── fsl_sdmmc_host.c │ │ └── src │ │ │ ├── fsl_mmc.c │ │ │ ├── fsl_sd.c │ │ │ ├── fsl_sdio.c │ │ │ └── fsl_sdmmc_common.c │ └── usb │ │ ├── device │ │ ├── usb_device.h │ │ ├── usb_device_dci.c │ │ ├── usb_device_dci.h │ │ ├── usb_device_ehci.c │ │ ├── usb_device_ehci.h │ │ ├── usb_device_khci.c │ │ ├── usb_device_khci.h │ │ ├── usb_device_lpcip3511.c │ │ └── usb_device_lpcip3511.h │ │ ├── host │ │ ├── class │ │ │ ├── usb_host_audio.c │ │ │ ├── usb_host_audio.h │ │ │ ├── usb_host_cdc.c │ │ │ ├── usb_host_cdc.h │ │ │ ├── usb_host_cdc_rndis.c │ │ │ ├── usb_host_cdc_rndis.h │ │ │ ├── usb_host_hid.c │ │ │ ├── usb_host_hid.h │ │ │ ├── usb_host_hub.c │ │ │ ├── usb_host_hub.h │ │ │ ├── usb_host_hub_app.c │ │ │ ├── usb_host_hub_app.h │ │ │ ├── usb_host_msd.c │ │ │ ├── usb_host_msd.h │ │ │ ├── usb_host_msd_ufi.c │ │ │ ├── usb_host_phdc.c │ │ │ ├── usb_host_phdc.h │ │ │ ├── usb_host_printer.c │ │ │ └── usb_host_printer.h │ │ ├── usb_host.h │ │ ├── usb_host_devices.c │ │ ├── usb_host_devices.h │ │ ├── usb_host_ehci.c │ │ ├── usb_host_ehci.h │ │ ├── usb_host_framework.c │ │ ├── usb_host_framework.h │ │ ├── usb_host_hci.c │ │ ├── usb_host_hci.h │ │ ├── usb_host_ip3516hs.c │ │ ├── usb_host_ip3516hs.h │ │ ├── usb_host_khci.c │ │ ├── usb_host_khci.h │ │ ├── usb_host_ohci.c │ │ └── usb_host_ohci.h │ │ ├── include │ │ ├── usb.h │ │ ├── usb_misc.h │ │ └── usb_spec.h │ │ ├── osa │ │ ├── usb_osa.h │ │ ├── usb_osa_bm.c │ │ └── usb_osa_bm.h │ │ ├── phy │ │ ├── usb_phy.c │ │ └── usb_phy.h │ │ └── templates │ │ ├── config │ │ ├── usb_device_config.h │ │ └── usb_host_config.h │ │ └── device │ │ ├── class │ │ ├── usb_device_audio.c │ │ ├── usb_device_audio.h │ │ ├── usb_device_ccid.c │ │ ├── usb_device_ccid.h │ │ ├── usb_device_cdc_acm.c │ │ ├── usb_device_cdc_acm.h │ │ ├── usb_device_cdc_rndis.c │ │ ├── usb_device_cdc_rndis.h │ │ ├── usb_device_class.c │ │ ├── usb_device_class.h │ │ ├── usb_device_hid.c │ │ ├── usb_device_hid.h │ │ ├── usb_device_msc.c │ │ ├── usb_device_msc.h │ │ ├── usb_device_msc_ufi.c │ │ ├── usb_device_msc_ufi.h │ │ ├── usb_device_phdc.c │ │ ├── usb_device_phdc.h │ │ ├── usb_device_printer.c │ │ ├── usb_device_printer.h │ │ ├── usb_device_video.c │ │ └── usb_device_video.h │ │ ├── usb_device_ch9.c │ │ └── usb_device_ch9.h │ └── tools │ └── cmake_toolchain_files │ ├── armgcc.cmake │ ├── armgcc_force_cpp.cmake │ └── xcc.cmake └── variants ├── arch_mix ├── board │ ├── board.c │ ├── board.h │ ├── clock_config.c │ └── clock_config.h ├── flexspi_nor.ld ├── flexspi_nor_arduino.ld ├── flexspi_nor_sdram.ld ├── pins_arduino.h ├── ram.ld ├── sdram.ld ├── sdram_txt.ld ├── startup.S ├── variant.c ├── variant.h └── xip │ ├── evkbimxrt1050_flexspi_nor_config.c │ ├── evkbimxrt1050_flexspi_nor_config.h │ ├── evkbimxrt1050_sdram_ini_dcd.c │ ├── evkbimxrt1050_sdram_ini_dcd.h │ ├── fsl_flexspi_nor_boot.c │ └── fsl_flexspi_nor_boot.h ├── rt1062 └── readme.md └── rt1064 └── readme.md /.github/workflows/sync_issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/.github/workflows/sync_issues.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/README.md -------------------------------------------------------------------------------- /boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/boards.txt -------------------------------------------------------------------------------- /bootloaders/arch_mix/board/MIMXRT1052/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/board/MIMXRT1052/board.c -------------------------------------------------------------------------------- /bootloaders/arch_mix/board/MIMXRT1052/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/board/MIMXRT1052/board.h -------------------------------------------------------------------------------- /bootloaders/arch_mix/board/MIMXRT1052/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/board/MIMXRT1052/clock_config.c -------------------------------------------------------------------------------- /bootloaders/arch_mix/board/MIMXRT1052/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/board/MIMXRT1052/clock_config.h -------------------------------------------------------------------------------- /bootloaders/arch_mix/board/MIMXRT1052/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/board/MIMXRT1052/pin_mux.c -------------------------------------------------------------------------------- /bootloaders/arch_mix/board/MIMXRT1052/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/board/MIMXRT1052/pin_mux.h -------------------------------------------------------------------------------- /bootloaders/arch_mix/board/MIMXRT1052/startup_MIMXRT1052.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/board/MIMXRT1052/startup_MIMXRT1052.s -------------------------------------------------------------------------------- /bootloaders/arch_mix/bootloader.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/bootloader.hex -------------------------------------------------------------------------------- /bootloaders/arch_mix/usb/usb_device_cdc_acm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/usb/usb_device_cdc_acm.c -------------------------------------------------------------------------------- /bootloaders/arch_mix/usb/usb_device_cdc_acm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/usb/usb_device_cdc_acm.h -------------------------------------------------------------------------------- /bootloaders/arch_mix/usb/usb_device_ch9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/usb/usb_device_ch9.c -------------------------------------------------------------------------------- /bootloaders/arch_mix/usb/usb_device_ch9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/usb/usb_device_ch9.h -------------------------------------------------------------------------------- /bootloaders/arch_mix/usb/usb_device_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/usb/usb_device_class.c -------------------------------------------------------------------------------- /bootloaders/arch_mix/usb/usb_device_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/usb/usb_device_class.h -------------------------------------------------------------------------------- /bootloaders/arch_mix/usb/usb_device_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/usb/usb_device_config.h -------------------------------------------------------------------------------- /bootloaders/arch_mix/usb/usb_device_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/usb/usb_device_descriptor.c -------------------------------------------------------------------------------- /bootloaders/arch_mix/usb/usb_device_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/usb/usb_device_descriptor.h -------------------------------------------------------------------------------- /bootloaders/arch_mix/usb/virtual_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/usb/virtual_com.c -------------------------------------------------------------------------------- /bootloaders/arch_mix/usb/virtual_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/usb/virtual_com.h -------------------------------------------------------------------------------- /bootloaders/arch_mix/user/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/user/app.h -------------------------------------------------------------------------------- /bootloaders/arch_mix/user/app.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/user/app.s -------------------------------------------------------------------------------- /bootloaders/arch_mix/user/board_drive_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/user/board_drive_led.c -------------------------------------------------------------------------------- /bootloaders/arch_mix/user/board_drive_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/user/board_drive_led.h -------------------------------------------------------------------------------- /bootloaders/arch_mix/user/bootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/user/bootloader.c -------------------------------------------------------------------------------- /bootloaders/arch_mix/user/flexspi_hyper_flash_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/user/flexspi_hyper_flash_ops.c -------------------------------------------------------------------------------- /bootloaders/arch_mix/user/imxrt_ba_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/user/imxrt_ba_cdc.c -------------------------------------------------------------------------------- /bootloaders/arch_mix/user/imxrt_ba_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/user/imxrt_ba_cdc.h -------------------------------------------------------------------------------- /bootloaders/arch_mix/user/imxrt_ba_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/user/imxrt_ba_flash.c -------------------------------------------------------------------------------- /bootloaders/arch_mix/user/imxrt_ba_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/user/imxrt_ba_flash.h -------------------------------------------------------------------------------- /bootloaders/arch_mix/user/imxrt_ba_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/user/imxrt_ba_monitor.c -------------------------------------------------------------------------------- /bootloaders/arch_mix/user/imxrt_ba_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/arch_mix/user/imxrt_ba_monitor.h -------------------------------------------------------------------------------- /bootloaders/rt1062/board/MIMXRT1062/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/board/MIMXRT1062/board.c -------------------------------------------------------------------------------- /bootloaders/rt1062/board/MIMXRT1062/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/board/MIMXRT1062/board.h -------------------------------------------------------------------------------- /bootloaders/rt1062/board/MIMXRT1062/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/board/MIMXRT1062/clock_config.c -------------------------------------------------------------------------------- /bootloaders/rt1062/board/MIMXRT1062/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/board/MIMXRT1062/clock_config.h -------------------------------------------------------------------------------- /bootloaders/rt1062/board/MIMXRT1062/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/board/MIMXRT1062/pin_mux.c -------------------------------------------------------------------------------- /bootloaders/rt1062/board/MIMXRT1062/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/board/MIMXRT1062/pin_mux.h -------------------------------------------------------------------------------- /bootloaders/rt1062/board/MIMXRT1062/startup_MIMXRT1062.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/board/MIMXRT1062/startup_MIMXRT1062.s -------------------------------------------------------------------------------- /bootloaders/rt1062/bootloader.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/bootloader.hex -------------------------------------------------------------------------------- /bootloaders/rt1062/usb/usb_device_cdc_acm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/usb/usb_device_cdc_acm.c -------------------------------------------------------------------------------- /bootloaders/rt1062/usb/usb_device_cdc_acm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/usb/usb_device_cdc_acm.h -------------------------------------------------------------------------------- /bootloaders/rt1062/usb/usb_device_ch9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/usb/usb_device_ch9.c -------------------------------------------------------------------------------- /bootloaders/rt1062/usb/usb_device_ch9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/usb/usb_device_ch9.h -------------------------------------------------------------------------------- /bootloaders/rt1062/usb/usb_device_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/usb/usb_device_class.c -------------------------------------------------------------------------------- /bootloaders/rt1062/usb/usb_device_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/usb/usb_device_class.h -------------------------------------------------------------------------------- /bootloaders/rt1062/usb/usb_device_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/usb/usb_device_config.h -------------------------------------------------------------------------------- /bootloaders/rt1062/usb/usb_device_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/usb/usb_device_descriptor.c -------------------------------------------------------------------------------- /bootloaders/rt1062/usb/usb_device_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/usb/usb_device_descriptor.h -------------------------------------------------------------------------------- /bootloaders/rt1062/usb/virtual_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/usb/virtual_com.c -------------------------------------------------------------------------------- /bootloaders/rt1062/usb/virtual_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/usb/virtual_com.h -------------------------------------------------------------------------------- /bootloaders/rt1062/user/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/user/app.h -------------------------------------------------------------------------------- /bootloaders/rt1062/user/app.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/user/app.s -------------------------------------------------------------------------------- /bootloaders/rt1062/user/board_drive_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/user/board_drive_led.c -------------------------------------------------------------------------------- /bootloaders/rt1062/user/board_drive_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/user/board_drive_led.h -------------------------------------------------------------------------------- /bootloaders/rt1062/user/bootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/user/bootloader.c -------------------------------------------------------------------------------- /bootloaders/rt1062/user/flexspi_hyper_flash_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/user/flexspi_hyper_flash_ops.c -------------------------------------------------------------------------------- /bootloaders/rt1062/user/flexspi_hyper_flash_ops.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootloaders/rt1062/user/imxrt_ba_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/user/imxrt_ba_cdc.c -------------------------------------------------------------------------------- /bootloaders/rt1062/user/imxrt_ba_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/user/imxrt_ba_cdc.h -------------------------------------------------------------------------------- /bootloaders/rt1062/user/imxrt_ba_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/user/imxrt_ba_flash.c -------------------------------------------------------------------------------- /bootloaders/rt1062/user/imxrt_ba_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/user/imxrt_ba_flash.h -------------------------------------------------------------------------------- /bootloaders/rt1062/user/imxrt_ba_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/user/imxrt_ba_monitor.c -------------------------------------------------------------------------------- /bootloaders/rt1062/user/imxrt_ba_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/user/imxrt_ba_monitor.h -------------------------------------------------------------------------------- /bootloaders/rt1062/xip/fsl_flexspi_nor_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/xip/fsl_flexspi_nor_boot.c -------------------------------------------------------------------------------- /bootloaders/rt1062/xip/fsl_flexspi_nor_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/xip/fsl_flexspi_nor_boot.h -------------------------------------------------------------------------------- /bootloaders/rt1062/xip/imxrt1062_sdram_ini_dcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/xip/imxrt1062_sdram_ini_dcd.c -------------------------------------------------------------------------------- /bootloaders/rt1062/xip/imxrt1062_sdram_ini_dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/xip/imxrt1062_sdram_ini_dcd.h -------------------------------------------------------------------------------- /bootloaders/rt1062/xip/imxrt1062_spiflash_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/xip/imxrt1062_spiflash_config.c -------------------------------------------------------------------------------- /bootloaders/rt1062/xip/imxrt1062_spiflash_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/bootloaders/rt1062/xip/imxrt1062_spiflash_config.h -------------------------------------------------------------------------------- /bootloaders/rt1064/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /cores/arduino/Binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/Binary.h -------------------------------------------------------------------------------- /cores/arduino/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/Client.h -------------------------------------------------------------------------------- /cores/arduino/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/Common.cpp -------------------------------------------------------------------------------- /cores/arduino/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/Common.h -------------------------------------------------------------------------------- /cores/arduino/HardwareI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/HardwareI2C.h -------------------------------------------------------------------------------- /cores/arduino/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/HardwareSerial.h -------------------------------------------------------------------------------- /cores/arduino/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/IPAddress.cpp -------------------------------------------------------------------------------- /cores/arduino/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/IPAddress.h -------------------------------------------------------------------------------- /cores/arduino/Interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/Interrupts.h -------------------------------------------------------------------------------- /cores/arduino/PluggableUSB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/PluggableUSB.cpp -------------------------------------------------------------------------------- /cores/arduino/PluggableUSB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/PluggableUSB.h -------------------------------------------------------------------------------- /cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/Print.h -------------------------------------------------------------------------------- /cores/arduino/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/Printable.h -------------------------------------------------------------------------------- /cores/arduino/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/RingBuffer.h -------------------------------------------------------------------------------- /cores/arduino/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/Server.h -------------------------------------------------------------------------------- /cores/arduino/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/Stream.cpp -------------------------------------------------------------------------------- /cores/arduino/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/Stream.h -------------------------------------------------------------------------------- /cores/arduino/USB/usb_device_cdc_acm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/USB/usb_device_cdc_acm.c -------------------------------------------------------------------------------- /cores/arduino/USB/usb_device_cdc_acm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/USB/usb_device_cdc_acm.h -------------------------------------------------------------------------------- /cores/arduino/USB/usb_device_ch9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/USB/usb_device_ch9.c -------------------------------------------------------------------------------- /cores/arduino/USB/usb_device_ch9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/USB/usb_device_ch9.h -------------------------------------------------------------------------------- /cores/arduino/USB/usb_device_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/USB/usb_device_class.c -------------------------------------------------------------------------------- /cores/arduino/USB/usb_device_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/USB/usb_device_class.h -------------------------------------------------------------------------------- /cores/arduino/USB/usb_device_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/USB/usb_device_config.h -------------------------------------------------------------------------------- /cores/arduino/USB/usb_device_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/USB/usb_device_descriptor.c -------------------------------------------------------------------------------- /cores/arduino/USB/usb_device_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/USB/usb_device_descriptor.h -------------------------------------------------------------------------------- /cores/arduino/USB/usb_host_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/USB/usb_host_config.h -------------------------------------------------------------------------------- /cores/arduino/USB/virtual_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/USB/virtual_com.c -------------------------------------------------------------------------------- /cores/arduino/USB/virtual_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/USB/virtual_com.h -------------------------------------------------------------------------------- /cores/arduino/USBAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/USBAPI.h -------------------------------------------------------------------------------- /cores/arduino/USBCDC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/USBCDC.cpp -------------------------------------------------------------------------------- /cores/arduino/USBCDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/USBCDC.h -------------------------------------------------------------------------------- /cores/arduino/Uart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/Uart.cpp -------------------------------------------------------------------------------- /cores/arduino/Uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/Uart.h -------------------------------------------------------------------------------- /cores/arduino/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/Udp.h -------------------------------------------------------------------------------- /cores/arduino/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/WCharacter.h -------------------------------------------------------------------------------- /cores/arduino/WMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/WMath.cpp -------------------------------------------------------------------------------- /cores/arduino/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/WString.cpp -------------------------------------------------------------------------------- /cores/arduino/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/WString.h -------------------------------------------------------------------------------- /cores/arduino/WVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/WVariant.h -------------------------------------------------------------------------------- /cores/arduino/abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/abi.cpp -------------------------------------------------------------------------------- /cores/arduino/deprecated-avr-comp/avr/dtostrf.c.impl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/deprecated-avr-comp/avr/dtostrf.c.impl -------------------------------------------------------------------------------- /cores/arduino/deprecated-avr-comp/avr/dtostrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/deprecated-avr-comp/avr/dtostrf.h -------------------------------------------------------------------------------- /cores/arduino/deprecated-avr-comp/avr/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/deprecated-avr-comp/avr/interrupt.h -------------------------------------------------------------------------------- /cores/arduino/deprecated-avr-comp/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/deprecated-avr-comp/avr/pgmspace.h -------------------------------------------------------------------------------- /cores/arduino/deprecated/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/deprecated/Client.h -------------------------------------------------------------------------------- /cores/arduino/deprecated/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/deprecated/HardwareSerial.h -------------------------------------------------------------------------------- /cores/arduino/deprecated/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/deprecated/IPAddress.h -------------------------------------------------------------------------------- /cores/arduino/deprecated/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/deprecated/Print.h -------------------------------------------------------------------------------- /cores/arduino/deprecated/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/deprecated/Printable.h -------------------------------------------------------------------------------- /cores/arduino/deprecated/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/deprecated/Server.h -------------------------------------------------------------------------------- /cores/arduino/deprecated/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/deprecated/Stream.h -------------------------------------------------------------------------------- /cores/arduino/deprecated/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/deprecated/Udp.h -------------------------------------------------------------------------------- /cores/arduino/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/hooks.c -------------------------------------------------------------------------------- /cores/arduino/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/itoa.h -------------------------------------------------------------------------------- /cores/arduino/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/main.cpp -------------------------------------------------------------------------------- /cores/arduino/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/new.cpp -------------------------------------------------------------------------------- /cores/arduino/wiring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/wiring.c -------------------------------------------------------------------------------- /cores/arduino/wiring_analog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/wiring_analog.c -------------------------------------------------------------------------------- /cores/arduino/wiring_analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/wiring_analog.h -------------------------------------------------------------------------------- /cores/arduino/wiring_digital.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/wiring_digital.c -------------------------------------------------------------------------------- /cores/arduino/wiring_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/wiring_private.c -------------------------------------------------------------------------------- /cores/arduino/wiring_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/cores/arduino/wiring_private.h -------------------------------------------------------------------------------- /drivers/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extras/images/GIF 2019-10-15 14-53-19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/extras/images/GIF 2019-10-15 14-53-19.gif -------------------------------------------------------------------------------- /extras/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/SPI/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/libraries/SPI/SPI.cpp -------------------------------------------------------------------------------- /libraries/SPI/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/libraries/SPI/SPI.h -------------------------------------------------------------------------------- /libraries/SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/libraries/SPI/keywords.txt -------------------------------------------------------------------------------- /libraries/SPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/libraries/SPI/library.properties -------------------------------------------------------------------------------- /libraries/Wire/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/libraries/Wire/Wire.cpp -------------------------------------------------------------------------------- /libraries/Wire/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/libraries/Wire/Wire.h -------------------------------------------------------------------------------- /libraries/Wire/examples/master_reader/master_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/libraries/Wire/examples/master_reader/master_reader.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/master_writer/master_writer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/libraries/Wire/examples/master_writer/master_writer.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/slave_receiver/slave_receiver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/libraries/Wire/examples/slave_receiver/slave_receiver.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/slave_sender/slave_sender.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/libraries/Wire/examples/slave_sender/slave_sender.ino -------------------------------------------------------------------------------- /libraries/Wire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/libraries/Wire/keywords.txt -------------------------------------------------------------------------------- /libraries/Wire/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/libraries/Wire/library.properties -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/package.json -------------------------------------------------------------------------------- /platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/platform.txt -------------------------------------------------------------------------------- /programmers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/programmers.txt -------------------------------------------------------------------------------- /sdk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/sdk.cmake -------------------------------------------------------------------------------- /tools/cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/cmake/README.md -------------------------------------------------------------------------------- /tools/cmake/arm-none-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/cmake/arm-none-toolchain.cmake -------------------------------------------------------------------------------- /tools/cmake/common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/cmake/common.cmake -------------------------------------------------------------------------------- /tools/cmake/compile-flags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/cmake/compile-flags.cmake -------------------------------------------------------------------------------- /tools/cmake/dump-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/cmake/dump-config.cmake -------------------------------------------------------------------------------- /tools/cmake/executable.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/cmake/executable.cmake -------------------------------------------------------------------------------- /tools/cmake/fix-9985.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/cmake/fix-9985.cmake -------------------------------------------------------------------------------- /tools/cmake/macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/cmake/macros.cmake -------------------------------------------------------------------------------- /tools/cmake/macros.internal.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/cmake/macros.internal.cmake -------------------------------------------------------------------------------- /tools/lib/MIMXRT1052/libfsl_bsp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/lib/MIMXRT1052/libfsl_bsp.a -------------------------------------------------------------------------------- /tools/lib/MIMXRT1052/libfsl_usb_drivers.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/lib/MIMXRT1052/libfsl_usb_drivers.a -------------------------------------------------------------------------------- /tools/lib/MIMXRT1052/libfsl_xip_drivers.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/lib/MIMXRT1052/libfsl_xip_drivers.a -------------------------------------------------------------------------------- /tools/sdk/CMSIS/DSP_Lib/Source/ARM/arm_cortexM_math.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/DSP_Lib/Source/ARM/arm_cortexM_math.uvoptx -------------------------------------------------------------------------------- /tools/sdk/CMSIS/DSP_Lib/Source/GCC/arm_cortexM_math.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/DSP_Lib/Source/GCC/arm_cortexM_math.uvoptx -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/DriverTemplates/Driver_CAN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/DriverTemplates/Driver_CAN.c -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/DriverTemplates/Driver_ETH_MAC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/DriverTemplates/Driver_ETH_MAC.c -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/DriverTemplates/Driver_ETH_PHY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/DriverTemplates/Driver_ETH_PHY.c -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/DriverTemplates/Driver_Flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/DriverTemplates/Driver_Flash.c -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/DriverTemplates/Driver_I2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/DriverTemplates/Driver_I2C.c -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/DriverTemplates/Driver_MCI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/DriverTemplates/Driver_MCI.c -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/DriverTemplates/Driver_SAI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/DriverTemplates/Driver_SAI.c -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/DriverTemplates/Driver_SPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/DriverTemplates/Driver_SPI.c -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/DriverTemplates/Driver_Storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/DriverTemplates/Driver_Storage.c -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/DriverTemplates/Driver_USART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/DriverTemplates/Driver_USART.c -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/DriverTemplates/Driver_USBD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/DriverTemplates/Driver_USBD.c -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/DriverTemplates/Driver_USBH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/DriverTemplates/Driver_USBH.c -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/Include/Driver_CAN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/Include/Driver_CAN.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/Include/Driver_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/Include/Driver_Common.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/Include/Driver_ETH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/Include/Driver_ETH.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/Include/Driver_ETH_MAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/Include/Driver_ETH_MAC.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/Include/Driver_ETH_PHY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/Include/Driver_ETH_PHY.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/Include/Driver_Flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/Include/Driver_Flash.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/Include/Driver_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/Include/Driver_I2C.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/Include/Driver_MCI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/Include/Driver_MCI.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/Include/Driver_NAND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/Include/Driver_NAND.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/Include/Driver_SAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/Include/Driver_SAI.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/Include/Driver_SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/Include/Driver_SPI.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/Include/Driver_USART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/Include/Driver_USART.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/Include/Driver_USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/Include/Driver_USB.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/Include/Driver_USBD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/Include/Driver_USBD.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Driver/Include/Driver_USBH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Driver/Include/Driver_USBH.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/core_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/core_dsp.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /tools/sdk/CMSIS/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/LICENSE.txt -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Lib/GCC/libarm_cortexM7lfdp_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Lib/GCC/libarm_cortexM7lfdp_math.a -------------------------------------------------------------------------------- /tools/sdk/CMSIS/Lib/GCC/libarm_cortexM7lfsp_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/CMSIS/Lib/GCC/libarm_cortexM7lfsp_math.a -------------------------------------------------------------------------------- /tools/sdk/components/codec/cs42888/fsl_cs42888.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/codec/cs42888/fsl_cs42888.c -------------------------------------------------------------------------------- /tools/sdk/components/codec/cs42888/fsl_cs42888.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/codec/cs42888/fsl_cs42888.h -------------------------------------------------------------------------------- /tools/sdk/components/codec/fsl_codec_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/codec/fsl_codec_common.c -------------------------------------------------------------------------------- /tools/sdk/components/codec/fsl_codec_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/codec/fsl_codec_common.h -------------------------------------------------------------------------------- /tools/sdk/components/codec/i2c/fsl_codec_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/codec/i2c/fsl_codec_i2c.c -------------------------------------------------------------------------------- /tools/sdk/components/codec/i2c/fsl_codec_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/codec/i2c/fsl_codec_i2c.h -------------------------------------------------------------------------------- /tools/sdk/components/codec/port/fsl_codec_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/codec/port/fsl_codec_adapter.h -------------------------------------------------------------------------------- /tools/sdk/components/codec/port/wm8960/fsl_codec_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/codec/port/wm8960/fsl_codec_adapter.c -------------------------------------------------------------------------------- /tools/sdk/components/codec/wm8960/fsl_wm8960.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/codec/wm8960/fsl_wm8960.c -------------------------------------------------------------------------------- /tools/sdk/components/codec/wm8960/fsl_wm8960.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/codec/wm8960/fsl_wm8960.h -------------------------------------------------------------------------------- /tools/sdk/components/ft5406_rt/fsl_ft5406_rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/ft5406_rt/fsl_ft5406_rt.c -------------------------------------------------------------------------------- /tools/sdk/components/ft5406_rt/fsl_ft5406_rt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/ft5406_rt/fsl_ft5406_rt.h -------------------------------------------------------------------------------- /tools/sdk/components/fxos8700cq/fsl_fxos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/fxos8700cq/fsl_fxos.c -------------------------------------------------------------------------------- /tools/sdk/components/fxos8700cq/fsl_fxos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/fxos8700cq/fsl_fxos.h -------------------------------------------------------------------------------- /tools/sdk/components/i2c/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/i2c/i2c.h -------------------------------------------------------------------------------- /tools/sdk/components/i2c/lpi2c_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/i2c/lpi2c_adapter.c -------------------------------------------------------------------------------- /tools/sdk/components/lists/generic_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/lists/generic_list.c -------------------------------------------------------------------------------- /tools/sdk/components/lists/generic_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/lists/generic_list.h -------------------------------------------------------------------------------- /tools/sdk/components/phyksz8081/fsl_phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/phyksz8081/fsl_phy.c -------------------------------------------------------------------------------- /tools/sdk/components/phyksz8081/fsl_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/phyksz8081/fsl_phy.h -------------------------------------------------------------------------------- /tools/sdk/components/serial_manager/serial_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/serial_manager/serial_manager.c -------------------------------------------------------------------------------- /tools/sdk/components/serial_manager/serial_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/serial_manager/serial_manager.h -------------------------------------------------------------------------------- /tools/sdk/components/serial_manager/serial_port_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/serial_manager/serial_port_internal.h -------------------------------------------------------------------------------- /tools/sdk/components/serial_manager/serial_port_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/serial_manager/serial_port_uart.c -------------------------------------------------------------------------------- /tools/sdk/components/serial_manager/serial_port_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/serial_manager/serial_port_uart.h -------------------------------------------------------------------------------- /tools/sdk/components/serial_manager/serial_port_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/serial_manager/serial_port_usb.c -------------------------------------------------------------------------------- /tools/sdk/components/serial_manager/serial_port_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/serial_manager/serial_port_usb.h -------------------------------------------------------------------------------- /tools/sdk/components/uart/lpuart_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/uart/lpuart_adapter.c -------------------------------------------------------------------------------- /tools/sdk/components/uart/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/uart/uart.h -------------------------------------------------------------------------------- /tools/sdk/components/video/camera/device/sccb/fsl_sccb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/video/camera/device/sccb/fsl_sccb.c -------------------------------------------------------------------------------- /tools/sdk/components/video/camera/device/sccb/fsl_sccb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/video/camera/device/sccb/fsl_sccb.h -------------------------------------------------------------------------------- /tools/sdk/components/video/camera/fsl_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/video/camera/fsl_camera.h -------------------------------------------------------------------------------- /tools/sdk/components/video/fsl_video_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/video/fsl_video_common.c -------------------------------------------------------------------------------- /tools/sdk/components/video/fsl_video_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/video/fsl_video_common.h -------------------------------------------------------------------------------- /tools/sdk/components/video/i2c/fsl_video_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/video/i2c/fsl_video_i2c.c -------------------------------------------------------------------------------- /tools/sdk/components/video/i2c/fsl_video_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/components/video/i2c/fsl_video_i2c.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/MIMXRT1052.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/MIMXRT1052.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/MIMXRT1052.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/MIMXRT1052.xml -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/MIMXRT1052_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/MIMXRT1052_features.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_adc.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_adc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_adc_etc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_adc_etc.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_adc_etc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_adc_etc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_aipstz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_aipstz.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_aipstz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_aipstz.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_aoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_aoi.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_aoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_aoi.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_bee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_bee.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_bee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_bee.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_cache.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_cache.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_clock.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_clock.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_cmp.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_cmp.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_common.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_common.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_csi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_csi.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_csi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_csi.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_dcdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_dcdc.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_dcdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_dcdc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_dcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_dcp.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_dcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_dcp.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_dmamux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_dmamux.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_dmamux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_dmamux.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_edma.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_edma.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_elcdif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_elcdif.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_elcdif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_elcdif.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_enc.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_enc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_enet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_enet.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_enet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_enet.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_ewm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_ewm.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_ewm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_ewm.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexcan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexcan.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexcan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexcan.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_camera.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_camera.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_i2s.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_i2s.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_i2s_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_i2s_edma.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_i2s_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_i2s_edma.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_mculcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_mculcd.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_mculcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_mculcd.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_spi.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_spi.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_spi_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_spi_edma.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_spi_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_spi_edma.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_uart.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexio_uart.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexram.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexram.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexspi.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_flexspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_flexspi.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_gpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_gpc.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_gpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_gpc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_gpio.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_gpio.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_gpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_gpt.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_gpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_gpt.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_iomuxc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_iomuxc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_kpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_kpp.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_kpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_kpp.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_lpi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_lpi2c.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_lpi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_lpi2c.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_lpi2c_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_lpi2c_edma.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_lpi2c_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_lpi2c_edma.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_lpspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_lpspi.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_lpspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_lpspi.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_lpspi_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_lpspi_edma.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_lpspi_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_lpspi_edma.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_lpuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_lpuart.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_lpuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_lpuart.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_lpuart_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_lpuart_edma.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_lpuart_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_lpuart_edma.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_ocotp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_ocotp.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_ocotp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_ocotp.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_pit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_pit.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_pit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_pit.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_pmu.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_pmu.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_pwm.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_pwm.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_pxp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_pxp.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_pxp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_pxp.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_qtmr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_qtmr.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_qtmr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_qtmr.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_rtwdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_rtwdog.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_rtwdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_rtwdog.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_sai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_sai.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_sai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_sai.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_sai_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_sai_edma.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_sai_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_sai_edma.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_semc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_semc.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_semc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_semc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_snvs_hp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_snvs_hp.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_snvs_hp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_snvs_hp.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_snvs_lp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_snvs_lp.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_snvs_lp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_snvs_lp.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_spdif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_spdif.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_spdif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_spdif.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_spdif_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_spdif_edma.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_spdif_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_spdif_edma.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_src.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_src.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_src.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_src.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_tempmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_tempmon.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_tempmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_tempmon.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_trng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_trng.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_trng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_trng.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_tsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_tsc.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_tsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_tsc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_usdhc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_usdhc.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_usdhc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_usdhc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_wdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_wdog.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_wdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_wdog.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_xbara.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_xbara.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_xbara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_xbara.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_xbarb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_xbarb.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/drivers/fsl_xbarb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/drivers/fsl_xbarb.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/fsl_device_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/fsl_device_registers.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/gcc/MIMXRT1052xxxxx_ram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/gcc/MIMXRT1052xxxxx_ram.ld -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/gcc/MIMXRT1052xxxxx_sdram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/gcc/MIMXRT1052xxxxx_sdram.ld -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/gcc/startup_MIMXRT1052.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/gcc/startup_MIMXRT1052.S -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/project_template/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/project_template/board.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/project_template/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/project_template/board.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/project_template/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/project_template/pin_mux.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/project_template/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/project_template/pin_mux.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/system_MIMXRT1052.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/system_MIMXRT1052.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/system_MIMXRT1052.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/system_MIMXRT1052.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/template/RTE_Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/template/RTE_Device.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/utilities/fsl_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/utilities/fsl_assert.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/utilities/fsl_notifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/utilities/fsl_notifier.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/utilities/fsl_notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/utilities/fsl_notifier.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/utilities/fsl_sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/utilities/fsl_sbrk.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/utilities/fsl_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/utilities/fsl_shell.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/utilities/fsl_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/utilities/fsl_shell.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/utilities/str/fsl_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/utilities/str/fsl_str.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/utilities/str/fsl_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/utilities/str/fsl_str.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/xip/fsl_flexspi_nor_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/xip/fsl_flexspi_nor_boot.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1052/xip/fsl_flexspi_nor_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1052/xip/fsl_flexspi_nor_boot.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/MIMXRT1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/MIMXRT1062.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/MIMXRT1062.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/MIMXRT1062.xml -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/MIMXRT1062_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/MIMXRT1062_features.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_adc.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_adc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_adc_etc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_adc_etc.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_adc_etc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_adc_etc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_aipstz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_aipstz.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_aipstz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_aipstz.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_aoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_aoi.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_aoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_aoi.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_bee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_bee.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_bee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_bee.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_cache.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_cache.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_clock.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_clock.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_cmp.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_cmp.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_common.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_common.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_csi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_csi.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_csi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_csi.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_dcdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_dcdc.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_dcdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_dcdc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_dcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_dcp.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_dcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_dcp.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_dmamux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_dmamux.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_dmamux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_dmamux.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_edma.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_edma.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_elcdif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_elcdif.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_elcdif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_elcdif.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_enc.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_enc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_enet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_enet.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_enet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_enet.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_ewm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_ewm.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_ewm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_ewm.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexcan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexcan.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexcan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexcan.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexcan_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexcan_edma.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexcan_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexcan_edma.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_camera.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_camera.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_i2s.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_i2s.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_i2s_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_i2s_edma.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_i2s_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_i2s_edma.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_mculcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_mculcd.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_mculcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_mculcd.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_spi.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_spi.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_spi_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_spi_edma.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_spi_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_spi_edma.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_uart.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexio_uart.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexram.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexram.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexspi.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_flexspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_flexspi.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_gpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_gpc.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_gpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_gpc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_gpio.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_gpio.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_gpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_gpt.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_gpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_gpt.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_iomuxc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_iomuxc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_kpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_kpp.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_kpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_kpp.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_lpi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_lpi2c.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_lpi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_lpi2c.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_lpi2c_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_lpi2c_edma.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_lpi2c_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_lpi2c_edma.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_lpspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_lpspi.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_lpspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_lpspi.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_lpspi_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_lpspi_edma.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_lpspi_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_lpspi_edma.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_lpuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_lpuart.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_lpuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_lpuart.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_lpuart_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_lpuart_edma.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_lpuart_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_lpuart_edma.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_ocotp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_ocotp.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_ocotp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_ocotp.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_pit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_pit.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_pit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_pit.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_pmu.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_pmu.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_pwm.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_pwm.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_pxp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_pxp.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_pxp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_pxp.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_qtmr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_qtmr.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_qtmr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_qtmr.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_rtwdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_rtwdog.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_rtwdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_rtwdog.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_sai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_sai.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_sai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_sai.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_sai_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_sai_edma.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_sai_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_sai_edma.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_semc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_semc.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_semc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_semc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_snvs_hp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_snvs_hp.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_snvs_hp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_snvs_hp.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_snvs_lp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_snvs_lp.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_snvs_lp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_snvs_lp.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_spdif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_spdif.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_spdif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_spdif.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_spdif_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_spdif_edma.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_spdif_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_spdif_edma.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_src.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_src.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_src.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_src.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_tempmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_tempmon.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_tempmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_tempmon.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_trng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_trng.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_trng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_trng.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_tsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_tsc.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_tsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_tsc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_usdhc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_usdhc.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_usdhc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_usdhc.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_wdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_wdog.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_wdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_wdog.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_xbara.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_xbara.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_xbara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_xbara.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_xbarb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_xbarb.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/drivers/fsl_xbarb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/drivers/fsl_xbarb.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/fsl_device_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/fsl_device_registers.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/gcc/MIMXRT1062xxxxx_ram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/gcc/MIMXRT1062xxxxx_ram.ld -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/gcc/MIMXRT1062xxxxx_sdram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/gcc/MIMXRT1062xxxxx_sdram.ld -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/gcc/startup_MIMXRT1062.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/gcc/startup_MIMXRT1062.S -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/project_template/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/project_template/board.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/project_template/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/project_template/board.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/project_template/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/project_template/pin_mux.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/project_template/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/project_template/pin_mux.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/system_MIMXRT1062.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/system_MIMXRT1062.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/system_MIMXRT1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/system_MIMXRT1062.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/template/RTE_Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/template/RTE_Device.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/utilities/fsl_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/utilities/fsl_assert.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/utilities/fsl_notifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/utilities/fsl_notifier.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/utilities/fsl_notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/utilities/fsl_notifier.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/utilities/fsl_sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/utilities/fsl_sbrk.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/utilities/fsl_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/utilities/fsl_shell.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/utilities/fsl_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/utilities/fsl_shell.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/utilities/str/fsl_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/utilities/str/fsl_str.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/utilities/str/fsl_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/utilities/str/fsl_str.h -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/xip/fsl_flexspi_nor_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/xip/fsl_flexspi_nor_boot.c -------------------------------------------------------------------------------- /tools/sdk/devices/MIMXRT1062/xip/fsl_flexspi_nor_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/devices/MIMXRT1062/xip/fsl_flexspi_nor_boot.h -------------------------------------------------------------------------------- /tools/sdk/docs/MCUXpresso SDK Release Notes_MIMXRT105x.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/docs/MCUXpresso SDK Release Notes_MIMXRT105x.pdf -------------------------------------------------------------------------------- /tools/sdk/docs/images/EVKB-IMXRT1050.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/docs/images/EVKB-IMXRT1050.gif -------------------------------------------------------------------------------- /tools/sdk/docs/images/device.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/docs/images/device.jpg -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/cmsis-nn/Examples/cifar10/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/cmsis-nn/Examples/cifar10/main.c -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/cmsis-nn/Examples/cifar10/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/cmsis-nn/Examples/cifar10/timer.c -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/cmsis-nn/Examples/cifar10/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/cmsis-nn/Examples/cifar10/timer.h -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/KWS/kws.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/KWS/kws.cpp -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/KWS/kws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/KWS/kws.h -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/KWS_NN/nn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/KWS_NN/nn.h -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/MFCC/mfcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/MFCC/mfcc.h -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/main.cpp -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/timer.c -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/timer.h -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/wav_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/wav_data.h -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/yes.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/cmsis-nn/Examples/kws/yes.wav -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/cmsis-nn/Include/arm_nn_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/cmsis-nn/Include/arm_nn_tables.h -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/cmsis-nn/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/cmsis-nn/LICENSE.txt -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/cmsis-nn/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/cmsis-nn/readme.txt -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/tensorflow-lite/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/tensorflow-lite/AUTHORS -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/tensorflow-lite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/tensorflow-lite/LICENSE -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/tensorflow-lite/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/eiq/tensorflow-lite/readme.txt -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/tensorflow-lite/third_party/eigen/Empty.h: -------------------------------------------------------------------------------- 1 | /* Intentionally left empty */ 2 | -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/tensorflow-lite/third_party/eigen3/Eigen/Cholesky: -------------------------------------------------------------------------------- 1 | #include "Eigen/Cholesky" 2 | -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/tensorflow-lite/third_party/eigen3/Eigen/Core: -------------------------------------------------------------------------------- 1 | #include "Eigen/Core" 2 | -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/tensorflow-lite/third_party/eigen3/Eigen/LU: -------------------------------------------------------------------------------- 1 | #include "Eigen/LU" 2 | -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/tensorflow-lite/third_party/eigen3/Eigen/QR: -------------------------------------------------------------------------------- 1 | #include "Eigen/QR" 2 | -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/tensorflow-lite/third_party/eigen3/Eigen/SVD: -------------------------------------------------------------------------------- 1 | #include "Eigen/SVD" 2 | -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/tensorflow-lite/third_party/eigen3/unsupported/Eigen/CXX11/ThreadPool: -------------------------------------------------------------------------------- 1 | #include "unsupported/Eigen/CXX11/ThreadPool" 2 | -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/tensorflow-lite/third_party/eigen3/unsupported/Eigen/MatrixFunctions: -------------------------------------------------------------------------------- 1 | #include "unsupported/Eigen/MatrixFunctions" 2 | -------------------------------------------------------------------------------- /tools/sdk/middleware/eiq/tensorflow-lite/third_party/eigen3/unsupported/Eigen/SpecialFunctions: -------------------------------------------------------------------------------- 1 | #include "unsupported/Eigen/SpecialFunctions" 2 | -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/doc/blhost User's Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/doc/blhost User's Guide.pdf -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/doc/elftosb User's Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/doc/elftosb User's Guide.pdf -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/doc/sdphost User's Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/doc/sdphost User's Guide.pdf -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/autobaud/autobaud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/autobaud/autobaud.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/bm_usb/composite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/bm_usb/composite.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/bm_usb/composite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/bm_usb/composite.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/bm_usb/hid_bootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/bm_usb/hid_bootloader.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/bm_usb/hid_bootloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/bm_usb/hid_bootloader.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/bm_usb/msc_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/bm_usb/msc_disk.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/bm_usb/msc_disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/bm_usb/msc_disk.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/bm_usb/usb_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/bm_usb/usb_descriptor.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/bm_usb/usb_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/bm_usb/usb_descriptor.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/bootloader/bl_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/bootloader/bl_command.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/bootloader/bl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/bootloader/bl_context.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/bootloader/bl_keyblob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/bootloader/bl_keyblob.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/bootloader/bl_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/bootloader/bl_version.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/bootloader/bootloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/bootloader/bootloader.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/bootloader/src/bl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/bootloader/src/bl_main.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/bootloader/src/bl_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/bootloader/src/bl_misc.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/crc/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/crc/crc16.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/crc/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/crc/crc32.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/crc/src/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/crc/src/crc16.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/crc/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/crc/src/crc32.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/drivers/dcp/fsl_dcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/drivers/dcp/fsl_dcp.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/drivers/dcp/fsl_dcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/drivers/dcp/fsl_dcp.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/drivers/gpio/fsl_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/drivers/gpio/fsl_gpio.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/drivers/igpio/fsl_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/drivers/igpio/fsl_gpio.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/drivers/igpio/fsl_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/drivers/igpio/fsl_gpio.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/drivers/port/fsl_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/drivers/port/fsl_port.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/drivers/semc/fsl_semc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/drivers/semc/fsl_semc.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/drivers/semc/fsl_semc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/drivers/semc/fsl_semc.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/drivers/smc/smc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/drivers/smc/smc.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/drivers/trng/fsl_trng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/drivers/trng/fsl_trng.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/drivers/trng/fsl_trng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/drivers/trng/fsl_trng.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/memory/memory.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/memory/src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/memory/src/memory.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/memory/src/mmc_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/memory/src/mmc_memory.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/memory/src/mmc_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/memory/src/mmc_memory.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/memory/src/sd_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/memory/src/sd_memory.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/memory/src/sd_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/memory/src/sd_memory.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/memory/src/sram_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/memory/src/sram_init.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/packet/command_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/packet/command_packet.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/packet/serial_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/packet/serial_packet.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/property/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/property/property.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/sbloader/sbloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/sbloader/sbloader.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/sbloader/src/sbloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/sbloader/src/sbloader.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/startup/ar_asm_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/startup/ar_asm_macros.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/startup/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/startup/startup.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/utilities/fsl_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/utilities/fsl_assert.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/src/utilities/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/src/utilities/ring_buffer.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/mk/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/mk/common.mk -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/AESCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/AESCounter.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/AESKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/AESKey.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/Blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/Blob.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/Bootloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/Bootloader.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/BusPal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/BusPal.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/Command.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/Crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/Crc.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/DataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/DataSource.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/DataTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/DataTarget.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/ELF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/ELF.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/GHSSecInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/GHSSecInfo.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/HexValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/HexValues.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/Logging.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/Packetizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/Packetizer.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/Progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/Progress.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/Random.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/Updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/Updater.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/Value.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/hidapi.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/int_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/int_size.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/json.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/options.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/rijndael.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/serial.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/stdafx.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/blfwk/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/blfwk/utils.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/crc/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/crc/crc16.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/crc/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/crc/crc32.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/crc/src/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/crc/src/crc16.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/crc/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/crc/src/crc32.c -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/src/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/mcu-boot/tools/src/memory/memory.h -------------------------------------------------------------------------------- /tools/sdk/middleware/mcu-boot/tools/tools/elftosb/mbedtls/tests/data_files/passwd.psk: -------------------------------------------------------------------------------- 1 | Client_identity:6162636465666768696a6b6c6d6e6f70 2 | -------------------------------------------------------------------------------- /tools/sdk/middleware/sdmmc/inc/fsl_mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/sdmmc/inc/fsl_mmc.h -------------------------------------------------------------------------------- /tools/sdk/middleware/sdmmc/inc/fsl_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/sdmmc/inc/fsl_sd.h -------------------------------------------------------------------------------- /tools/sdk/middleware/sdmmc/inc/fsl_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/sdmmc/inc/fsl_sdio.h -------------------------------------------------------------------------------- /tools/sdk/middleware/sdmmc/inc/fsl_sdmmc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/sdmmc/inc/fsl_sdmmc_common.h -------------------------------------------------------------------------------- /tools/sdk/middleware/sdmmc/inc/fsl_sdmmc_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/sdmmc/inc/fsl_sdmmc_host.h -------------------------------------------------------------------------------- /tools/sdk/middleware/sdmmc/inc/fsl_sdmmc_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/sdmmc/inc/fsl_sdmmc_spec.h -------------------------------------------------------------------------------- /tools/sdk/middleware/sdmmc/port/fsl_sdmmc_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/sdmmc/port/fsl_sdmmc_event.h -------------------------------------------------------------------------------- /tools/sdk/middleware/sdmmc/src/fsl_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/sdmmc/src/fsl_mmc.c -------------------------------------------------------------------------------- /tools/sdk/middleware/sdmmc/src/fsl_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/sdmmc/src/fsl_sd.c -------------------------------------------------------------------------------- /tools/sdk/middleware/sdmmc/src/fsl_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/sdmmc/src/fsl_sdio.c -------------------------------------------------------------------------------- /tools/sdk/middleware/sdmmc/src/fsl_sdmmc_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/sdmmc/src/fsl_sdmmc_common.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/device/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/device/usb_device.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/device/usb_device_dci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/device/usb_device_dci.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/device/usb_device_dci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/device/usb_device_dci.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/device/usb_device_ehci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/device/usb_device_ehci.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/device/usb_device_ehci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/device/usb_device_ehci.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/device/usb_device_khci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/device/usb_device_khci.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/device/usb_device_khci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/device/usb_device_khci.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/device/usb_device_lpcip3511.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/device/usb_device_lpcip3511.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/device/usb_device_lpcip3511.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/device/usb_device_lpcip3511.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_audio.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_audio.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_cdc.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_cdc.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_cdc_rndis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_cdc_rndis.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_cdc_rndis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_cdc_rndis.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_hid.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_hid.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_hub.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_hub.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_hub_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_hub_app.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_hub_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_hub_app.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_msd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_msd.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_msd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_msd.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_msd_ufi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_msd_ufi.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_phdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_phdc.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_phdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_phdc.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_printer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_printer.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/class/usb_host_printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/class/usb_host_printer.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/usb_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/usb_host.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/usb_host_devices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/usb_host_devices.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/usb_host_devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/usb_host_devices.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/usb_host_ehci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/usb_host_ehci.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/usb_host_ehci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/usb_host_ehci.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/usb_host_framework.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/usb_host_framework.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/usb_host_framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/usb_host_framework.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/usb_host_hci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/usb_host_hci.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/usb_host_hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/usb_host_hci.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/usb_host_ip3516hs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/usb_host_ip3516hs.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/usb_host_ip3516hs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/usb_host_ip3516hs.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/usb_host_khci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/usb_host_khci.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/usb_host_khci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/usb_host_khci.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/usb_host_ohci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/usb_host_ohci.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/host/usb_host_ohci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/host/usb_host_ohci.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/include/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/include/usb.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/include/usb_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/include/usb_misc.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/include/usb_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/include/usb_spec.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/osa/usb_osa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/osa/usb_osa.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/osa/usb_osa_bm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/osa/usb_osa_bm.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/osa/usb_osa_bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/osa/usb_osa_bm.h -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/phy/usb_phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/phy/usb_phy.c -------------------------------------------------------------------------------- /tools/sdk/middleware/usb/phy/usb_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/middleware/usb/phy/usb_phy.h -------------------------------------------------------------------------------- /tools/sdk/tools/cmake_toolchain_files/armgcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/tools/cmake_toolchain_files/armgcc.cmake -------------------------------------------------------------------------------- /tools/sdk/tools/cmake_toolchain_files/xcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/tools/sdk/tools/cmake_toolchain_files/xcc.cmake -------------------------------------------------------------------------------- /variants/arch_mix/board/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/board/board.c -------------------------------------------------------------------------------- /variants/arch_mix/board/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/board/board.h -------------------------------------------------------------------------------- /variants/arch_mix/board/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/board/clock_config.c -------------------------------------------------------------------------------- /variants/arch_mix/board/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/board/clock_config.h -------------------------------------------------------------------------------- /variants/arch_mix/flexspi_nor.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/flexspi_nor.ld -------------------------------------------------------------------------------- /variants/arch_mix/flexspi_nor_arduino.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/flexspi_nor_arduino.ld -------------------------------------------------------------------------------- /variants/arch_mix/flexspi_nor_sdram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/flexspi_nor_sdram.ld -------------------------------------------------------------------------------- /variants/arch_mix/pins_arduino.h: -------------------------------------------------------------------------------- 1 | #include "variant.h" -------------------------------------------------------------------------------- /variants/arch_mix/ram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/ram.ld -------------------------------------------------------------------------------- /variants/arch_mix/sdram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/sdram.ld -------------------------------------------------------------------------------- /variants/arch_mix/sdram_txt.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/sdram_txt.ld -------------------------------------------------------------------------------- /variants/arch_mix/startup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/startup.S -------------------------------------------------------------------------------- /variants/arch_mix/variant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/variant.c -------------------------------------------------------------------------------- /variants/arch_mix/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/variant.h -------------------------------------------------------------------------------- /variants/arch_mix/xip/evkbimxrt1050_flexspi_nor_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/xip/evkbimxrt1050_flexspi_nor_config.c -------------------------------------------------------------------------------- /variants/arch_mix/xip/evkbimxrt1050_flexspi_nor_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/xip/evkbimxrt1050_flexspi_nor_config.h -------------------------------------------------------------------------------- /variants/arch_mix/xip/evkbimxrt1050_sdram_ini_dcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/xip/evkbimxrt1050_sdram_ini_dcd.c -------------------------------------------------------------------------------- /variants/arch_mix/xip/evkbimxrt1050_sdram_ini_dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/xip/evkbimxrt1050_sdram_ini_dcd.h -------------------------------------------------------------------------------- /variants/arch_mix/xip/fsl_flexspi_nor_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/xip/fsl_flexspi_nor_boot.c -------------------------------------------------------------------------------- /variants/arch_mix/xip/fsl_flexspi_nor_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/ArduinoCore-imxrt/HEAD/variants/arch_mix/xip/fsl_flexspi_nor_boot.h -------------------------------------------------------------------------------- /variants/rt1062/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /variants/rt1064/readme.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------