├── .gitignore ├── _config.yml ├── assets └── css │ └── style.scss ├── docs ├── SLMX4_Data_Sheet_2022.pdf ├── XTAN-13_XeThruX4RadarUserGuide_rev_a.pdf ├── epam_fov │ ├── azi │ │ ├── epam_azi_7.1GHz.png │ │ ├── epam_azi_7.2GHz.png │ │ ├── epam_azi_7.3GHz.png │ │ ├── epam_azi_7.4GHz.png │ │ └── epam_azi_7.5GHz.png │ └── elev │ │ ├── epam_elev_7.1GHz.png │ │ ├── epam_elev_7.2GHz.png │ │ ├── epam_elev_7.3GHz.png │ │ ├── epam_elev_7.4GHz.png │ │ └── epam_elev_7.5GHz.png └── mech │ └── SLMX4-Base 2P1 PCB Mechanical.PDF ├── firmware ├── health_app.md ├── insecure_fw_update.md └── readme.md ├── images ├── MCUXpresso_firmware_update │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.PNG │ ├── 6.PNG │ ├── 7.PNG │ ├── 8.png │ └── 9.png ├── firmware_update │ ├── boot_util_1.png │ ├── boot_util_2.png │ ├── boot_util_3.png │ ├── boot_util_4.png │ ├── boot_util_5.png │ ├── slmx4_base_fw_update_boot_pins.jpg │ └── slmx4_base_normal_boot_pins.jpg ├── health_app │ ├── fast_movement_reset.png │ ├── presence.png │ └── respiration.png ├── initial_unboxing_and_setup │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── matlab │ ├── basic_capture.png │ ├── timer_test.png │ └── virtual_com.png ├── sli_logo.png ├── slmx4-base_epam0p2_system_architecture.png ├── slmx4_epam0p1.PNG ├── slmx4_white_render.png └── usb │ ├── usb_driver1.png │ ├── usb_driver2.png │ ├── usb_driver3.png │ ├── usb_driver4.png │ ├── usb_driver5.png │ ├── usb_driver6.png │ ├── usb_driver7.png │ └── usb_driver8.png ├── license.md ├── matlab ├── readme.md ├── timer_test.m ├── unit_test.m ├── vcom_test.m └── vcom_xep_radar_connector.m ├── protocol_buffers ├── README.md ├── slmx4_health.md ├── slmx4_usb_vcom.options └── slmx4_usb_vcom.proto ├── python ├── .gitignore ├── README.md ├── slmx4_health_debug.py ├── slmx4_health_polling_demo.py ├── slmx4_health_streaming_demo.py ├── slmx4_health_streaming_plot_demo.py ├── slmx4_health_wrapper.py └── slmx4_usb_vcom_pb2.py ├── readme.md ├── slmx4_projects ├── button_demo │ ├── .cproject │ ├── .gitignore │ ├── .project │ ├── CMSIS │ │ ├── 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_cm7.h │ │ ├── mpu_armv7.h │ │ └── mpu_armv8.h │ ├── amazon-freertos │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── freertos │ │ │ ├── event_groups.c │ │ │ ├── list.c │ │ │ ├── portable │ │ │ │ ├── ReadMe.url │ │ │ │ ├── heap_1.c │ │ │ │ ├── heap_2.c │ │ │ │ ├── heap_3.c │ │ │ │ ├── heap_4.c │ │ │ │ ├── heap_5.c │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ │ ├── queue.c │ │ │ ├── stream_buffer.c │ │ │ ├── tasks.c │ │ │ └── timers.c │ │ ├── include │ │ │ ├── FreeRTOS.h │ │ │ ├── deprecated_definitions.h │ │ │ ├── event_groups.h │ │ │ ├── freertos_tasks_c_additions.h │ │ │ ├── list.h │ │ │ ├── message_buffer.h │ │ │ ├── mpu_prototypes.h │ │ │ ├── mpu_wrappers.h │ │ │ ├── portable.h │ │ │ ├── projdefs.h │ │ │ ├── queue.h │ │ │ ├── semphr.h │ │ │ ├── stack_macros.h │ │ │ ├── stream_buffer.h │ │ │ ├── task.h │ │ │ ├── threading_alt.h │ │ │ └── timers.h │ │ └── license │ │ │ └── LICENSE │ ├── board │ │ ├── board.c │ │ ├── board.h │ │ ├── clock_config.c │ │ ├── clock_config.h │ │ ├── peripherals.c │ │ ├── peripherals.h │ │ ├── pin_mux.c │ │ └── pin_mux.h │ ├── component │ │ ├── lists │ │ │ ├── generic_list.c │ │ │ └── generic_list.h │ │ ├── serial_manager │ │ │ ├── serial_manager.c │ │ │ ├── serial_manager.h │ │ │ ├── serial_port_internal.h │ │ │ ├── serial_port_uart.c │ │ │ └── serial_port_uart.h │ │ └── uart │ │ │ ├── lpuart_adapter.c │ │ │ └── uart.h │ ├── device │ │ ├── MIMXRT1062.h │ │ ├── MIMXRT1062_features.h │ │ ├── fsl_device_registers.h │ │ ├── system_MIMXRT1062.c │ │ └── system_MIMXRT1062.h │ ├── doc │ │ └── amazon-freertos │ │ │ ├── ChangeLogKSDK.txt │ │ │ ├── directories.txt │ │ │ ├── freertos │ │ │ └── portable │ │ │ │ └── readme.txt │ │ │ └── license │ │ │ └── directories.txt │ ├── drivers │ │ ├── freertos │ │ │ ├── fsl_lpi2c_freertos.c │ │ │ ├── fsl_lpi2c_freertos.h │ │ │ ├── fsl_lpspi_freertos.c │ │ │ └── fsl_lpspi_freertos.h │ │ ├── fsl_clock.c │ │ ├── fsl_clock.h │ │ ├── fsl_common.c │ │ ├── fsl_common.h │ │ ├── fsl_flexspi.c │ │ ├── fsl_flexspi.h │ │ ├── fsl_gpio.c │ │ ├── fsl_gpio.h │ │ ├── fsl_iomuxc.h │ │ ├── fsl_lpi2c.c │ │ ├── fsl_lpi2c.h │ │ ├── fsl_lpspi.c │ │ ├── fsl_lpspi.h │ │ ├── fsl_lpuart.c │ │ ├── fsl_lpuart.h │ │ ├── fsl_pwm.c │ │ ├── fsl_pwm.h │ │ ├── fsl_xbara.c │ │ └── fsl_xbara.h │ ├── libs │ │ └── libarm_cortexM7lfsp_math.a │ ├── platform_slmx4 │ │ ├── ltr308_driver.c │ │ ├── ltr308_driver.h │ │ ├── slmx4_freertos.c │ │ └── slmx4_freertos.h │ ├── readme.md │ ├── source │ │ ├── FreeRTOSConfig.h │ │ ├── button_demo.c │ │ └── semihost_hardfault.c │ ├── startup │ │ └── startup_mimxrt1062.c │ ├── utilities │ │ ├── fsl_debug_console.c │ │ ├── fsl_debug_console.h │ │ ├── fsl_debug_console_conf.h │ │ ├── fsl_str.c │ │ └── fsl_str.h │ ├── xethru_xep │ │ ├── 8051_firmware.h │ │ ├── x4driver.c │ │ ├── x4driver.h │ │ ├── x4driver.md │ │ └── xtcompiler.h │ └── xip │ │ ├── fsl_flexspi_nor_boot.c │ │ ├── fsl_flexspi_nor_boot.h │ │ ├── slmx4_flexspi_nor_config.c │ │ ├── slmx4_flexspi_nor_config.h │ │ ├── slmx4_sdram_ini_dcd.c │ │ └── slmx4_sdram_ini_dcd.h ├── button_demo2 │ ├── .cproject │ ├── .gitignore │ ├── .project │ ├── CMSIS │ │ ├── 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_cm7.h │ │ ├── mpu_armv7.h │ │ └── mpu_armv8.h │ ├── amazon-freertos │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── freertos │ │ │ ├── event_groups.c │ │ │ ├── list.c │ │ │ ├── portable │ │ │ │ ├── ReadMe.url │ │ │ │ ├── heap_1.c │ │ │ │ ├── heap_2.c │ │ │ │ ├── heap_3.c │ │ │ │ ├── heap_4.c │ │ │ │ ├── heap_5.c │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ │ ├── queue.c │ │ │ ├── stream_buffer.c │ │ │ ├── tasks.c │ │ │ └── timers.c │ │ ├── include │ │ │ ├── FreeRTOS.h │ │ │ ├── deprecated_definitions.h │ │ │ ├── event_groups.h │ │ │ ├── freertos_tasks_c_additions.h │ │ │ ├── list.h │ │ │ ├── message_buffer.h │ │ │ ├── mpu_prototypes.h │ │ │ ├── mpu_wrappers.h │ │ │ ├── portable.h │ │ │ ├── projdefs.h │ │ │ ├── queue.h │ │ │ ├── semphr.h │ │ │ ├── stack_macros.h │ │ │ ├── stream_buffer.h │ │ │ ├── task.h │ │ │ ├── threading_alt.h │ │ │ └── timers.h │ │ └── license │ │ │ └── LICENSE │ ├── board │ │ ├── board.c │ │ ├── board.h │ │ ├── clock_config.c │ │ ├── clock_config.h │ │ ├── peripherals.c │ │ ├── peripherals.h │ │ ├── pin_mux.c │ │ └── pin_mux.h │ ├── component │ │ ├── lists │ │ │ ├── generic_list.c │ │ │ └── generic_list.h │ │ ├── serial_manager │ │ │ ├── serial_manager.c │ │ │ ├── serial_manager.h │ │ │ ├── serial_port_internal.h │ │ │ ├── serial_port_uart.c │ │ │ └── serial_port_uart.h │ │ └── uart │ │ │ ├── lpuart_adapter.c │ │ │ └── uart.h │ ├── device │ │ ├── MIMXRT1062.h │ │ ├── MIMXRT1062_features.h │ │ ├── fsl_device_registers.h │ │ ├── system_MIMXRT1062.c │ │ └── system_MIMXRT1062.h │ ├── doc │ │ └── amazon-freertos │ │ │ ├── ChangeLogKSDK.txt │ │ │ ├── directories.txt │ │ │ ├── freertos │ │ │ └── portable │ │ │ │ └── readme.txt │ │ │ └── license │ │ │ └── directories.txt │ ├── drivers │ │ ├── freertos │ │ │ ├── fsl_lpi2c_freertos.c │ │ │ ├── fsl_lpi2c_freertos.h │ │ │ ├── fsl_lpspi_freertos.c │ │ │ └── fsl_lpspi_freertos.h │ │ ├── fsl_clock.c │ │ ├── fsl_clock.h │ │ ├── fsl_common.c │ │ ├── fsl_common.h │ │ ├── fsl_flexspi.c │ │ ├── fsl_flexspi.h │ │ ├── fsl_gpio.c │ │ ├── fsl_gpio.h │ │ ├── fsl_iomuxc.h │ │ ├── fsl_lpi2c.c │ │ ├── fsl_lpi2c.h │ │ ├── fsl_lpspi.c │ │ ├── fsl_lpspi.h │ │ ├── fsl_lpuart.c │ │ ├── fsl_lpuart.h │ │ ├── fsl_pwm.c │ │ ├── fsl_pwm.h │ │ ├── fsl_xbara.c │ │ └── fsl_xbara.h │ ├── libs │ │ └── libarm_cortexM7lfsp_math.a │ ├── platform_slmx4 │ │ ├── ltr308_driver.c │ │ ├── ltr308_driver.h │ │ ├── slmx4_freertos.c │ │ └── slmx4_freertos.h │ ├── readme.md │ ├── source │ │ ├── FreeRTOSConfig.h │ │ ├── demo.c │ │ └── semihost_hardfault.c │ ├── startup │ │ └── startup_mimxrt1062.c │ ├── utilities │ │ ├── fsl_debug_console.c │ │ ├── fsl_debug_console.h │ │ ├── fsl_debug_console_conf.h │ │ ├── fsl_str.c │ │ └── fsl_str.h │ ├── xethru_xep │ │ ├── 8051_firmware.h │ │ ├── x4driver.c │ │ ├── x4driver.h │ │ ├── x4driver.md │ │ └── xtcompiler.h │ └── xip │ │ ├── fsl_flexspi_nor_boot.c │ │ ├── fsl_flexspi_nor_boot.h │ │ ├── slmx4_flexspi_nor_config.c │ │ ├── slmx4_flexspi_nor_config.h │ │ ├── slmx4_sdram_ini_dcd.c │ │ └── slmx4_sdram_ini_dcd.h ├── led_blink │ ├── .cproject │ ├── .gitignore │ ├── .project │ ├── CMSIS │ │ ├── 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_cm7.h │ │ ├── mpu_armv7.h │ │ └── mpu_armv8.h │ ├── amazon-freertos │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── freertos │ │ │ ├── event_groups.c │ │ │ ├── list.c │ │ │ ├── portable │ │ │ │ ├── ReadMe.url │ │ │ │ ├── heap_1.c │ │ │ │ ├── heap_2.c │ │ │ │ ├── heap_3.c │ │ │ │ ├── heap_4.c │ │ │ │ ├── heap_5.c │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ │ ├── queue.c │ │ │ ├── stream_buffer.c │ │ │ ├── tasks.c │ │ │ └── timers.c │ │ ├── include │ │ │ ├── FreeRTOS.h │ │ │ ├── deprecated_definitions.h │ │ │ ├── event_groups.h │ │ │ ├── freertos_tasks_c_additions.h │ │ │ ├── list.h │ │ │ ├── message_buffer.h │ │ │ ├── mpu_prototypes.h │ │ │ ├── mpu_wrappers.h │ │ │ ├── portable.h │ │ │ ├── projdefs.h │ │ │ ├── queue.h │ │ │ ├── semphr.h │ │ │ ├── stack_macros.h │ │ │ ├── stream_buffer.h │ │ │ ├── task.h │ │ │ ├── threading_alt.h │ │ │ └── timers.h │ │ └── license │ │ │ └── LICENSE │ ├── board │ │ ├── board.c │ │ ├── board.h │ │ ├── clock_config.c │ │ ├── clock_config.h │ │ ├── peripherals.c │ │ ├── peripherals.h │ │ ├── pin_mux.c │ │ └── pin_mux.h │ ├── component │ │ ├── lists │ │ │ ├── generic_list.c │ │ │ └── generic_list.h │ │ ├── serial_manager │ │ │ ├── serial_manager.c │ │ │ ├── serial_manager.h │ │ │ ├── serial_port_internal.h │ │ │ ├── serial_port_uart.c │ │ │ └── serial_port_uart.h │ │ └── uart │ │ │ ├── lpuart_adapter.c │ │ │ └── uart.h │ ├── device │ │ ├── MIMXRT1062.h │ │ ├── MIMXRT1062_features.h │ │ ├── fsl_device_registers.h │ │ ├── system_MIMXRT1062.c │ │ └── system_MIMXRT1062.h │ ├── doc │ │ └── amazon-freertos │ │ │ ├── ChangeLogKSDK.txt │ │ │ ├── directories.txt │ │ │ ├── freertos │ │ │ └── portable │ │ │ │ └── readme.txt │ │ │ └── license │ │ │ └── directories.txt │ ├── drivers │ │ ├── freertos │ │ │ ├── fsl_lpi2c_freertos.c │ │ │ ├── fsl_lpi2c_freertos.h │ │ │ ├── fsl_lpspi_freertos.c │ │ │ └── fsl_lpspi_freertos.h │ │ ├── fsl_clock.c │ │ ├── fsl_clock.h │ │ ├── fsl_common.c │ │ ├── fsl_common.h │ │ ├── fsl_flexspi.c │ │ ├── fsl_flexspi.h │ │ ├── fsl_gpio.c │ │ ├── fsl_gpio.h │ │ ├── fsl_iomuxc.h │ │ ├── fsl_lpi2c.c │ │ ├── fsl_lpi2c.h │ │ ├── fsl_lpspi.c │ │ ├── fsl_lpspi.h │ │ ├── fsl_lpuart.c │ │ ├── fsl_lpuart.h │ │ ├── fsl_pwm.c │ │ ├── fsl_pwm.h │ │ ├── fsl_xbara.c │ │ └── fsl_xbara.h │ ├── libs │ │ └── libarm_cortexM7lfsp_math.a │ ├── platform_slmx4 │ │ ├── ltr308_driver.c │ │ ├── ltr308_driver.h │ │ ├── slmx4_freertos.c │ │ └── slmx4_freertos.h │ ├── readme.md │ ├── source │ │ ├── FreeRTOSConfig.h │ │ ├── led_blink.c │ │ └── semihost_hardfault.c │ ├── startup │ │ └── startup_mimxrt1062.c │ ├── utilities │ │ ├── fsl_debug_console.c │ │ ├── fsl_debug_console.h │ │ ├── fsl_debug_console_conf.h │ │ ├── fsl_str.c │ │ └── fsl_str.h │ ├── xethru_xep │ │ ├── 8051_firmware.h │ │ ├── x4driver.c │ │ ├── x4driver.h │ │ ├── x4driver.md │ │ └── xtcompiler.h │ └── xip │ │ ├── fsl_flexspi_nor_boot.c │ │ ├── fsl_flexspi_nor_boot.h │ │ ├── slmx4_flexspi_nor_config.c │ │ ├── slmx4_flexspi_nor_config.h │ │ ├── slmx4_sdram_ini_dcd.c │ │ └── slmx4_sdram_ini_dcd.h ├── lux_demo │ ├── .cproject │ ├── .gitignore │ ├── .project │ ├── CMSIS │ │ ├── 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_cm7.h │ │ ├── mpu_armv7.h │ │ └── mpu_armv8.h │ ├── amazon-freertos │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── freertos │ │ │ ├── event_groups.c │ │ │ ├── list.c │ │ │ ├── portable │ │ │ │ ├── ReadMe.url │ │ │ │ ├── heap_1.c │ │ │ │ ├── heap_2.c │ │ │ │ ├── heap_3.c │ │ │ │ ├── heap_4.c │ │ │ │ ├── heap_5.c │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ │ ├── queue.c │ │ │ ├── stream_buffer.c │ │ │ ├── tasks.c │ │ │ └── timers.c │ │ ├── include │ │ │ ├── FreeRTOS.h │ │ │ ├── deprecated_definitions.h │ │ │ ├── event_groups.h │ │ │ ├── freertos_tasks_c_additions.h │ │ │ ├── list.h │ │ │ ├── message_buffer.h │ │ │ ├── mpu_prototypes.h │ │ │ ├── mpu_wrappers.h │ │ │ ├── portable.h │ │ │ ├── projdefs.h │ │ │ ├── queue.h │ │ │ ├── semphr.h │ │ │ ├── stack_macros.h │ │ │ ├── stream_buffer.h │ │ │ ├── task.h │ │ │ ├── threading_alt.h │ │ │ └── timers.h │ │ └── license │ │ │ └── LICENSE │ ├── board │ │ ├── board.c │ │ ├── board.h │ │ ├── clock_config.c │ │ ├── clock_config.h │ │ ├── peripherals.c │ │ ├── peripherals.h │ │ ├── pin_mux.c │ │ └── pin_mux.h │ ├── component │ │ ├── lists │ │ │ ├── generic_list.c │ │ │ └── generic_list.h │ │ ├── serial_manager │ │ │ ├── serial_manager.c │ │ │ ├── serial_manager.h │ │ │ ├── serial_port_internal.h │ │ │ ├── serial_port_uart.c │ │ │ └── serial_port_uart.h │ │ └── uart │ │ │ ├── lpuart_adapter.c │ │ │ └── uart.h │ ├── device │ │ ├── MIMXRT1062.h │ │ ├── MIMXRT1062_features.h │ │ ├── fsl_device_registers.h │ │ ├── system_MIMXRT1062.c │ │ └── system_MIMXRT1062.h │ ├── doc │ │ └── amazon-freertos │ │ │ ├── ChangeLogKSDK.txt │ │ │ ├── directories.txt │ │ │ ├── freertos │ │ │ └── portable │ │ │ │ └── readme.txt │ │ │ └── license │ │ │ └── directories.txt │ ├── drivers │ │ ├── freertos │ │ │ ├── fsl_lpi2c_freertos.c │ │ │ ├── fsl_lpi2c_freertos.h │ │ │ ├── fsl_lpspi_freertos.c │ │ │ └── fsl_lpspi_freertos.h │ │ ├── fsl_clock.c │ │ ├── fsl_clock.h │ │ ├── fsl_common.c │ │ ├── fsl_common.h │ │ ├── fsl_flexspi.c │ │ ├── fsl_flexspi.h │ │ ├── fsl_gpio.c │ │ ├── fsl_gpio.h │ │ ├── fsl_iomuxc.h │ │ ├── fsl_lpi2c.c │ │ ├── fsl_lpi2c.h │ │ ├── fsl_lpspi.c │ │ ├── fsl_lpspi.h │ │ ├── fsl_lpuart.c │ │ ├── fsl_lpuart.h │ │ ├── fsl_pwm.c │ │ ├── fsl_pwm.h │ │ ├── fsl_xbara.c │ │ └── fsl_xbara.h │ ├── libs │ │ └── libarm_cortexM7lfsp_math.a │ ├── platform_slmx4 │ │ ├── ltr308_driver.c │ │ ├── ltr308_driver.h │ │ ├── slmx4_freertos.c │ │ └── slmx4_freertos.h │ ├── readme.md │ ├── source │ │ ├── FreeRTOSConfig.h │ │ ├── demo.c │ │ └── semihost_hardfault.c │ ├── startup │ │ └── startup_mimxrt1062.c │ ├── utilities │ │ ├── fsl_debug_console.c │ │ ├── fsl_debug_console.h │ │ ├── fsl_debug_console_conf.h │ │ ├── fsl_str.c │ │ └── fsl_str.h │ ├── xethru_xep │ │ ├── 8051_firmware.h │ │ ├── x4driver.c │ │ ├── x4driver.h │ │ ├── x4driver.md │ │ └── xtcompiler.h │ └── xip │ │ ├── fsl_flexspi_nor_boot.c │ │ ├── fsl_flexspi_nor_boot.h │ │ ├── slmx4_flexspi_nor_config.c │ │ ├── slmx4_flexspi_nor_config.h │ │ ├── slmx4_sdram_ini_dcd.c │ │ └── slmx4_sdram_ini_dcd.h ├── readme.md └── vcom_xep_matlab_server │ ├── .cproject │ ├── .gitignore │ ├── .project │ ├── .settings │ └── language.settings.xml │ ├── CMSIS │ ├── 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_cm7.h │ ├── mpu_armv7.h │ └── mpu_armv8.h │ ├── amazon-freertos │ ├── CHANGELOG.md │ ├── README.md │ ├── freertos │ │ ├── event_groups.c │ │ ├── list.c │ │ ├── portable │ │ │ ├── ReadMe.url │ │ │ ├── heap_1.c │ │ │ ├── heap_2.c │ │ │ ├── heap_3.c │ │ │ ├── heap_4.c │ │ │ ├── heap_5.c │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── queue.c │ │ ├── stream_buffer.c │ │ ├── tasks.c │ │ └── timers.c │ ├── include │ │ ├── FreeRTOS.h │ │ ├── deprecated_definitions.h │ │ ├── event_groups.h │ │ ├── freertos_tasks_c_additions.h │ │ ├── list.h │ │ ├── message_buffer.h │ │ ├── mpu_prototypes.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── projdefs.h │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── stack_macros.h │ │ ├── stream_buffer.h │ │ ├── task.h │ │ ├── threading_alt.h │ │ └── timers.h │ └── license │ │ └── LICENSE │ ├── board │ ├── board.c │ ├── board.h │ ├── clock_config.c │ ├── clock_config.h │ ├── peripherals.c │ ├── peripherals.h │ ├── pin_mux.c │ └── pin_mux.h │ ├── component │ ├── i2c │ │ ├── i2c.h │ │ └── lpi2c_adapter.c │ ├── lists │ │ ├── generic_list.c │ │ └── generic_list.h │ ├── serial_manager │ │ ├── serial_manager.c │ │ ├── serial_manager.h │ │ ├── serial_port_internal.h │ │ ├── serial_port_uart.c │ │ └── serial_port_uart.h │ └── uart │ │ ├── lpuart_adapter.c │ │ └── uart.h │ ├── device │ ├── MIMXRT1062.h │ ├── MIMXRT1062_features.h │ ├── fsl_device_registers.h │ ├── system_MIMXRT1062.c │ └── system_MIMXRT1062.h │ ├── doc │ └── amazon-freertos │ │ ├── ChangeLogKSDK.txt │ │ ├── directories.txt │ │ ├── freertos │ │ └── portable │ │ │ └── readme.txt │ │ └── license │ │ └── directories.txt │ ├── drivers │ ├── freertos │ │ ├── fsl_lpi2c_freertos.c │ │ ├── fsl_lpi2c_freertos.h │ │ ├── fsl_lpspi_freertos.c │ │ └── fsl_lpspi_freertos.h │ ├── fsl_clock.c │ ├── fsl_clock.h │ ├── fsl_common.c │ ├── fsl_common.h │ ├── fsl_dmamux.c │ ├── fsl_dmamux.h │ ├── fsl_edma.c │ ├── fsl_edma.h │ ├── fsl_gpio.c │ ├── fsl_gpio.h │ ├── fsl_iomuxc.h │ ├── fsl_lpi2c.c │ ├── fsl_lpi2c.h │ ├── fsl_lpspi.c │ ├── fsl_lpspi.h │ ├── fsl_lpuart.c │ ├── fsl_lpuart.h │ ├── fsl_pwm.c │ ├── fsl_pwm.h │ ├── fsl_semc.c │ ├── fsl_semc.h │ ├── fsl_snvs_hp.c │ ├── fsl_snvs_hp.h │ ├── fsl_usdhc.c │ ├── fsl_usdhc.h │ ├── fsl_xbara.c │ └── fsl_xbara.h │ ├── libs │ └── libarm_cortexM7lfsp_math.a │ ├── osa │ ├── usb_osa.h │ ├── usb_osa_freertos.c │ └── usb_osa_freertos.h │ ├── platform_slmx4 │ ├── slmx4_freertos.c │ └── slmx4_freertos.h │ ├── source │ ├── FreeRTOSConfig.h │ ├── ffconf.h │ ├── mat_handler.c │ ├── mat_handler.h │ ├── project.h │ ├── semihost_hardfault.c │ ├── usb_device_config.h │ ├── usb_device_descriptor.c │ ├── usb_device_descriptor.h │ ├── virtual_com.c │ ├── virtual_com.h │ ├── x4_post_norm.c │ └── x4_post_norm.h │ ├── startup │ └── startup_mimxrt1062.c │ ├── usb │ ├── device │ │ ├── class │ │ │ ├── cdc │ │ │ │ ├── usb_device_cdc_acm.c │ │ │ │ └── usb_device_cdc_acm.h │ │ │ ├── usb_device_class.c │ │ │ └── usb_device_class.h │ │ ├── include │ │ │ └── usb_device.h │ │ └── source │ │ │ ├── ehci │ │ │ ├── usb_device_ehci.c │ │ │ └── usb_device_ehci.h │ │ │ ├── usb_device_ch9.c │ │ │ ├── usb_device_ch9.h │ │ │ ├── usb_device_dci.c │ │ │ └── usb_device_dci.h │ ├── include │ │ ├── usb.h │ │ ├── usb_misc.h │ │ └── usb_spec.h │ └── phy │ │ ├── usb_phy.c │ │ └── usb_phy.h │ ├── utilities │ ├── fsl_debug_console.c │ ├── fsl_debug_console.h │ ├── fsl_debug_console_conf.h │ ├── fsl_str.c │ └── fsl_str.h │ ├── xethru_xep │ ├── 8051_firmware.h │ ├── x4driver.c │ ├── x4driver.h │ ├── x4driver.md │ └── xtcompiler.h │ └── xip │ ├── fsl_flexspi_nor_boot.c │ ├── fsl_flexspi_nor_boot.h │ ├── slmx4_flexspi_nor_config.c │ ├── slmx4_flexspi_nor_config.h │ ├── slmx4_sdram_ini_dcd.c │ └── slmx4_sdram_ini_dcd.h ├── unboxing_quick_start └── readme.md └── usb_driver ├── README.md └── inf ├── cdc.cat └── fsl_ucwxp.inf /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.exe 3 | *.dll 4 | *.s19 5 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @import "{{ site.theme }}"; 5 | 6 | .inner { 7 | max-width: 60%; 8 | } 9 | -------------------------------------------------------------------------------- /docs/SLMX4_Data_Sheet_2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/docs/SLMX4_Data_Sheet_2022.pdf -------------------------------------------------------------------------------- /docs/XTAN-13_XeThruX4RadarUserGuide_rev_a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/docs/XTAN-13_XeThruX4RadarUserGuide_rev_a.pdf -------------------------------------------------------------------------------- /docs/epam_fov/azi/epam_azi_7.1GHz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/docs/epam_fov/azi/epam_azi_7.1GHz.png -------------------------------------------------------------------------------- /docs/epam_fov/azi/epam_azi_7.2GHz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/docs/epam_fov/azi/epam_azi_7.2GHz.png -------------------------------------------------------------------------------- /docs/epam_fov/azi/epam_azi_7.3GHz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/docs/epam_fov/azi/epam_azi_7.3GHz.png -------------------------------------------------------------------------------- /docs/epam_fov/azi/epam_azi_7.4GHz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/docs/epam_fov/azi/epam_azi_7.4GHz.png -------------------------------------------------------------------------------- /docs/epam_fov/azi/epam_azi_7.5GHz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/docs/epam_fov/azi/epam_azi_7.5GHz.png -------------------------------------------------------------------------------- /docs/epam_fov/elev/epam_elev_7.1GHz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/docs/epam_fov/elev/epam_elev_7.1GHz.png -------------------------------------------------------------------------------- /docs/epam_fov/elev/epam_elev_7.2GHz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/docs/epam_fov/elev/epam_elev_7.2GHz.png -------------------------------------------------------------------------------- /docs/epam_fov/elev/epam_elev_7.3GHz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/docs/epam_fov/elev/epam_elev_7.3GHz.png -------------------------------------------------------------------------------- /docs/epam_fov/elev/epam_elev_7.4GHz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/docs/epam_fov/elev/epam_elev_7.4GHz.png -------------------------------------------------------------------------------- /docs/epam_fov/elev/epam_elev_7.5GHz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/docs/epam_fov/elev/epam_elev_7.5GHz.png -------------------------------------------------------------------------------- /docs/mech/SLMX4-Base 2P1 PCB Mechanical.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/docs/mech/SLMX4-Base 2P1 PCB Mechanical.PDF -------------------------------------------------------------------------------- /firmware/health_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/firmware/health_app.md -------------------------------------------------------------------------------- /firmware/insecure_fw_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/firmware/insecure_fw_update.md -------------------------------------------------------------------------------- /firmware/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/firmware/readme.md -------------------------------------------------------------------------------- /images/MCUXpresso_firmware_update/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/MCUXpresso_firmware_update/1.png -------------------------------------------------------------------------------- /images/MCUXpresso_firmware_update/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/MCUXpresso_firmware_update/10.png -------------------------------------------------------------------------------- /images/MCUXpresso_firmware_update/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/MCUXpresso_firmware_update/11.png -------------------------------------------------------------------------------- /images/MCUXpresso_firmware_update/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/MCUXpresso_firmware_update/12.png -------------------------------------------------------------------------------- /images/MCUXpresso_firmware_update/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/MCUXpresso_firmware_update/13.png -------------------------------------------------------------------------------- /images/MCUXpresso_firmware_update/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/MCUXpresso_firmware_update/2.png -------------------------------------------------------------------------------- /images/MCUXpresso_firmware_update/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/MCUXpresso_firmware_update/3.png -------------------------------------------------------------------------------- /images/MCUXpresso_firmware_update/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/MCUXpresso_firmware_update/4.png -------------------------------------------------------------------------------- /images/MCUXpresso_firmware_update/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/MCUXpresso_firmware_update/5.PNG -------------------------------------------------------------------------------- /images/MCUXpresso_firmware_update/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/MCUXpresso_firmware_update/6.PNG -------------------------------------------------------------------------------- /images/MCUXpresso_firmware_update/7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/MCUXpresso_firmware_update/7.PNG -------------------------------------------------------------------------------- /images/MCUXpresso_firmware_update/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/MCUXpresso_firmware_update/8.png -------------------------------------------------------------------------------- /images/MCUXpresso_firmware_update/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/MCUXpresso_firmware_update/9.png -------------------------------------------------------------------------------- /images/firmware_update/boot_util_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/firmware_update/boot_util_1.png -------------------------------------------------------------------------------- /images/firmware_update/boot_util_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/firmware_update/boot_util_2.png -------------------------------------------------------------------------------- /images/firmware_update/boot_util_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/firmware_update/boot_util_3.png -------------------------------------------------------------------------------- /images/firmware_update/boot_util_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/firmware_update/boot_util_4.png -------------------------------------------------------------------------------- /images/firmware_update/boot_util_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/firmware_update/boot_util_5.png -------------------------------------------------------------------------------- /images/firmware_update/slmx4_base_fw_update_boot_pins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/firmware_update/slmx4_base_fw_update_boot_pins.jpg -------------------------------------------------------------------------------- /images/firmware_update/slmx4_base_normal_boot_pins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/firmware_update/slmx4_base_normal_boot_pins.jpg -------------------------------------------------------------------------------- /images/health_app/fast_movement_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/health_app/fast_movement_reset.png -------------------------------------------------------------------------------- /images/health_app/presence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/health_app/presence.png -------------------------------------------------------------------------------- /images/health_app/respiration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/health_app/respiration.png -------------------------------------------------------------------------------- /images/initial_unboxing_and_setup/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/initial_unboxing_and_setup/1.png -------------------------------------------------------------------------------- /images/initial_unboxing_and_setup/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/initial_unboxing_and_setup/10.png -------------------------------------------------------------------------------- /images/initial_unboxing_and_setup/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/initial_unboxing_and_setup/11.png -------------------------------------------------------------------------------- /images/initial_unboxing_and_setup/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/initial_unboxing_and_setup/2.png -------------------------------------------------------------------------------- /images/initial_unboxing_and_setup/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/initial_unboxing_and_setup/3.png -------------------------------------------------------------------------------- /images/initial_unboxing_and_setup/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/initial_unboxing_and_setup/4.png -------------------------------------------------------------------------------- /images/initial_unboxing_and_setup/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/initial_unboxing_and_setup/5.png -------------------------------------------------------------------------------- /images/initial_unboxing_and_setup/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/initial_unboxing_and_setup/6.png -------------------------------------------------------------------------------- /images/initial_unboxing_and_setup/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/initial_unboxing_and_setup/7.png -------------------------------------------------------------------------------- /images/initial_unboxing_and_setup/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/initial_unboxing_and_setup/8.png -------------------------------------------------------------------------------- /images/initial_unboxing_and_setup/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/initial_unboxing_and_setup/9.png -------------------------------------------------------------------------------- /images/matlab/basic_capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/matlab/basic_capture.png -------------------------------------------------------------------------------- /images/matlab/timer_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/matlab/timer_test.png -------------------------------------------------------------------------------- /images/matlab/virtual_com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/matlab/virtual_com.png -------------------------------------------------------------------------------- /images/sli_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/sli_logo.png -------------------------------------------------------------------------------- /images/slmx4-base_epam0p2_system_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/slmx4-base_epam0p2_system_architecture.png -------------------------------------------------------------------------------- /images/slmx4_epam0p1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/slmx4_epam0p1.PNG -------------------------------------------------------------------------------- /images/slmx4_white_render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/slmx4_white_render.png -------------------------------------------------------------------------------- /images/usb/usb_driver1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/usb/usb_driver1.png -------------------------------------------------------------------------------- /images/usb/usb_driver2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/usb/usb_driver2.png -------------------------------------------------------------------------------- /images/usb/usb_driver3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/usb/usb_driver3.png -------------------------------------------------------------------------------- /images/usb/usb_driver4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/usb/usb_driver4.png -------------------------------------------------------------------------------- /images/usb/usb_driver5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/usb/usb_driver5.png -------------------------------------------------------------------------------- /images/usb/usb_driver6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/usb/usb_driver6.png -------------------------------------------------------------------------------- /images/usb/usb_driver7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/usb/usb_driver7.png -------------------------------------------------------------------------------- /images/usb/usb_driver8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/images/usb/usb_driver8.png -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/license.md -------------------------------------------------------------------------------- /matlab/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/matlab/readme.md -------------------------------------------------------------------------------- /matlab/timer_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/matlab/timer_test.m -------------------------------------------------------------------------------- /matlab/unit_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/matlab/unit_test.m -------------------------------------------------------------------------------- /matlab/vcom_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/matlab/vcom_test.m -------------------------------------------------------------------------------- /matlab/vcom_xep_radar_connector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/matlab/vcom_xep_radar_connector.m -------------------------------------------------------------------------------- /protocol_buffers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/protocol_buffers/README.md -------------------------------------------------------------------------------- /protocol_buffers/slmx4_health.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/protocol_buffers/slmx4_health.md -------------------------------------------------------------------------------- /protocol_buffers/slmx4_usb_vcom.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/protocol_buffers/slmx4_usb_vcom.options -------------------------------------------------------------------------------- /protocol_buffers/slmx4_usb_vcom.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/protocol_buffers/slmx4_usb_vcom.proto -------------------------------------------------------------------------------- /python/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/python/README.md -------------------------------------------------------------------------------- /python/slmx4_health_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/python/slmx4_health_debug.py -------------------------------------------------------------------------------- /python/slmx4_health_polling_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/python/slmx4_health_polling_demo.py -------------------------------------------------------------------------------- /python/slmx4_health_streaming_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/python/slmx4_health_streaming_demo.py -------------------------------------------------------------------------------- /python/slmx4_health_streaming_plot_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/python/slmx4_health_streaming_plot_demo.py -------------------------------------------------------------------------------- /python/slmx4_health_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/python/slmx4_health_wrapper.py -------------------------------------------------------------------------------- /python/slmx4_usb_vcom_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/python/slmx4_usb_vcom_pb2.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/readme.md -------------------------------------------------------------------------------- /slmx4_projects/button_demo/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/.cproject -------------------------------------------------------------------------------- /slmx4_projects/button_demo/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | /.settings/ 3 | *.launch 4 | -------------------------------------------------------------------------------- /slmx4_projects/button_demo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/.project -------------------------------------------------------------------------------- /slmx4_projects/button_demo/CMSIS/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/CMSIS/arm_common_tables.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/CMSIS/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/CMSIS/arm_const_structs.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/CMSIS/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/CMSIS/arm_math.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/CMSIS/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/CMSIS/cmsis_armcc.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/CMSIS/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/CMSIS/cmsis_armclang.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/CMSIS/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/CMSIS/cmsis_compiler.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/CMSIS/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/CMSIS/cmsis_gcc.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/CMSIS/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/CMSIS/cmsis_iccarm.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/CMSIS/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/CMSIS/cmsis_version.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/CMSIS/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/CMSIS/core_armv8mbl.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/CMSIS/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/CMSIS/core_armv8mml.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/CMSIS/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/CMSIS/core_cm7.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/CMSIS/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/CMSIS/mpu_armv7.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/CMSIS/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/CMSIS/mpu_armv8.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/CHANGELOG.md -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/README.md -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/freertos/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/freertos/event_groups.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/freertos/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/freertos/list.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/freertos/portable/ReadMe.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/freertos/portable/ReadMe.url -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/freertos/portable/heap_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/freertos/portable/heap_1.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/freertos/portable/heap_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/freertos/portable/heap_2.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/freertos/portable/heap_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/freertos/portable/heap_3.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/freertos/portable/heap_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/freertos/portable/heap_4.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/freertos/portable/heap_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/freertos/portable/heap_5.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/freertos/portable/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/freertos/portable/port.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/freertos/portable/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/freertos/portable/portmacro.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/freertos/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/freertos/queue.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/freertos/stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/freertos/stream_buffer.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/freertos/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/freertos/tasks.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/freertos/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/freertos/timers.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/include/FreeRTOS.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/include/deprecated_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/include/deprecated_definitions.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/include/event_groups.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/include/freertos_tasks_c_additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/include/freertos_tasks_c_additions.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/include/list.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/include/message_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/include/message_buffer.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/include/mpu_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/include/mpu_prototypes.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/include/mpu_wrappers.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/include/portable.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/include/projdefs.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/include/queue.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/include/semphr.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/include/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/include/stack_macros.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/include/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/include/stream_buffer.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/include/task.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/include/threading_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/include/threading_alt.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/include/timers.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/amazon-freertos/license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/amazon-freertos/license/LICENSE -------------------------------------------------------------------------------- /slmx4_projects/button_demo/board/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/board/board.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/board/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/board/board.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/board/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/board/clock_config.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/board/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/board/clock_config.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/board/peripherals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/board/peripherals.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/board/peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/board/peripherals.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/board/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/board/pin_mux.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/board/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/board/pin_mux.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/component/lists/generic_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/component/lists/generic_list.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/component/lists/generic_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/component/lists/generic_list.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/component/serial_manager/serial_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/component/serial_manager/serial_manager.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/component/serial_manager/serial_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/component/serial_manager/serial_manager.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/component/serial_manager/serial_port_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/component/serial_manager/serial_port_internal.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/component/serial_manager/serial_port_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/component/serial_manager/serial_port_uart.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/component/serial_manager/serial_port_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/component/serial_manager/serial_port_uart.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/component/uart/lpuart_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/component/uart/lpuart_adapter.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/component/uart/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/component/uart/uart.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/device/MIMXRT1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/device/MIMXRT1062.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/device/MIMXRT1062_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/device/MIMXRT1062_features.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/device/fsl_device_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/device/fsl_device_registers.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/device/system_MIMXRT1062.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/device/system_MIMXRT1062.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/device/system_MIMXRT1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/device/system_MIMXRT1062.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/doc/amazon-freertos/ChangeLogKSDK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/doc/amazon-freertos/ChangeLogKSDK.txt -------------------------------------------------------------------------------- /slmx4_projects/button_demo/doc/amazon-freertos/directories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/doc/amazon-freertos/directories.txt -------------------------------------------------------------------------------- /slmx4_projects/button_demo/doc/amazon-freertos/freertos/portable/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/doc/amazon-freertos/freertos/portable/readme.txt -------------------------------------------------------------------------------- /slmx4_projects/button_demo/doc/amazon-freertos/license/directories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/doc/amazon-freertos/license/directories.txt -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/freertos/fsl_lpi2c_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/freertos/fsl_lpi2c_freertos.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/freertos/fsl_lpi2c_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/freertos/fsl_lpi2c_freertos.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/freertos/fsl_lpspi_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/freertos/fsl_lpspi_freertos.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/freertos/fsl_lpspi_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/freertos/fsl_lpspi_freertos.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_clock.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_clock.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_common.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_common.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_flexspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_flexspi.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_flexspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_flexspi.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_gpio.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_gpio.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_iomuxc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_iomuxc.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_lpi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_lpi2c.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_lpi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_lpi2c.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_lpspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_lpspi.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_lpspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_lpspi.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_lpuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_lpuart.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_lpuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_lpuart.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_pwm.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_pwm.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_xbara.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_xbara.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/drivers/fsl_xbara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/drivers/fsl_xbara.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/libs/libarm_cortexM7lfsp_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/libs/libarm_cortexM7lfsp_math.a -------------------------------------------------------------------------------- /slmx4_projects/button_demo/platform_slmx4/ltr308_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/platform_slmx4/ltr308_driver.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/platform_slmx4/ltr308_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/platform_slmx4/ltr308_driver.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/platform_slmx4/slmx4_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/platform_slmx4/slmx4_freertos.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/platform_slmx4/slmx4_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/platform_slmx4/slmx4_freertos.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/readme.md -------------------------------------------------------------------------------- /slmx4_projects/button_demo/source/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/source/FreeRTOSConfig.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/source/button_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/source/button_demo.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/source/semihost_hardfault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/source/semihost_hardfault.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/startup/startup_mimxrt1062.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/startup/startup_mimxrt1062.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/utilities/fsl_debug_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/utilities/fsl_debug_console.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/utilities/fsl_debug_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/utilities/fsl_debug_console.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/utilities/fsl_debug_console_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/utilities/fsl_debug_console_conf.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/utilities/fsl_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/utilities/fsl_str.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/utilities/fsl_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/utilities/fsl_str.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/xethru_xep/8051_firmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/xethru_xep/8051_firmware.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/xethru_xep/x4driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/xethru_xep/x4driver.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/xethru_xep/x4driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/xethru_xep/x4driver.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/xethru_xep/x4driver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/xethru_xep/x4driver.md -------------------------------------------------------------------------------- /slmx4_projects/button_demo/xethru_xep/xtcompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/xethru_xep/xtcompiler.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/xip/fsl_flexspi_nor_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/xip/fsl_flexspi_nor_boot.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/xip/fsl_flexspi_nor_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/xip/fsl_flexspi_nor_boot.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/xip/slmx4_flexspi_nor_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/xip/slmx4_flexspi_nor_config.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/xip/slmx4_flexspi_nor_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/xip/slmx4_flexspi_nor_config.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo/xip/slmx4_sdram_ini_dcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/xip/slmx4_sdram_ini_dcd.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo/xip/slmx4_sdram_ini_dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo/xip/slmx4_sdram_ini_dcd.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/.cproject -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | /.settings/ 3 | *.launch -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/.project -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/CMSIS/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/CMSIS/arm_common_tables.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/CMSIS/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/CMSIS/arm_const_structs.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/CMSIS/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/CMSIS/arm_math.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/CMSIS/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/CMSIS/cmsis_armcc.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/CMSIS/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/CMSIS/cmsis_armclang.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/CMSIS/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/CMSIS/cmsis_compiler.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/CMSIS/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/CMSIS/cmsis_gcc.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/CMSIS/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/CMSIS/cmsis_iccarm.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/CMSIS/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/CMSIS/cmsis_version.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/CMSIS/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/CMSIS/core_armv8mbl.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/CMSIS/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/CMSIS/core_armv8mml.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/CMSIS/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/CMSIS/core_cm7.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/CMSIS/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/CMSIS/mpu_armv7.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/CMSIS/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/CMSIS/mpu_armv8.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/CHANGELOG.md -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/README.md -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/freertos/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/freertos/event_groups.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/freertos/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/freertos/list.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/freertos/portable/ReadMe.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/freertos/portable/ReadMe.url -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/freertos/portable/heap_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/freertos/portable/heap_1.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/freertos/portable/heap_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/freertos/portable/heap_2.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/freertos/portable/heap_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/freertos/portable/heap_3.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/freertos/portable/heap_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/freertos/portable/heap_4.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/freertos/portable/heap_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/freertos/portable/heap_5.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/freertos/portable/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/freertos/portable/port.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/freertos/portable/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/freertos/portable/portmacro.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/freertos/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/freertos/queue.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/freertos/stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/freertos/stream_buffer.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/freertos/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/freertos/tasks.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/freertos/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/freertos/timers.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/include/FreeRTOS.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/include/deprecated_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/include/deprecated_definitions.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/include/event_groups.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/include/freertos_tasks_c_additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/include/freertos_tasks_c_additions.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/include/list.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/include/message_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/include/message_buffer.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/include/mpu_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/include/mpu_prototypes.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/include/mpu_wrappers.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/include/portable.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/include/projdefs.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/include/queue.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/include/semphr.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/include/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/include/stack_macros.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/include/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/include/stream_buffer.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/include/task.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/include/threading_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/include/threading_alt.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/include/timers.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/amazon-freertos/license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/amazon-freertos/license/LICENSE -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/board/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/board/board.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/board/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/board/board.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/board/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/board/clock_config.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/board/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/board/clock_config.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/board/peripherals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/board/peripherals.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/board/peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/board/peripherals.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/board/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/board/pin_mux.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/board/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/board/pin_mux.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/component/lists/generic_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/component/lists/generic_list.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/component/lists/generic_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/component/lists/generic_list.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/component/serial_manager/serial_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/component/serial_manager/serial_manager.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/component/serial_manager/serial_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/component/serial_manager/serial_manager.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/component/serial_manager/serial_port_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/component/serial_manager/serial_port_internal.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/component/serial_manager/serial_port_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/component/serial_manager/serial_port_uart.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/component/serial_manager/serial_port_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/component/serial_manager/serial_port_uart.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/component/uart/lpuart_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/component/uart/lpuart_adapter.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/component/uart/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/component/uart/uart.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/device/MIMXRT1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/device/MIMXRT1062.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/device/MIMXRT1062_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/device/MIMXRT1062_features.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/device/fsl_device_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/device/fsl_device_registers.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/device/system_MIMXRT1062.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/device/system_MIMXRT1062.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/device/system_MIMXRT1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/device/system_MIMXRT1062.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/doc/amazon-freertos/ChangeLogKSDK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/doc/amazon-freertos/ChangeLogKSDK.txt -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/doc/amazon-freertos/directories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/doc/amazon-freertos/directories.txt -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/doc/amazon-freertos/freertos/portable/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/doc/amazon-freertos/freertos/portable/readme.txt -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/doc/amazon-freertos/license/directories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/doc/amazon-freertos/license/directories.txt -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/freertos/fsl_lpi2c_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/freertos/fsl_lpi2c_freertos.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/freertos/fsl_lpi2c_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/freertos/fsl_lpi2c_freertos.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/freertos/fsl_lpspi_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/freertos/fsl_lpspi_freertos.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/freertos/fsl_lpspi_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/freertos/fsl_lpspi_freertos.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_clock.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_clock.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_common.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_common.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_flexspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_flexspi.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_flexspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_flexspi.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_gpio.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_gpio.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_iomuxc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_iomuxc.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_lpi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_lpi2c.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_lpi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_lpi2c.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_lpspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_lpspi.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_lpspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_lpspi.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_lpuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_lpuart.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_lpuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_lpuart.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_pwm.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_pwm.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_xbara.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_xbara.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/drivers/fsl_xbara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/drivers/fsl_xbara.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/libs/libarm_cortexM7lfsp_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/libs/libarm_cortexM7lfsp_math.a -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/platform_slmx4/ltr308_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/platform_slmx4/ltr308_driver.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/platform_slmx4/ltr308_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/platform_slmx4/ltr308_driver.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/platform_slmx4/slmx4_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/platform_slmx4/slmx4_freertos.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/platform_slmx4/slmx4_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/platform_slmx4/slmx4_freertos.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/readme.md -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/source/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/source/FreeRTOSConfig.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/source/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/source/demo.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/source/semihost_hardfault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/source/semihost_hardfault.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/startup/startup_mimxrt1062.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/startup/startup_mimxrt1062.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/utilities/fsl_debug_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/utilities/fsl_debug_console.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/utilities/fsl_debug_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/utilities/fsl_debug_console.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/utilities/fsl_debug_console_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/utilities/fsl_debug_console_conf.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/utilities/fsl_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/utilities/fsl_str.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/utilities/fsl_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/utilities/fsl_str.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/xethru_xep/8051_firmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/xethru_xep/8051_firmware.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/xethru_xep/x4driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/xethru_xep/x4driver.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/xethru_xep/x4driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/xethru_xep/x4driver.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/xethru_xep/x4driver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/xethru_xep/x4driver.md -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/xethru_xep/xtcompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/xethru_xep/xtcompiler.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/xip/fsl_flexspi_nor_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/xip/fsl_flexspi_nor_boot.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/xip/fsl_flexspi_nor_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/xip/fsl_flexspi_nor_boot.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/xip/slmx4_flexspi_nor_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/xip/slmx4_flexspi_nor_config.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/xip/slmx4_flexspi_nor_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/xip/slmx4_flexspi_nor_config.h -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/xip/slmx4_sdram_ini_dcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/xip/slmx4_sdram_ini_dcd.c -------------------------------------------------------------------------------- /slmx4_projects/button_demo2/xip/slmx4_sdram_ini_dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/button_demo2/xip/slmx4_sdram_ini_dcd.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/.cproject -------------------------------------------------------------------------------- /slmx4_projects/led_blink/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | /.settings/ 3 | *.launch -------------------------------------------------------------------------------- /slmx4_projects/led_blink/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/.project -------------------------------------------------------------------------------- /slmx4_projects/led_blink/CMSIS/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/CMSIS/arm_common_tables.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/CMSIS/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/CMSIS/arm_const_structs.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/CMSIS/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/CMSIS/arm_math.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/CMSIS/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/CMSIS/cmsis_armcc.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/CMSIS/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/CMSIS/cmsis_armclang.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/CMSIS/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/CMSIS/cmsis_compiler.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/CMSIS/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/CMSIS/cmsis_gcc.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/CMSIS/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/CMSIS/cmsis_iccarm.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/CMSIS/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/CMSIS/cmsis_version.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/CMSIS/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/CMSIS/core_armv8mbl.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/CMSIS/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/CMSIS/core_armv8mml.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/CMSIS/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/CMSIS/core_cm7.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/CMSIS/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/CMSIS/mpu_armv7.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/CMSIS/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/CMSIS/mpu_armv8.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/CHANGELOG.md -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/README.md -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/freertos/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/freertos/event_groups.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/freertos/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/freertos/list.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/freertos/portable/ReadMe.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/freertos/portable/ReadMe.url -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/freertos/portable/heap_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/freertos/portable/heap_1.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/freertos/portable/heap_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/freertos/portable/heap_2.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/freertos/portable/heap_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/freertos/portable/heap_3.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/freertos/portable/heap_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/freertos/portable/heap_4.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/freertos/portable/heap_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/freertos/portable/heap_5.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/freertos/portable/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/freertos/portable/port.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/freertos/portable/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/freertos/portable/portmacro.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/freertos/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/freertos/queue.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/freertos/stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/freertos/stream_buffer.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/freertos/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/freertos/tasks.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/freertos/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/freertos/timers.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/include/FreeRTOS.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/include/deprecated_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/include/deprecated_definitions.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/include/event_groups.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/include/freertos_tasks_c_additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/include/freertos_tasks_c_additions.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/include/list.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/include/message_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/include/message_buffer.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/include/mpu_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/include/mpu_prototypes.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/include/mpu_wrappers.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/include/portable.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/include/projdefs.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/include/queue.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/include/semphr.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/include/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/include/stack_macros.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/include/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/include/stream_buffer.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/include/task.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/include/threading_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/include/threading_alt.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/include/timers.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/amazon-freertos/license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/amazon-freertos/license/LICENSE -------------------------------------------------------------------------------- /slmx4_projects/led_blink/board/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/board/board.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/board/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/board/board.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/board/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/board/clock_config.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/board/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/board/clock_config.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/board/peripherals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/board/peripherals.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/board/peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/board/peripherals.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/board/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/board/pin_mux.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/board/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/board/pin_mux.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/component/lists/generic_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/component/lists/generic_list.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/component/lists/generic_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/component/lists/generic_list.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/component/serial_manager/serial_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/component/serial_manager/serial_manager.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/component/serial_manager/serial_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/component/serial_manager/serial_manager.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/component/serial_manager/serial_port_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/component/serial_manager/serial_port_internal.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/component/serial_manager/serial_port_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/component/serial_manager/serial_port_uart.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/component/serial_manager/serial_port_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/component/serial_manager/serial_port_uart.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/component/uart/lpuart_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/component/uart/lpuart_adapter.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/component/uart/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/component/uart/uart.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/device/MIMXRT1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/device/MIMXRT1062.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/device/MIMXRT1062_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/device/MIMXRT1062_features.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/device/fsl_device_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/device/fsl_device_registers.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/device/system_MIMXRT1062.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/device/system_MIMXRT1062.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/device/system_MIMXRT1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/device/system_MIMXRT1062.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/doc/amazon-freertos/ChangeLogKSDK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/doc/amazon-freertos/ChangeLogKSDK.txt -------------------------------------------------------------------------------- /slmx4_projects/led_blink/doc/amazon-freertos/directories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/doc/amazon-freertos/directories.txt -------------------------------------------------------------------------------- /slmx4_projects/led_blink/doc/amazon-freertos/freertos/portable/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/doc/amazon-freertos/freertos/portable/readme.txt -------------------------------------------------------------------------------- /slmx4_projects/led_blink/doc/amazon-freertos/license/directories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/doc/amazon-freertos/license/directories.txt -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/freertos/fsl_lpi2c_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/freertos/fsl_lpi2c_freertos.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/freertos/fsl_lpi2c_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/freertos/fsl_lpi2c_freertos.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/freertos/fsl_lpspi_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/freertos/fsl_lpspi_freertos.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/freertos/fsl_lpspi_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/freertos/fsl_lpspi_freertos.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_clock.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_clock.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_common.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_common.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_flexspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_flexspi.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_flexspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_flexspi.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_gpio.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_gpio.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_iomuxc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_iomuxc.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_lpi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_lpi2c.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_lpi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_lpi2c.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_lpspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_lpspi.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_lpspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_lpspi.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_lpuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_lpuart.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_lpuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_lpuart.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_pwm.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_pwm.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_xbara.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_xbara.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/drivers/fsl_xbara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/drivers/fsl_xbara.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/libs/libarm_cortexM7lfsp_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/libs/libarm_cortexM7lfsp_math.a -------------------------------------------------------------------------------- /slmx4_projects/led_blink/platform_slmx4/ltr308_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/platform_slmx4/ltr308_driver.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/platform_slmx4/ltr308_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/platform_slmx4/ltr308_driver.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/platform_slmx4/slmx4_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/platform_slmx4/slmx4_freertos.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/platform_slmx4/slmx4_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/platform_slmx4/slmx4_freertos.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/readme.md -------------------------------------------------------------------------------- /slmx4_projects/led_blink/source/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/source/FreeRTOSConfig.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/source/led_blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/source/led_blink.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/source/semihost_hardfault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/source/semihost_hardfault.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/startup/startup_mimxrt1062.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/startup/startup_mimxrt1062.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/utilities/fsl_debug_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/utilities/fsl_debug_console.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/utilities/fsl_debug_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/utilities/fsl_debug_console.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/utilities/fsl_debug_console_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/utilities/fsl_debug_console_conf.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/utilities/fsl_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/utilities/fsl_str.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/utilities/fsl_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/utilities/fsl_str.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/xethru_xep/8051_firmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/xethru_xep/8051_firmware.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/xethru_xep/x4driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/xethru_xep/x4driver.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/xethru_xep/x4driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/xethru_xep/x4driver.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/xethru_xep/x4driver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/xethru_xep/x4driver.md -------------------------------------------------------------------------------- /slmx4_projects/led_blink/xethru_xep/xtcompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/xethru_xep/xtcompiler.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/xip/fsl_flexspi_nor_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/xip/fsl_flexspi_nor_boot.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/xip/fsl_flexspi_nor_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/xip/fsl_flexspi_nor_boot.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/xip/slmx4_flexspi_nor_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/xip/slmx4_flexspi_nor_config.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/xip/slmx4_flexspi_nor_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/xip/slmx4_flexspi_nor_config.h -------------------------------------------------------------------------------- /slmx4_projects/led_blink/xip/slmx4_sdram_ini_dcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/xip/slmx4_sdram_ini_dcd.c -------------------------------------------------------------------------------- /slmx4_projects/led_blink/xip/slmx4_sdram_ini_dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/led_blink/xip/slmx4_sdram_ini_dcd.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/.cproject -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | /.settings/ 3 | *.launch -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/.project -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/CMSIS/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/CMSIS/arm_common_tables.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/CMSIS/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/CMSIS/arm_const_structs.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/CMSIS/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/CMSIS/arm_math.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/CMSIS/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/CMSIS/cmsis_armcc.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/CMSIS/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/CMSIS/cmsis_armclang.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/CMSIS/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/CMSIS/cmsis_compiler.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/CMSIS/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/CMSIS/cmsis_gcc.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/CMSIS/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/CMSIS/cmsis_iccarm.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/CMSIS/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/CMSIS/cmsis_version.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/CMSIS/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/CMSIS/core_armv8mbl.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/CMSIS/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/CMSIS/core_armv8mml.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/CMSIS/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/CMSIS/core_cm7.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/CMSIS/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/CMSIS/mpu_armv7.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/CMSIS/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/CMSIS/mpu_armv8.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/CHANGELOG.md -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/README.md -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/freertos/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/freertos/event_groups.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/freertos/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/freertos/list.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/freertos/portable/ReadMe.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/freertos/portable/ReadMe.url -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/freertos/portable/heap_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/freertos/portable/heap_1.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/freertos/portable/heap_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/freertos/portable/heap_2.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/freertos/portable/heap_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/freertos/portable/heap_3.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/freertos/portable/heap_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/freertos/portable/heap_4.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/freertos/portable/heap_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/freertos/portable/heap_5.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/freertos/portable/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/freertos/portable/port.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/freertos/portable/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/freertos/portable/portmacro.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/freertos/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/freertos/queue.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/freertos/stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/freertos/stream_buffer.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/freertos/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/freertos/tasks.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/freertos/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/freertos/timers.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/include/FreeRTOS.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/include/deprecated_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/include/deprecated_definitions.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/include/event_groups.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/include/freertos_tasks_c_additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/include/freertos_tasks_c_additions.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/include/list.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/include/message_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/include/message_buffer.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/include/mpu_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/include/mpu_prototypes.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/include/mpu_wrappers.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/include/portable.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/include/projdefs.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/include/queue.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/include/semphr.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/include/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/include/stack_macros.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/include/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/include/stream_buffer.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/include/task.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/include/threading_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/include/threading_alt.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/include/timers.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/amazon-freertos/license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/amazon-freertos/license/LICENSE -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/board/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/board/board.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/board/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/board/board.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/board/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/board/clock_config.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/board/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/board/clock_config.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/board/peripherals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/board/peripherals.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/board/peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/board/peripherals.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/board/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/board/pin_mux.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/board/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/board/pin_mux.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/component/lists/generic_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/component/lists/generic_list.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/component/lists/generic_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/component/lists/generic_list.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/component/serial_manager/serial_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/component/serial_manager/serial_manager.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/component/serial_manager/serial_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/component/serial_manager/serial_manager.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/component/serial_manager/serial_port_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/component/serial_manager/serial_port_internal.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/component/serial_manager/serial_port_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/component/serial_manager/serial_port_uart.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/component/serial_manager/serial_port_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/component/serial_manager/serial_port_uart.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/component/uart/lpuart_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/component/uart/lpuart_adapter.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/component/uart/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/component/uart/uart.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/device/MIMXRT1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/device/MIMXRT1062.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/device/MIMXRT1062_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/device/MIMXRT1062_features.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/device/fsl_device_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/device/fsl_device_registers.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/device/system_MIMXRT1062.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/device/system_MIMXRT1062.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/device/system_MIMXRT1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/device/system_MIMXRT1062.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/doc/amazon-freertos/ChangeLogKSDK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/doc/amazon-freertos/ChangeLogKSDK.txt -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/doc/amazon-freertos/directories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/doc/amazon-freertos/directories.txt -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/doc/amazon-freertos/freertos/portable/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/doc/amazon-freertos/freertos/portable/readme.txt -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/doc/amazon-freertos/license/directories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/doc/amazon-freertos/license/directories.txt -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/freertos/fsl_lpi2c_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/freertos/fsl_lpi2c_freertos.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/freertos/fsl_lpi2c_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/freertos/fsl_lpi2c_freertos.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/freertos/fsl_lpspi_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/freertos/fsl_lpspi_freertos.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/freertos/fsl_lpspi_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/freertos/fsl_lpspi_freertos.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_clock.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_clock.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_common.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_common.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_flexspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_flexspi.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_flexspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_flexspi.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_gpio.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_gpio.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_iomuxc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_iomuxc.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_lpi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_lpi2c.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_lpi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_lpi2c.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_lpspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_lpspi.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_lpspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_lpspi.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_lpuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_lpuart.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_lpuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_lpuart.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_pwm.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_pwm.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_xbara.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_xbara.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/drivers/fsl_xbara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/drivers/fsl_xbara.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/libs/libarm_cortexM7lfsp_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/libs/libarm_cortexM7lfsp_math.a -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/platform_slmx4/ltr308_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/platform_slmx4/ltr308_driver.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/platform_slmx4/ltr308_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/platform_slmx4/ltr308_driver.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/platform_slmx4/slmx4_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/platform_slmx4/slmx4_freertos.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/platform_slmx4/slmx4_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/platform_slmx4/slmx4_freertos.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/readme.md -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/source/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/source/FreeRTOSConfig.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/source/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/source/demo.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/source/semihost_hardfault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/source/semihost_hardfault.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/startup/startup_mimxrt1062.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/startup/startup_mimxrt1062.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/utilities/fsl_debug_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/utilities/fsl_debug_console.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/utilities/fsl_debug_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/utilities/fsl_debug_console.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/utilities/fsl_debug_console_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/utilities/fsl_debug_console_conf.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/utilities/fsl_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/utilities/fsl_str.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/utilities/fsl_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/utilities/fsl_str.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/xethru_xep/8051_firmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/xethru_xep/8051_firmware.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/xethru_xep/x4driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/xethru_xep/x4driver.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/xethru_xep/x4driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/xethru_xep/x4driver.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/xethru_xep/x4driver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/xethru_xep/x4driver.md -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/xethru_xep/xtcompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/xethru_xep/xtcompiler.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/xip/fsl_flexspi_nor_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/xip/fsl_flexspi_nor_boot.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/xip/fsl_flexspi_nor_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/xip/fsl_flexspi_nor_boot.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/xip/slmx4_flexspi_nor_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/xip/slmx4_flexspi_nor_config.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/xip/slmx4_flexspi_nor_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/xip/slmx4_flexspi_nor_config.h -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/xip/slmx4_sdram_ini_dcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/xip/slmx4_sdram_ini_dcd.c -------------------------------------------------------------------------------- /slmx4_projects/lux_demo/xip/slmx4_sdram_ini_dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/lux_demo/xip/slmx4_sdram_ini_dcd.h -------------------------------------------------------------------------------- /slmx4_projects/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/readme.md -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/.cproject -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | /Release/ 3 | -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/.project -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/.settings/language.settings.xml -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/CMSIS/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/CMSIS/arm_common_tables.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/CMSIS/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/CMSIS/arm_const_structs.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/CMSIS/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/CMSIS/arm_math.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/CMSIS/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/CMSIS/cmsis_armcc.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/CMSIS/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/CMSIS/cmsis_armclang.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/CMSIS/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/CMSIS/cmsis_compiler.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/CMSIS/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/CMSIS/cmsis_gcc.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/CMSIS/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/CMSIS/cmsis_iccarm.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/CMSIS/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/CMSIS/cmsis_version.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/CMSIS/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/CMSIS/core_armv8mbl.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/CMSIS/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/CMSIS/core_armv8mml.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/CMSIS/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/CMSIS/core_cm7.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/CMSIS/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/CMSIS/mpu_armv7.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/CMSIS/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/CMSIS/mpu_armv8.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/CHANGELOG.md -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/README.md -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/event_groups.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/list.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/portable/heap_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/portable/heap_1.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/portable/heap_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/portable/heap_2.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/portable/heap_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/portable/heap_3.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/portable/heap_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/portable/heap_4.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/portable/heap_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/portable/heap_5.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/portable/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/portable/port.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/queue.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/tasks.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/freertos/timers.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/FreeRTOS.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/event_groups.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/list.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/mpu_wrappers.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/portable.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/projdefs.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/queue.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/semphr.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/stack_macros.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/stream_buffer.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/task.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/threading_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/threading_alt.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/include/timers.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/amazon-freertos/license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/amazon-freertos/license/LICENSE -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/board/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/board/board.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/board/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/board/board.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/board/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/board/clock_config.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/board/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/board/clock_config.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/board/peripherals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/board/peripherals.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/board/peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/board/peripherals.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/board/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/board/pin_mux.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/board/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/board/pin_mux.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/component/i2c/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/component/i2c/i2c.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/component/i2c/lpi2c_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/component/i2c/lpi2c_adapter.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/component/lists/generic_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/component/lists/generic_list.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/component/lists/generic_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/component/lists/generic_list.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/component/uart/lpuart_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/component/uart/lpuart_adapter.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/component/uart/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/component/uart/uart.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/device/MIMXRT1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/device/MIMXRT1062.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/device/MIMXRT1062_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/device/MIMXRT1062_features.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/device/fsl_device_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/device/fsl_device_registers.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/device/system_MIMXRT1062.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/device/system_MIMXRT1062.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/device/system_MIMXRT1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/device/system_MIMXRT1062.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/doc/amazon-freertos/ChangeLogKSDK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/doc/amazon-freertos/ChangeLogKSDK.txt -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/doc/amazon-freertos/directories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/doc/amazon-freertos/directories.txt -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/freertos/fsl_lpi2c_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/freertos/fsl_lpi2c_freertos.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/freertos/fsl_lpi2c_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/freertos/fsl_lpi2c_freertos.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/freertos/fsl_lpspi_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/freertos/fsl_lpspi_freertos.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/freertos/fsl_lpspi_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/freertos/fsl_lpspi_freertos.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_clock.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_clock.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_common.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_common.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_dmamux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_dmamux.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_dmamux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_dmamux.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_edma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_edma.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_edma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_edma.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_gpio.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_gpio.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_iomuxc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_iomuxc.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_lpi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_lpi2c.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_lpi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_lpi2c.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_lpspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_lpspi.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_lpspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_lpspi.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_lpuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_lpuart.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_lpuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_lpuart.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_pwm.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_pwm.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_semc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_semc.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_semc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_semc.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_snvs_hp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_snvs_hp.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_snvs_hp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_snvs_hp.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_usdhc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_usdhc.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_usdhc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_usdhc.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_xbara.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_xbara.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/drivers/fsl_xbara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/drivers/fsl_xbara.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/libs/libarm_cortexM7lfsp_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/libs/libarm_cortexM7lfsp_math.a -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/osa/usb_osa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/osa/usb_osa.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/osa/usb_osa_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/osa/usb_osa_freertos.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/osa/usb_osa_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/osa/usb_osa_freertos.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/platform_slmx4/slmx4_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/platform_slmx4/slmx4_freertos.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/platform_slmx4/slmx4_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/platform_slmx4/slmx4_freertos.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/source/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/source/FreeRTOSConfig.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/source/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/source/ffconf.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/source/mat_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/source/mat_handler.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/source/mat_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/source/mat_handler.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/source/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/source/project.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/source/semihost_hardfault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/source/semihost_hardfault.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/source/usb_device_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/source/usb_device_config.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/source/usb_device_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/source/usb_device_descriptor.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/source/usb_device_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/source/usb_device_descriptor.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/source/virtual_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/source/virtual_com.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/source/virtual_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/source/virtual_com.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/source/x4_post_norm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/source/x4_post_norm.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/source/x4_post_norm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/source/x4_post_norm.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/startup/startup_mimxrt1062.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/startup/startup_mimxrt1062.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/usb/device/class/usb_device_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/usb/device/class/usb_device_class.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/usb/device/class/usb_device_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/usb/device/class/usb_device_class.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/usb/device/include/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/usb/device/include/usb_device.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/usb/device/source/usb_device_ch9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/usb/device/source/usb_device_ch9.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/usb/device/source/usb_device_ch9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/usb/device/source/usb_device_ch9.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/usb/device/source/usb_device_dci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/usb/device/source/usb_device_dci.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/usb/device/source/usb_device_dci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/usb/device/source/usb_device_dci.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/usb/include/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/usb/include/usb.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/usb/include/usb_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/usb/include/usb_misc.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/usb/include/usb_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/usb/include/usb_spec.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/usb/phy/usb_phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/usb/phy/usb_phy.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/usb/phy/usb_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/usb/phy/usb_phy.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/utilities/fsl_debug_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/utilities/fsl_debug_console.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/utilities/fsl_debug_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/utilities/fsl_debug_console.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/utilities/fsl_debug_console_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/utilities/fsl_debug_console_conf.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/utilities/fsl_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/utilities/fsl_str.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/utilities/fsl_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/utilities/fsl_str.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/xethru_xep/8051_firmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/xethru_xep/8051_firmware.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/xethru_xep/x4driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/xethru_xep/x4driver.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/xethru_xep/x4driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/xethru_xep/x4driver.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/xethru_xep/x4driver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/xethru_xep/x4driver.md -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/xethru_xep/xtcompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/xethru_xep/xtcompiler.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/xip/fsl_flexspi_nor_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/xip/fsl_flexspi_nor_boot.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/xip/fsl_flexspi_nor_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/xip/fsl_flexspi_nor_boot.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/xip/slmx4_flexspi_nor_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/xip/slmx4_flexspi_nor_config.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/xip/slmx4_flexspi_nor_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/xip/slmx4_flexspi_nor_config.h -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/xip/slmx4_sdram_ini_dcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/xip/slmx4_sdram_ini_dcd.c -------------------------------------------------------------------------------- /slmx4_projects/vcom_xep_matlab_server/xip/slmx4_sdram_ini_dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/slmx4_projects/vcom_xep_matlab_server/xip/slmx4_sdram_ini_dcd.h -------------------------------------------------------------------------------- /unboxing_quick_start/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/unboxing_quick_start/readme.md -------------------------------------------------------------------------------- /usb_driver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/usb_driver/README.md -------------------------------------------------------------------------------- /usb_driver/inf/cdc.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/usb_driver/inf/cdc.cat -------------------------------------------------------------------------------- /usb_driver/inf/fsl_ucwxp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorLogicInc/modules/HEAD/usb_driver/inf/fsl_ucwxp.inf --------------------------------------------------------------------------------