下你所需,载你所想!
汇集开发技术源码资料

IMX8QX M4内核SDK例程(含sdk说明文档)

:14.641MB :1 :2022-10-11 16:00:28

部分简介

IMX8QX M4内核SDK例程(含sdk说明文档)如果开发者对于本文件有需要的可以参考。
NXP IMX8 M4内核例程(含sdk说明文档)
IAR工程打开,亲测可用,缩短开发周期
.
├── CMSIS
│ ├── 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
│ │ └── Driver_WiFi.h
│ ├── Include
│ │ ├── arm_common_tables.h
│ │ ├── arm_const_structs.h
│ │ ├── arm_math.h
│ │ ├── cmsis_armcc.h
│ │ ├── cmsis_armclang.h
│ │ ├── cmsis_armclang_ltm.h
│ │ ├── cmsis_compiler.h
│ │ ├── cmsis_gcc.h
│ │ ├── cmsis_iccarm.h
│ │ ├── cmsis_version.h
│ │ ├── core_armv81mml.h
│ │ ├── core_armv8mbl.h
│ │ ├── core_armv8mml.h
│ │ ├── core_cm0.h
│ │ ├── core_cm0plus.h
│ │ ├── core_cm1.h
│ │ ├── core_cm23.h
│ │ ├── core_cm3.h
│ │ ├── core_cm33.h
│ │ ├── core_cm35p.h
│ │ ├── core_cm4.h
│ │ ├── core_cm7.h
│ │ ├── core_dsp.h
│ │ ├── core_sc000.h
│ │ ├── core_sc300.h
│ │ ├── mpu_armv7.h
│ │ ├── mpu_armv8.h
│ │ └── tz_context.h
│ └── LICENSE.txt
├── MEK-MIMX8QX_manifest_v3_6.xml
├── MIR
│ └── marketing_data
│ └── 1.0
│ └── boards
│ └── images
│ └── 90-MEK-MIMX8QX.gif
├── SW-Content-Register.txt
├── boards
│ └── mekmimx8qx
│ ├── cmsis_driver_examples
│ │ ├── lpi2c
│ │ │ ├── edma_b2b_transfer
│ │ │ │ ├── master
│ │ │ │ │ ├── RTE_Device.h
│ │ │ │ │ ├── armgcc
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ │ ├── build_all.bat
│ │ │ │ │ │ ├── build_all.sh
│ │ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ │ ├── build_release.bat
│ │ │ │ │ │ ├── build_release.sh
│ │ │ │ │ │ ├── clean.bat
│ │ │ │ │ │ ├── clean.sh
│ │ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ │ ├── board.c
│ │ │ │ │ ├── board.h
│ │ │ │ │ ├── clock_config.c
│ │ │ │ │ ├── clock_config.h
│ │ │ │ │ ├── cmsis_lpi2c_edma_b2b_transfer_master.c
│ │ │ │ │ ├── cmsis_lpi2c_edma_b2b_transfer_master.xml
│ │ │ │ │ ├── empty_rsc_table.c
│ │ │ │ │ ├── pin_mux.c
│ │ │ │ │ ├── pin_mux.h
│ │ │ │ │ └── readme.txt
│ │ │ │ └── slave
│ │ │ │ ├── RTE_Device.h
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── cmsis_lpi2c_edma_b2b_transfer_slave.c
│ │ │ │ ├── cmsis_lpi2c_edma_b2b_transfer_slave.xml
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ └── int_b2b_transfer
│ │ │ ├── master
│ │ │ │ ├── RTE_Device.h
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── cmsis_lpi2c_int_b2b_transfer_master.c
│ │ │ │ ├── cmsis_lpi2c_int_b2b_transfer_master.xml
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ └── slave
│ │ │ ├── RTE_Device.h
│ │ │ ├── armgcc
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ ├── build_all.bat
│ │ │ │ ├── build_all.sh
│ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ ├── build_ddr_release.bat
│ │ │ │ ├── build_ddr_release.sh
│ │ │ │ ├── build_debug.bat
│ │ │ │ ├── build_debug.sh
│ │ │ │ ├── build_release.bat
│ │ │ │ ├── build_release.sh
│ │ │ │ ├── clean.bat
│ │ │ │ ├── clean.sh
│ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ ├── board.c
│ │ │ ├── board.h
│ │ │ ├── clock_config.c
│ │ │ ├── clock_config.h
│ │ │ ├── cmsis_lpi2c_int_b2b_transfer_slave.c
│ │ │ ├── cmsis_lpi2c_int_b2b_transfer_slave.xml
│ │ │ ├── empty_rsc_table.c
│ │ │ ├── pin_mux.c
│ │ │ ├── pin_mux.h
│ │ │ └── readme.txt
│ │ └── lpuart
│ │ ├── edma_transfer
│ │ │ ├── RTE_Device.h
│ │ │ ├── armgcc
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ ├── build_all.bat
│ │ │ │ ├── build_all.sh
│ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ ├── build_ddr_release.bat
│ │ │ │ ├── build_ddr_release.sh
│ │ │ │ ├── build_debug.bat
│ │ │ │ ├── build_debug.sh
│ │ │ │ ├── build_flash_debug.bat
│ │ │ │ ├── build_flash_debug.sh
│ │ │ │ ├── build_flash_release.bat
│ │ │ │ ├── build_flash_release.sh
│ │ │ │ ├── build_release.bat
│ │ │ │ ├── build_release.sh
│ │ │ │ ├── clean.bat
│ │ │ │ ├── clean.sh
│ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ ├── board.c
│ │ │ ├── board.h
│ │ │ ├── clock_config.c
│ │ │ ├── clock_config.h
│ │ │ ├── cmsis_lpuart_edma_transfer.xml
│ │ │ ├── cmsis_usart_edma_transfer.c
│ │ │ ├── empty_rsc_table.c
│ │ │ ├── pin_mux.c
│ │ │ ├── pin_mux.h
│ │ │ └── readme.txt
│ │ └── interrupt_transfer
│ │ ├── RTE_Device.h
│ │ ├── armgcc
│ │ │ ├── CMakeLists.txt
│ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ ├── build_all.bat
│ │ │ ├── build_all.sh
│ │ │ ├── build_ddr_debug.bat
│ │ │ ├── build_ddr_debug.sh
│ │ │ ├── build_ddr_release.bat
│ │ │ ├── build_ddr_release.sh
│ │ │ ├── build_debug.bat
│ │ │ ├── build_debug.sh
│ │ │ ├── build_flash_debug.bat
│ │ │ ├── build_flash_debug.sh
│ │ │ ├── build_flash_release.bat
│ │ │ ├── build_flash_release.sh
│ │ │ ├── build_release.bat
│ │ │ ├── build_release.sh
│ │ │ ├── clean.bat
│ │ │ ├── clean.sh
│ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ ├── board.c
│ │ ├── board.h
│ │ ├── clock_config.c
│ │ ├── clock_config.h
│ │ ├── cmsis_lpuart_interrupt_transfer.xml
│ │ ├── cmsis_usart_interrupt_transfer.c
│ │ ├── empty_rsc_table.c
│ │ ├── pin_mux.c
│ │ ├── pin_mux.h
│ │ └── readme.txt
│ ├── demo_apps
│ │ ├── hello_world
│ │ │ ├── armgcc
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ ├── build_all.bat
│ │ │ │ ├── build_all.sh
│ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ ├── build_ddr_release.bat
│ │ │ │ ├── build_ddr_release.sh
│ │ │ │ ├── build_debug.bat
│ │ │ │ ├── build_debug.sh
│ │ │ │ ├── build_flash_debug.bat
│ │ │ │ ├── build_flash_debug.sh
│ │ │ │ ├── build_flash_release.bat
│ │ │ │ ├── build_flash_release.sh
│ │ │ │ ├── build_release.bat
│ │ │ │ ├── build_release.sh
│ │ │ │ ├── clean.bat
│ │ │ │ ├── clean.sh
│ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ ├── board.c
│ │ │ ├── board.h
│ │ │ ├── clock_config.c
│ │ │ ├── clock_config.h
│ │ │ ├── empty_rsc_table.c
│ │ │ ├── hello_world.c
│ │ │ ├── hello_world.xml
│ │ │ ├── hello_world_TCM.bin
│ │ │ ├── pin_mux.c
│ │ │ ├── pin_mux.h
│ │ │ └── readme.txt
│ │ ├── power_mode_switch
│ │ │ ├── FreeRTOSConfig.h
│ │ │ ├── app_srtm.c
│ │ │ ├── app_srtm.h
│ │ │ ├── armgcc
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ ├── build_all.bat
│ │ │ │ ├── build_all.sh
│ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ ├── build_ddr_release.bat
│ │ │ │ ├── build_ddr_release.sh
│ │ │ │ ├── build_debug.bat
│ │ │ │ ├── build_debug.sh
│ │ │ │ ├── build_flash_debug.bat
│ │ │ │ ├── build_flash_debug.sh
│ │ │ │ ├── build_flash_release.bat
│ │ │ │ ├── build_flash_release.sh
│ │ │ │ ├── build_release.bat
│ │ │ │ ├── build_release.sh
│ │ │ │ ├── clean.bat
│ │ │ │ ├── clean.sh
│ │ │ │ ├── lpm_asm.S
│ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ ├── board.c
│ │ │ ├── board.h
│ │ │ ├── clock_config.c
│ │ │ ├── clock_config.h
│ │ │ ├── lpm.c
│ │ │ ├── lpm.h
│ │ │ ├── pin_mux.c
│ │ │ ├── pin_mux.h
│ │ │ ├── power_mode_switch.c
│ │ │ ├── power_mode_switch.h
│ │ │ ├── power_mode_switch.xml
│ │ │ ├── readme.txt
│ │ │ ├── remoteproc.h
│ │ │ ├── rpmsg_config.h
│ │ │ ├── rsc_table.c
│ │ │ ├── rsc_table.h
│ │ │ └── srtm
│ │ │ ├── channels
│ │ │ │ ├── srtm_mu_endpoint.c
│ │ │ │ ├── srtm_mu_endpoint.h
│ │ │ │ ├── srtm_rpmsg_endpoint.c
│ │ │ │ └── srtm_rpmsg_endpoint.h
│ │ │ └── services
│ │ │ ├── srtm_i2c_service.c
│ │ │ └── srtm_i2c_service.h
│ │ ├── rear_view_camera
│ │ │ ├── FreeRTOSConfig.h
│ │ │ ├── app_display.c
│ │ │ ├── app_display.h
│ │ │ ├── app_srtm.c
│ │ │ ├── app_srtm.h
│ │ │ ├── armgcc
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ ├── build_all.bat
│ │ │ │ ├── build_all.sh
│ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ ├── build_ddr_release.bat
│ │ │ │ ├── build_ddr_release.sh
│ │ │ │ ├── build_debug.bat
│ │ │ │ ├── build_debug.sh
│ │ │ │ ├── build_flash_debug.bat
│ │ │ │ ├── build_flash_debug.sh
│ │ │ │ ├── build_flash_release.bat
│ │ │ │ ├── build_flash_release.sh
│ │ │ │ ├── build_release.bat
│ │ │ │ ├── build_release.sh
│ │ │ │ ├── clean.bat
│ │ │ │ ├── clean.sh
│ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ ├── automotive.c
│ │ │ ├── automotive.h
│ │ │ ├── board.c
│ │ │ ├── board.h
│ │ │ ├── clock_config.c
│ │ │ ├── clock_config.h
│ │ │ ├── fsl_adv7535.c
│ │ │ ├── fsl_adv7535.h
│ │ │ ├── fsl_camera.h
│ │ │ ├── fsl_camera_device.h
│ │ │ ├── fsl_camera_receiver.h
│ │ │ ├── fsl_display.h
│ │ │ ├── fsl_isi_camera_adapter.c
│ │ │ ├── fsl_isi_camera_adapter.h
│ │ │ ├── fsl_it6263.c
│ │ │ ├── fsl_it6263.h
│ │ │ ├── fsl_max9286.c
│ │ │ ├── fsl_max9286.h
│ │ │ ├── fsl_mipi_dsi_cmd.c
│ │ │ ├── fsl_mipi_dsi_cmd.h
│ │ │ ├── fsl_ov5640.c
│ │ │ ├── fsl_ov5640.h
│ │ │ ├── fsl_rm67191.c
│ │ │ ├── fsl_rm67191.h
│ │ │ ├── fsl_sccb.c
│ │ │ ├── fsl_sccb.h
│ │ │ ├── fsl_video_common.c
│ │ │ ├── fsl_video_common.h
│ │ │ ├── fsl_video_i2c.c
│ │ │ ├── fsl_video_i2c.h
│ │ │ ├── generic_list.c
│ │ │ ├── generic_list.h
│ │ │ ├── isi_board.c
│ │ │ ├── isi_config.h
│ │ │ ├── isi_example.h
│ │ │ ├── lpuart_adapter.c
│ │ │ ├── nxp_logo.h
│ │ │ ├── pin_mux.c
│ │ │ ├── pin_mux.h
│ │ │ ├── rear_view_camera.c
│ │ │ ├── remoteproc.h
│ │ │ ├── rpmsg_config.h
│ │ │ ├── rsc_table.c
│ │ │ ├── rsc_table.h
│ │ │ ├── serial_manager.c
│ │ │ ├── serial_manager.h
│ │ │ ├── serial_port_internal.h
│ │ │ ├── serial_port_uart.c
│ │ │ ├── serial_port_uart.h
│ │ │ ├── srtm
│ │ │ │ ├── channels
│ │ │ │ │ ├── srtm_mu_endpoint.c
│ │ │ │ │ ├── srtm_mu_endpoint.h
│ │ │ │ │ ├── srtm_rpmsg_endpoint.c
│ │ │ │ │ └── srtm_rpmsg_endpoint.h
│ │ │ │ ├── include
│ │ │ │ │ ├── srtm_channel.h
│ │ │ │ │ ├── srtm_defs.h
│ │ │ │ │ ├── srtm_dispatcher.h
│ │ │ │ │ ├── srtm_message.h
│ │ │ │ │ ├── srtm_peercore.h
│ │ │ │ │ └── srtm_service.h
│ │ │ │ ├── port
│ │ │ │ │ ├── srtm_heap_freertos.c
│ │ │ │ │ ├── srtm_message_pool.c
│ │ │ │ │ ├── srtm_mutex_freertos.c
│ │ │ │ │ └── srtm_sem_freertos.c
│ │ │ │ ├── services
│ │ │ │ │ ├── srtm_auto_service.c
│ │ │ │ │ ├── srtm_auto_service.h
│ │ │ │ │ ├── srtm_i2c_service.c
│ │ │ │ │ └── srtm_i2c_service.h
│ │ │ │ └── srtm
│ │ │ │ ├── srtm_channel.c
│ │ │ │ ├── srtm_channel_struct.h
│ │ │ │ ├── srtm_dispatcher.c
│ │ │ │ ├── srtm_dispatcher_struct.h
│ │ │ │ ├── srtm_heap.h
│ │ │ │ ├── srtm_list.h
│ │ │ │ ├── srtm_message.c
│ │ │ │ ├── srtm_message_struct.h
│ │ │ │ ├── srtm_mutex.h
│ │ │ │ ├── srtm_peercore.c
│ │ │ │ ├── srtm_peercore_struct.h
│ │ │ │ ├── srtm_sem.h
│ │ │ │ ├── srtm_service.c
│ │ │ │ └── srtm_service_struct.h
│ │ │ └── uart.h
│ │ └── srtm_demo
│ │ ├── FreeRTOSConfig.h
│ │ ├── app_srtm.c
│ │ ├── app_srtm.h
│ │ ├── armgcc
│ │ │ ├── CMakeLists.txt
│ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ ├── build_all.bat
│ │ │ ├── build_all.sh
│ │ │ ├── build_ddr_debug.bat
│ │ │ ├── build_ddr_debug.sh
│ │ │ ├── build_ddr_release.bat
│ │ │ ├── build_ddr_release.sh
│ │ │ ├── build_debug.bat
│ │ │ ├── build_debug.sh
│ │ │ ├── build_flash_debug.bat
│ │ │ ├── build_flash_debug.sh
│ │ │ ├── build_flash_release.bat
│ │ │ ├── build_flash_release.sh
│ │ │ ├── build_release.bat
│ │ │ ├── build_release.sh
│ │ │ ├── clean.bat
│ │ │ ├── clean.sh
│ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ ├── board.c
│ │ ├── board.h
│ │ ├── clock_config.c
│ │ ├── clock_config.h
│ │ ├── pin_mux.c
│ │ ├── pin_mux.h
│ │ ├── readme.txt
│ │ ├── remoteproc.h
│ │ ├── rpmsg_config.h
│ │ ├── rsc_table.c
│ │ ├── rsc_table.h
│ │ ├── srtm
│ │ │ ├── channels
│ │ │ │ ├── srtm_mu_endpoint.c
│ │ │ │ ├── srtm_mu_endpoint.h
│ │ │ │ ├── srtm_rpmsg_endpoint.c
│ │ │ │ └── srtm_rpmsg_endpoint.h
│ │ │ └── services
│ │ │ ├── srtm_i2c_service.c
│ │ │ └── srtm_i2c_service.h
│ │ ├── srtm_demo.c
│ │ └── srtm_demo.xml
│ ├── driver_examples
│ │ ├── canfd
│ │ │ ├── interrupt_transfer
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_flash_debug.bat
│ │ │ │ │ ├── build_flash_debug.sh
│ │ │ │ │ ├── build_flash_release.bat
│ │ │ │ │ ├── build_flash_release.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── canfd_interrupt_transfer.xml
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── flexcan_interrupt_transfer.c
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ ├── loopback
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_flash_debug.bat
│ │ │ │ │ ├── build_flash_debug.sh
│ │ │ │ │ ├── build_flash_release.bat
│ │ │ │ │ ├── build_flash_release.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── canfd_loopback.xml
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── flexcan_loopback.c
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ └── loopback_transfer
│ │ │ ├── armgcc
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ ├── build_all.bat
│ │ │ │ ├── build_all.sh
│ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ ├── build_ddr_release.bat
│ │ │ │ ├── build_ddr_release.sh
│ │ │ │ ├── build_debug.bat
│ │ │ │ ├── build_debug.sh
│ │ │ │ ├── build_flash_debug.bat
│ │ │ │ ├── build_flash_debug.sh
│ │ │ │ ├── build_flash_release.bat
│ │ │ │ ├── build_flash_release.sh
│ │ │ │ ├── build_release.bat
│ │ │ │ ├── build_release.sh
│ │ │ │ ├── clean.bat
│ │ │ │ ├── clean.sh
│ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ ├── board.c
│ │ │ ├── board.h
│ │ │ ├── canfd_loopback_transfer.xml
│ │ │ ├── clock_config.c
│ │ │ ├── clock_config.h
│ │ │ ├── empty_rsc_table.c
│ │ │ ├── flexcan_loopback_transfer.c
│ │ │ ├── pin_mux.c
│ │ │ ├── pin_mux.h
│ │ │ └── readme.txt
│ │ ├── dpu
│ │ │ ├── blitblend
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_flash_debug.bat
│ │ │ │ │ ├── build_flash_debug.sh
│ │ │ │ │ ├── build_flash_release.bat
│ │ │ │ │ ├── build_flash_release.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── display_interface.c
│ │ │ │ ├── dpu_blitblend.c
│ │ │ │ ├── dpu_blitblend.xml
│ │ │ │ ├── dpu_board.c
│ │ │ │ ├── dpu_example.h
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ ├── character
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_flash_debug.bat
│ │ │ │ │ ├── build_flash_debug.sh
│ │ │ │ │ ├── build_flash_release.bat
│ │ │ │ │ ├── build_flash_release.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── display_interface.c
│ │ │ │ ├── dpu_board.c
│ │ │ │ ├── dpu_character.c
│ │ │ │ ├── dpu_character.xml
│ │ │ │ ├── dpu_example.h
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ ├── fetch_decode
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_flash_debug.bat
│ │ │ │ │ ├── build_flash_debug.sh
│ │ │ │ │ ├── build_flash_release.bat
│ │ │ │ │ ├── build_flash_release.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── display_interface.c
│ │ │ │ ├── dpu_board.c
│ │ │ │ ├── dpu_example.h
│ │ │ │ ├── dpu_fetch_decode.c
│ │ │ │ ├── dpu_fetch_decode.xml
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ └── rop
│ │ │ ├── armgcc
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ ├── build_all.bat
│ │ │ │ ├── build_all.sh
│ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ ├── build_ddr_release.bat
│ │ │ │ ├── build_ddr_release.sh
│ │ │ │ ├── build_debug.bat
│ │ │ │ ├── build_debug.sh
│ │ │ │ ├── build_flash_debug.bat
│ │ │ │ ├── build_flash_debug.sh
│ │ │ │ ├── build_flash_release.bat
│ │ │ │ ├── build_flash_release.sh
│ │ │ │ ├── build_release.bat
│ │ │ │ ├── build_release.sh
│ │ │ │ ├── clean.bat
│ │ │ │ ├── clean.sh
│ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ ├── board.c
│ │ │ ├── board.h
│ │ │ ├── clock_config.c
│ │ │ ├── clock_config.h
│ │ │ ├── display_interface.c
│ │ │ ├── dpu_board.c
│ │ │ ├── dpu_example.h
│ │ │ ├── dpu_rop.c
│ │ │ ├── dpu_rop.xml
│ │ │ ├── empty_rsc_table.c
│ │ │ ├── pin_mux.c
│ │ │ ├── pin_mux.h
│ │ │ └── readme.txt
│ │ ├── edma
│ │ │ ├── memory_to_memory
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_flash_debug.bat
│ │ │ │ │ ├── build_flash_debug.sh
│ │ │ │ │ ├── build_flash_release.bat
│ │ │ │ │ ├── build_flash_release.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── dma3_memory_to_memory.xml
│ │ │ │ ├── edma_memory_to_memory.c
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ └── scatter_gather
│ │ │ ├── armgcc
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ ├── build_all.bat
│ │ │ │ ├── build_all.sh
│ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ ├── build_ddr_release.bat
│ │ │ │ ├── build_ddr_release.sh
│ │ │ │ ├── build_debug.bat
│ │ │ │ ├── build_debug.sh
│ │ │ │ ├── build_flash_debug.bat
│ │ │ │ ├── build_flash_debug.sh
│ │ │ │ ├── build_flash_release.bat
│ │ │ │ ├── build_flash_release.sh
│ │ │ │ ├── build_release.bat
│ │ │ │ ├── build_release.sh
│ │ │ │ ├── clean.bat
│ │ │ │ ├── clean.sh
│ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ ├── board.c
│ │ │ ├── board.h
│ │ │ ├── clock_config.c
│ │ │ ├── clock_config.h
│ │ │ ├── dma3_scatter_gather.xml
│ │ │ ├── edma_scatter_gather.c
│ │ │ ├── empty_rsc_table.c
│ │ │ ├── pin_mux.c
│ │ │ ├── pin_mux.h
│ │ │ └── readme.txt
│ │ ├── enet
│ │ │ ├── txrx_multiring_transfer
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_flash_debug.bat
│ │ │ │ │ ├── build_flash_debug.sh
│ │ │ │ │ ├── build_flash_release.bat
│ │ │ │ │ ├── build_flash_release.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── enet_txrx_multiring_transfer.c
│ │ │ │ ├── enet_txrx_multiring_transfer.xml
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ ├── txrx_ptp1588_transfer
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_flash_debug.bat
│ │ │ │ │ ├── build_flash_debug.sh
│ │ │ │ │ ├── build_flash_release.bat
│ │ │ │ │ ├── build_flash_release.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── enet_txrx_ptp1588_transfer.c
│ │ │ │ ├── enet_txrx_ptp1588_transfer.xml
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ └── txrx_transfer
│ │ │ ├── armgcc
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ ├── build_all.bat
│ │ │ │ ├── build_all.sh
│ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ ├── build_ddr_release.bat
│ │ │ │ ├── build_ddr_release.sh
│ │ │ │ ├── build_debug.bat
│ │ │ │ ├── build_debug.sh
│ │ │ │ ├── build_flash_debug.bat
│ │ │ │ ├── build_flash_debug.sh
│ │ │ │ ├── build_flash_release.bat
│ │ │ │ ├── build_flash_release.sh
│ │ │ │ ├── build_release.bat
│ │ │ │ ├── build_release.sh
│ │ │ │ ├── clean.bat
│ │ │ │ ├── clean.sh
│ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ ├── board.c
│ │ │ ├── board.h
│ │ │ ├── clock_config.c
│ │ │ ├── clock_config.h
│ │ │ ├── empty_rsc_table.c
│ │ │ ├── enet_txrx_transfer.c
│ │ │ ├── enet_txrx_transfer.xml
│ │ │ ├── pin_mux.c
│ │ │ ├── pin_mux.h
│ │ │ └── readme.txt
│ │ ├── esai
│ │ │ ├── edma_transfer
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_flash_debug.bat
│ │ │ │ │ ├── build_flash_debug.sh
│ │ │ │ │ ├── build_flash_release.bat
│ │ │ │ │ ├── build_flash_release.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── esai_edma_transfer.c
│ │ │ │ ├── esai_edma_transfer.xml
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ └── interrupt_transfer
│ │ │ ├── armgcc
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ ├── build_all.bat
│ │ │ │ ├── build_all.sh
│ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ ├── build_ddr_release.bat
│ │ │ │ ├── build_ddr_release.sh
│ │ │ │ ├── build_debug.bat
│ │ │ │ ├── build_debug.sh
│ │ │ │ ├── build_flash_debug.bat
│ │ │ │ ├── build_flash_debug.sh
│ │ │ │ ├── build_flash_release.bat
│ │ │ │ ├── build_flash_release.sh
│ │ │ │ ├── build_release.bat
│ │ │ │ ├── build_release.sh
│ │ │ │ ├── clean.bat
│ │ │ │ ├── clean.sh
│ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ ├── board.c
│ │ │ ├── board.h
│ │ │ ├── clock_config.c
│ │ │ ├── clock_config.h
│ │ │ ├── empty_rsc_table.c
│ │ │ ├── esai_interrupt_transfer.c
│ │ │ ├── esai_interrupt_transfer.xml
│ │ │ ├── pin_mux.c
│ │ │ ├── pin_mux.h
│ │ │ └── readme.txt
│ │ ├── flexcan
│ │ │ ├── interrupt_transfer
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_flash_debug.bat
│ │ │ │ │ ├── build_flash_debug.sh
│ │ │ │ │ ├── build_flash_release.bat
│ │ │ │ │ ├── build_flash_release.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── flexcan_interrupt_transfer.c
│ │ │ │ ├── flexcan_interrupt_transfer.xml
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ ├── loopback
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_flash_debug.bat
│ │ │ │ │ ├── build_flash_debug.sh
│ │ │ │ │ ├── build_flash_release.bat
│ │ │ │ │ ├── build_flash_release.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── flexcan_loopback.c
│ │ │ │ ├── flexcan_loopback.xml
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ ├── loopback_edma_transfer
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_flash_debug.bat
│ │ │ │ │ ├── build_flash_debug.sh
│ │ │ │ │ ├── build_flash_release.bat
│ │ │ │ │ ├── build_flash_release.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── flexcan_loopback_edma_transfer.c
│ │ │ │ ├── flexcan_loopback_edma_transfer.xml
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ └── loopback_transfer
│ │ │ ├── armgcc
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ ├── build_all.bat
│ │ │ │ ├── build_all.sh
│ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ ├── build_ddr_release.bat
│ │ │ │ ├── build_ddr_release.sh
│ │ │ │ ├── build_debug.bat
│ │ │ │ ├── build_debug.sh
│ │ │ │ ├── build_flash_debug.bat
│ │ │ │ ├── build_flash_debug.sh
│ │ │ │ ├── build_flash_release.bat
│ │ │ │ ├── build_flash_release.sh
│ │ │ │ ├── build_release.bat
│ │ │ │ ├── build_release.sh
│ │ │ │ ├── clean.bat
│ │ │ │ ├── clean.sh
│ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ ├── board.c
│ │ │ ├── board.h
│ │ │ ├── clock_config.c
│ │ │ ├── clock_config.h
│ │ │ ├── empty_rsc_table.c
│ │ │ ├── flexcan_loopback_transfer.c
│ │ │ ├── flexcan_loopback_transfer.xml
│ │ │ ├── pin_mux.c
│ │ │ ├── pin_mux.h
│ │ │ └── readme.txt
│ │ ├── flexspi
│ │ │ └── octal
│ │ │ └── polling_transfer
│ │ │ ├── app.h
│ │ │ ├── armgcc
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ ├── build_all.bat
│ │ │ │ ├── build_all.sh
│ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ ├── build_ddr_release.bat
│ │ │ │ ├── build_ddr_release.sh
│ │ │ │ ├── build_debug.bat
│ │ │ │ ├── build_debug.sh
│ │ │ │ ├── build_release.bat
│ │ │ │ ├── build_release.sh
│ │ │ │ ├── clean.bat
│ │ │ │ ├── clean.sh
│ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ ├── board.c
│ │ │ ├── board.h
│ │ │ ├── clock_config.c
│ │ │ ├── clock_config.h
│ │ │ ├── empty_rsc_table.c
│ │ │ ├── flexspi_octal_flash_ops.c
│ │ │ ├── flexspi_octal_polling_transfer.c
│ │ │ ├── flexspi_octal_polling_transfer.xml
│ │ │ ├── pin_mux.c
│ │ │ ├── pin_mux.h
│ │ │ └── readme.txt
│ │ ├── ftm
│ │ │ ├── combine_pwm
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_flash_debug.bat
│ │ │ │ │ ├── build_flash_debug.sh
│ │ │ │ │ ├── build_flash_release.bat
│ │ │ │ │ ├── build_flash_release.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── ftm_combine_pwm.c
│ │ │ │ ├── ftm_combine_pwm.xml
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ ├── dual_edge_capture
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_flash_debug.bat
│ │ │ │ │ ├── build_flash_debug.sh
│ │ │ │ │ ├── build_flash_release.bat
│ │ │ │ │ ├── build_flash_release.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── ftm_dual_edge_capture.c
│ │ │ │ ├── ftm_dual_edge_capture.xml
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ ├── input_capture
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_flash_debug.bat
│ │ │ │ │ ├── build_flash_debug.sh
│ │ │ │ │ ├── build_flash_release.bat
│ │ │ │ │ ├── build_flash_release.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── ftm_input_capture.c
│ │ │ │ ├── ftm_input_capture.xml
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ ├── output_compare
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_flash_debug.bat
│ │ │ │ │ ├── build_flash_debug.sh
│ │ │ │ │ ├── build_flash_release.bat
│ │ │ │ │ ├── build_flash_release.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── ftm_output_compare.c
│ │ │ │ ├── ftm_output_compare.xml
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ ├── pwm_twochannel
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├── build_debug.sh
│ │ │ │ │ ├── build_flash_debug.bat
│ │ │ │ │ ├── build_flash_debug.sh
│ │ │ │ │ ├── build_flash_release.bat
│ │ │ │ │ ├── build_flash_release.sh
│ │ │ │ │ ├── build_release.bat
│ │ │ │ │ ├── build_release.sh
│ │ │ │ │ ├── clean.bat
│ │ │ │ │ ├── clean.sh
│ │ │ │ │ ├── mekmimx8qx_gdb_cmd_seq
│ │ │ │ │ └── mekmimx8qx_gdbsrv.cfg
│ │ │ │ ├── board.c
│ │ │ │ ├── board.h
│ │ │ │ ├── clock_config.c
│ │ │ │ ├── clock_config.h
│ │ │ │ ├── empty_rsc_table.c
│ │ │ │ ├── ftm_pwm_twochannel.c
│ │ │ │ ├── ftm_pwm_twochannel.xml
│ │ │ │ ├── pin_mux.c
│ │ │ │ ├── pin_mux.h
│ │ │ │ └── readme.txt
│ │ │ ├── simple_pwm
│ │ │ │ ├── armgcc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ddr_ram.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_flash.ld
│ │ │ │ │ ├── MIMX8QX6xxxxx_cm4_ram.ld
│ │ │ │ │ ├── build_all.bat
│ │ │ │ │ ├── build_all.sh
│ │ │ │ │ ├── build_ddr_debug.bat
│ │ │ │ │ ├── build_ddr_debug.sh
│ │ │ │ │ ├── build_ddr_release.bat
│ │ │ │ │ ├── build_ddr_release.sh
│ │ │ │ │ ├── build_debug.bat
│ │ │ │ │ ├─

IMX8QX M4内核SDK例程(含sdk说明文档)

热门推荐

相关文章