├── .clang-format ├── .devcontainer └── devcontainer.json ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE.txt ├── MXChip └── AZ3166 │ ├── .vs │ └── launch.vs.json │ ├── .vscode │ ├── cmake-kits.json │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── AZ3166.code-workspace │ ├── CMakeLists.txt │ ├── CMakePresets.json │ ├── STM32F412.svd │ ├── VS.md │ ├── app │ ├── CMakeLists.txt │ ├── azure_config.h │ ├── azure_device_x509_cert_config.h │ ├── azure_pnp_info.h │ ├── board_init.c │ ├── board_init.h │ ├── console.c │ ├── legacy │ │ ├── mqtt.c │ │ └── mqtt.h │ ├── main.c │ ├── nx_client.c │ ├── nx_client.h │ ├── screen.c │ ├── screen.h │ ├── startup │ │ ├── MXChip_AZ3166.ld │ │ ├── startup_stm32f412rx.s │ │ ├── system_stm32f4xx.c │ │ └── tx_initialize_low_level.S │ ├── stm32cubef4 │ │ └── stm32f4xx_hal_msp.c │ ├── wwd_networking.c │ └── wwd_networking.h │ ├── azure-pipelines.yml │ ├── cmake │ ├── FindCMSIS.cmake │ └── FindSTM32HAL.cmake │ ├── lib │ ├── CMakeLists.txt │ ├── mxchip_bsp │ │ ├── CMakeLists.txt │ │ ├── ssd1306 │ │ │ ├── LICENSE │ │ │ ├── ssd1306.c │ │ │ ├── ssd1306.h │ │ │ ├── ssd1306_conf.h │ │ │ ├── ssd1306_fonts.c │ │ │ └── ssd1306_fonts.h │ │ └── stm_sensor │ │ │ ├── Inc │ │ │ ├── hts221_reg.h │ │ │ ├── lis2mdl_reg.h │ │ │ ├── lps22hb_reg.h │ │ │ ├── lsm6dsl_reg.h │ │ │ └── sensor.h │ │ │ └── Src │ │ │ ├── hts221_read_data_polling.c │ │ │ ├── hts221_reg.c │ │ │ ├── lis2mdl_read_data_polling.c │ │ │ ├── lis2mdl_reg.c │ │ │ ├── lps22hb_read_data_polling.c │ │ │ ├── lps22hb_reg.c │ │ │ ├── lsm6dsl_read_data_polling.c │ │ │ └── lsm6dsl_reg.c │ ├── netxduo │ │ └── nx_user.h │ ├── stm32cubef4 │ │ ├── CMakeLists.txt │ │ ├── Drivers │ │ │ ├── CMSIS │ │ │ │ ├── Device │ │ │ │ │ └── ST │ │ │ │ │ │ └── STM32F4xx │ │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── stm32f412rx.h │ │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ │ └── system_stm32f4xx.h │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── Source │ │ │ │ │ │ └── Templates │ │ │ │ │ │ │ ├── gcc │ │ │ │ │ │ │ ├── startup_stm32f401xc.s │ │ │ │ │ │ │ ├── startup_stm32f401xe.s │ │ │ │ │ │ │ ├── startup_stm32f405xx.s │ │ │ │ │ │ │ ├── startup_stm32f407xx.s │ │ │ │ │ │ │ ├── startup_stm32f410cx.s │ │ │ │ │ │ │ ├── startup_stm32f410rx.s │ │ │ │ │ │ │ ├── startup_stm32f410tx.s │ │ │ │ │ │ │ ├── startup_stm32f411xe.s │ │ │ │ │ │ │ ├── startup_stm32f412cx.s │ │ │ │ │ │ │ ├── startup_stm32f412rx.s │ │ │ │ │ │ │ ├── startup_stm32f412vx.s │ │ │ │ │ │ │ ├── startup_stm32f412zx.s │ │ │ │ │ │ │ ├── startup_stm32f413xx.s │ │ │ │ │ │ │ ├── startup_stm32f415xx.s │ │ │ │ │ │ │ ├── startup_stm32f417xx.s │ │ │ │ │ │ │ ├── startup_stm32f423xx.s │ │ │ │ │ │ │ ├── startup_stm32f427xx.s │ │ │ │ │ │ │ ├── startup_stm32f429xx.s │ │ │ │ │ │ │ ├── startup_stm32f437xx.s │ │ │ │ │ │ │ ├── startup_stm32f439xx.s │ │ │ │ │ │ │ ├── startup_stm32f446xx.s │ │ │ │ │ │ │ ├── startup_stm32f469xx.s │ │ │ │ │ │ │ └── startup_stm32f479xx.s │ │ │ │ │ │ │ └── system_stm32f4xx.c │ │ │ │ │ │ └── _htmresc │ │ │ │ │ │ ├── mini-st.css │ │ │ │ │ │ └── st_logo.png │ │ │ │ ├── Include │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ │ ├── cmsis_version.h │ │ │ │ │ ├── core_armv8mbl.h │ │ │ │ │ ├── core_armv8mml.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm0plus.h │ │ │ │ │ ├── core_cm1.h │ │ │ │ │ ├── core_cm23.h │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ ├── core_cm33.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm7.h │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ ├── core_sc300.h │ │ │ │ │ ├── mpu_armv7.h │ │ │ │ │ ├── mpu_armv8.h │ │ │ │ │ └── tz_context.h │ │ │ │ ├── LICENSE.txt │ │ │ │ └── README.md │ │ │ └── STM32F4xx_HAL_Driver │ │ │ │ ├── Inc │ │ │ │ ├── Legacy │ │ │ │ │ ├── stm32_hal_legacy.h │ │ │ │ │ └── stm32f4xx_hal_can_legacy.h │ │ │ │ ├── stm32_assert_template.h │ │ │ │ ├── stm32f4xx_hal.h │ │ │ │ ├── stm32f4xx_hal_adc.h │ │ │ │ ├── stm32f4xx_hal_adc_ex.h │ │ │ │ ├── stm32f4xx_hal_can.h │ │ │ │ ├── stm32f4xx_hal_cec.h │ │ │ │ ├── stm32f4xx_hal_conf_template.h │ │ │ │ ├── stm32f4xx_hal_cortex.h │ │ │ │ ├── stm32f4xx_hal_crc.h │ │ │ │ ├── stm32f4xx_hal_cryp.h │ │ │ │ ├── stm32f4xx_hal_cryp_ex.h │ │ │ │ ├── stm32f4xx_hal_dac.h │ │ │ │ ├── stm32f4xx_hal_dac_ex.h │ │ │ │ ├── stm32f4xx_hal_dcmi.h │ │ │ │ ├── stm32f4xx_hal_dcmi_ex.h │ │ │ │ ├── stm32f4xx_hal_def.h │ │ │ │ ├── stm32f4xx_hal_dfsdm.h │ │ │ │ ├── stm32f4xx_hal_dma.h │ │ │ │ ├── stm32f4xx_hal_dma2d.h │ │ │ │ ├── stm32f4xx_hal_dma_ex.h │ │ │ │ ├── stm32f4xx_hal_dsi.h │ │ │ │ ├── stm32f4xx_hal_eth.h │ │ │ │ ├── stm32f4xx_hal_exti.h │ │ │ │ ├── stm32f4xx_hal_flash.h │ │ │ │ ├── stm32f4xx_hal_flash_ex.h │ │ │ │ ├── stm32f4xx_hal_flash_ramfunc.h │ │ │ │ ├── stm32f4xx_hal_fmpi2c.h │ │ │ │ ├── stm32f4xx_hal_fmpi2c_ex.h │ │ │ │ ├── stm32f4xx_hal_fmpsmbus.h │ │ │ │ ├── stm32f4xx_hal_gpio.h │ │ │ │ ├── stm32f4xx_hal_gpio_ex.h │ │ │ │ ├── stm32f4xx_hal_hash.h │ │ │ │ ├── stm32f4xx_hal_hash_ex.h │ │ │ │ ├── stm32f4xx_hal_hcd.h │ │ │ │ ├── stm32f4xx_hal_i2c.h │ │ │ │ ├── stm32f4xx_hal_i2c_ex.h │ │ │ │ ├── stm32f4xx_hal_i2s.h │ │ │ │ ├── stm32f4xx_hal_i2s_ex.h │ │ │ │ ├── stm32f4xx_hal_irda.h │ │ │ │ ├── stm32f4xx_hal_iwdg.h │ │ │ │ ├── stm32f4xx_hal_lptim.h │ │ │ │ ├── stm32f4xx_hal_ltdc.h │ │ │ │ ├── stm32f4xx_hal_ltdc_ex.h │ │ │ │ ├── stm32f4xx_hal_mmc.h │ │ │ │ ├── stm32f4xx_hal_nand.h │ │ │ │ ├── stm32f4xx_hal_nor.h │ │ │ │ ├── stm32f4xx_hal_pccard.h │ │ │ │ ├── stm32f4xx_hal_pcd.h │ │ │ │ ├── stm32f4xx_hal_pcd_ex.h │ │ │ │ ├── stm32f4xx_hal_pwr.h │ │ │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ │ │ ├── stm32f4xx_hal_qspi.h │ │ │ │ ├── stm32f4xx_hal_rcc.h │ │ │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ │ │ ├── stm32f4xx_hal_rng.h │ │ │ │ ├── stm32f4xx_hal_rtc.h │ │ │ │ ├── stm32f4xx_hal_rtc_ex.h │ │ │ │ ├── stm32f4xx_hal_sai.h │ │ │ │ ├── stm32f4xx_hal_sai_ex.h │ │ │ │ ├── stm32f4xx_hal_sd.h │ │ │ │ ├── stm32f4xx_hal_sdram.h │ │ │ │ ├── stm32f4xx_hal_smartcard.h │ │ │ │ ├── stm32f4xx_hal_smbus.h │ │ │ │ ├── stm32f4xx_hal_spdifrx.h │ │ │ │ ├── stm32f4xx_hal_spi.h │ │ │ │ ├── stm32f4xx_hal_sram.h │ │ │ │ ├── stm32f4xx_hal_tim.h │ │ │ │ ├── stm32f4xx_hal_tim_ex.h │ │ │ │ ├── stm32f4xx_hal_uart.h │ │ │ │ ├── stm32f4xx_hal_usart.h │ │ │ │ ├── stm32f4xx_hal_wwdg.h │ │ │ │ ├── stm32f4xx_ll_adc.h │ │ │ │ ├── stm32f4xx_ll_bus.h │ │ │ │ ├── stm32f4xx_ll_cortex.h │ │ │ │ ├── stm32f4xx_ll_crc.h │ │ │ │ ├── stm32f4xx_ll_dac.h │ │ │ │ ├── stm32f4xx_ll_dma.h │ │ │ │ ├── stm32f4xx_ll_dma2d.h │ │ │ │ ├── stm32f4xx_ll_exti.h │ │ │ │ ├── stm32f4xx_ll_fmc.h │ │ │ │ ├── stm32f4xx_ll_fmpi2c.h │ │ │ │ ├── stm32f4xx_ll_fsmc.h │ │ │ │ ├── stm32f4xx_ll_gpio.h │ │ │ │ ├── stm32f4xx_ll_i2c.h │ │ │ │ ├── stm32f4xx_ll_iwdg.h │ │ │ │ ├── stm32f4xx_ll_lptim.h │ │ │ │ ├── stm32f4xx_ll_pwr.h │ │ │ │ ├── stm32f4xx_ll_rcc.h │ │ │ │ ├── stm32f4xx_ll_rng.h │ │ │ │ ├── stm32f4xx_ll_rtc.h │ │ │ │ ├── stm32f4xx_ll_sdmmc.h │ │ │ │ ├── stm32f4xx_ll_spi.h │ │ │ │ ├── stm32f4xx_ll_system.h │ │ │ │ ├── stm32f4xx_ll_tim.h │ │ │ │ ├── stm32f4xx_ll_usart.h │ │ │ │ ├── stm32f4xx_ll_usb.h │ │ │ │ ├── stm32f4xx_ll_utils.h │ │ │ │ └── stm32f4xx_ll_wwdg.h │ │ │ │ ├── License.md │ │ │ │ ├── README.md │ │ │ │ └── Src │ │ │ │ ├── Legacy │ │ │ │ └── stm32f4xx_hal_can.c │ │ │ │ ├── stm32f4xx_hal.c │ │ │ │ ├── stm32f4xx_hal_adc.c │ │ │ │ ├── stm32f4xx_hal_adc_ex.c │ │ │ │ ├── stm32f4xx_hal_can.c │ │ │ │ ├── stm32f4xx_hal_cec.c │ │ │ │ ├── stm32f4xx_hal_cortex.c │ │ │ │ ├── stm32f4xx_hal_crc.c │ │ │ │ ├── stm32f4xx_hal_cryp.c │ │ │ │ ├── stm32f4xx_hal_cryp_ex.c │ │ │ │ ├── stm32f4xx_hal_dac.c │ │ │ │ ├── stm32f4xx_hal_dac_ex.c │ │ │ │ ├── stm32f4xx_hal_dcmi.c │ │ │ │ ├── stm32f4xx_hal_dcmi_ex.c │ │ │ │ ├── stm32f4xx_hal_dfsdm.c │ │ │ │ ├── stm32f4xx_hal_dma.c │ │ │ │ ├── stm32f4xx_hal_dma2d.c │ │ │ │ ├── stm32f4xx_hal_dma_ex.c │ │ │ │ ├── stm32f4xx_hal_dsi.c │ │ │ │ ├── stm32f4xx_hal_eth.c │ │ │ │ ├── stm32f4xx_hal_exti.c │ │ │ │ ├── stm32f4xx_hal_flash.c │ │ │ │ ├── stm32f4xx_hal_flash_ex.c │ │ │ │ ├── stm32f4xx_hal_flash_ramfunc.c │ │ │ │ ├── stm32f4xx_hal_fmpi2c.c │ │ │ │ ├── stm32f4xx_hal_fmpi2c_ex.c │ │ │ │ ├── stm32f4xx_hal_fmpsmbus.c │ │ │ │ ├── stm32f4xx_hal_gpio.c │ │ │ │ ├── stm32f4xx_hal_hash.c │ │ │ │ ├── stm32f4xx_hal_hash_ex.c │ │ │ │ ├── stm32f4xx_hal_hcd.c │ │ │ │ ├── stm32f4xx_hal_i2c.c │ │ │ │ ├── stm32f4xx_hal_i2c_ex.c │ │ │ │ ├── stm32f4xx_hal_i2s.c │ │ │ │ ├── stm32f4xx_hal_i2s_ex.c │ │ │ │ ├── stm32f4xx_hal_irda.c │ │ │ │ ├── stm32f4xx_hal_iwdg.c │ │ │ │ ├── stm32f4xx_hal_lptim.c │ │ │ │ ├── stm32f4xx_hal_ltdc.c │ │ │ │ ├── stm32f4xx_hal_ltdc_ex.c │ │ │ │ ├── stm32f4xx_hal_mmc.c │ │ │ │ ├── stm32f4xx_hal_msp_template.c │ │ │ │ ├── stm32f4xx_hal_nand.c │ │ │ │ ├── stm32f4xx_hal_nor.c │ │ │ │ ├── stm32f4xx_hal_pccard.c │ │ │ │ ├── stm32f4xx_hal_pcd.c │ │ │ │ ├── stm32f4xx_hal_pcd_ex.c │ │ │ │ ├── stm32f4xx_hal_pwr.c │ │ │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ │ │ ├── stm32f4xx_hal_qspi.c │ │ │ │ ├── stm32f4xx_hal_rcc.c │ │ │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ │ │ ├── stm32f4xx_hal_rng.c │ │ │ │ ├── stm32f4xx_hal_rtc.c │ │ │ │ ├── stm32f4xx_hal_rtc_ex.c │ │ │ │ ├── stm32f4xx_hal_sai.c │ │ │ │ ├── stm32f4xx_hal_sai_ex.c │ │ │ │ ├── stm32f4xx_hal_sd.c │ │ │ │ ├── stm32f4xx_hal_sdram.c │ │ │ │ ├── stm32f4xx_hal_smartcard.c │ │ │ │ ├── stm32f4xx_hal_smbus.c │ │ │ │ ├── stm32f4xx_hal_spdifrx.c │ │ │ │ ├── stm32f4xx_hal_spi.c │ │ │ │ ├── stm32f4xx_hal_sram.c │ │ │ │ ├── stm32f4xx_hal_tim.c │ │ │ │ ├── stm32f4xx_hal_tim_ex.c │ │ │ │ ├── stm32f4xx_hal_timebase_rtc_alarm_template.c │ │ │ │ ├── stm32f4xx_hal_timebase_rtc_wakeup_template.c │ │ │ │ ├── stm32f4xx_hal_timebase_tim.c │ │ │ │ ├── stm32f4xx_hal_timebase_tim_template.c │ │ │ │ ├── stm32f4xx_hal_uart.c │ │ │ │ ├── stm32f4xx_hal_usart.c │ │ │ │ ├── stm32f4xx_hal_wwdg.c │ │ │ │ ├── stm32f4xx_ll_adc.c │ │ │ │ ├── stm32f4xx_ll_crc.c │ │ │ │ ├── stm32f4xx_ll_dac.c │ │ │ │ ├── stm32f4xx_ll_dma.c │ │ │ │ ├── stm32f4xx_ll_dma2d.c │ │ │ │ ├── stm32f4xx_ll_exti.c │ │ │ │ ├── stm32f4xx_ll_fmc.c │ │ │ │ ├── stm32f4xx_ll_fmpi2c.c │ │ │ │ ├── stm32f4xx_ll_fsmc.c │ │ │ │ ├── stm32f4xx_ll_gpio.c │ │ │ │ ├── stm32f4xx_ll_i2c.c │ │ │ │ ├── stm32f4xx_ll_lptim.c │ │ │ │ ├── stm32f4xx_ll_pwr.c │ │ │ │ ├── stm32f4xx_ll_rcc.c │ │ │ │ ├── stm32f4xx_ll_rng.c │ │ │ │ ├── stm32f4xx_ll_rtc.c │ │ │ │ ├── stm32f4xx_ll_sdmmc.c │ │ │ │ ├── stm32f4xx_ll_spi.c │ │ │ │ ├── stm32f4xx_ll_tim.c │ │ │ │ ├── stm32f4xx_ll_usart.c │ │ │ │ ├── stm32f4xx_ll_usb.c │ │ │ │ └── stm32f4xx_ll_utils.c │ │ ├── License.md │ │ ├── README.md │ │ └── config │ │ │ └── stm32f4xx_hal_conf.h │ ├── threadx │ │ └── tx_user.h │ └── wiced_sdk │ │ ├── CMakeLists.txt │ │ ├── binary_build │ │ ├── CMakeLists.txt │ │ ├── inc │ │ │ └── resources.h │ │ ├── rebuild.bat │ │ └── src │ │ │ └── 43362A2_bin.c │ │ ├── inc │ │ └── wiced_sdk.h │ │ └── lib │ │ └── libwiced_sdk_bin.a │ ├── readme.md │ ├── tools │ ├── flash.bat │ ├── rebuild.bat │ └── rebuild.sh │ ├── vcpkg-configuration.json │ └── vscode.md ├── Microchip └── ATSAME54-XPRO │ ├── .vscode │ ├── ATSAME54P20A.svd │ ├── cmake-kits.json │ └── launch.json │ ├── ATSAME54-XPRO.code-workspace │ ├── CMakeLists.txt │ ├── app │ ├── CMakeLists.txt │ ├── azure_config.h │ ├── azure_device_x509_cert_config.h │ ├── azure_pnp_info.h │ ├── board_init.c │ ├── board_init.h │ ├── legacy │ │ ├── mqtt.c │ │ └── mqtt.h │ ├── main.c │ ├── nx_client.c │ ├── nx_client.h │ └── startup │ │ ├── gnu │ │ ├── same54p20a_flash.ld │ │ ├── startup_same54.c │ │ └── tx_initialize_low_level.S │ │ └── iar │ │ ├── same54x20_flash.icf │ │ ├── startup_same54.c │ │ └── tx_initialize_low_level.s │ ├── azure-pipelines.yml │ ├── lib │ ├── CMakeLists.txt │ ├── atmel_start │ │ ├── CMakeLists.txt │ │ ├── GettingStarted.atstart │ │ ├── config │ │ │ ├── RTE_Components.h │ │ │ ├── hpl_cmcc_config.h │ │ │ ├── hpl_dmac_config.h │ │ │ ├── hpl_gclk_config.h │ │ │ ├── hpl_gmac_config.h │ │ │ ├── hpl_mclk_config.h │ │ │ ├── hpl_osc32kctrl_config.h │ │ │ ├── hpl_oscctrl_config.h │ │ │ ├── hpl_port_config.h │ │ │ ├── hpl_sercom_config.h │ │ │ ├── ieee8023_mii_standard_config.h │ │ │ ├── peripheral_clk_config.h │ │ │ └── stdio_redirect_config.h │ │ └── src │ │ │ ├── CMSIS │ │ │ └── Core │ │ │ │ └── Include │ │ │ │ ├── cmsis_armcc.h │ │ │ │ ├── cmsis_armclang.h │ │ │ │ ├── cmsis_compiler.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ ├── cmsis_version.h │ │ │ │ ├── core_armv8mbl.h │ │ │ │ ├── core_armv8mml.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm1.h │ │ │ │ ├── core_cm23.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm33.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm7.h │ │ │ │ ├── core_sc000.h │ │ │ │ ├── core_sc300.h │ │ │ │ ├── mpu_armv7.h │ │ │ │ ├── mpu_armv8.h │ │ │ │ └── tz_context.h │ │ │ ├── atmel_start.c │ │ │ ├── atmel_start.h │ │ │ ├── atmel_start_pins.h │ │ │ ├── driver_init.c │ │ │ ├── driver_init.h │ │ │ ├── ethernet_phy │ │ │ ├── ethernet_phy.c │ │ │ ├── ethernet_phy.h │ │ │ └── ieee8023_mii_standard_register.h │ │ │ ├── ethernet_phy_main.c │ │ │ ├── ethernet_phy_main.h │ │ │ ├── hal │ │ │ ├── documentation │ │ │ │ ├── i2c_master_sync.rst │ │ │ │ ├── mac_async.rst │ │ │ │ └── usart_sync.rst │ │ │ ├── include │ │ │ │ ├── hal_atomic.h │ │ │ │ ├── hal_cache.h │ │ │ │ ├── hal_delay.h │ │ │ │ ├── hal_gpio.h │ │ │ │ ├── hal_i2c_m_sync.h │ │ │ │ ├── hal_init.h │ │ │ │ ├── hal_io.h │ │ │ │ ├── hal_mac_async.h │ │ │ │ ├── hal_sleep.h │ │ │ │ ├── hal_usart_sync.h │ │ │ │ ├── hpl_cmcc.h │ │ │ │ ├── hpl_core.h │ │ │ │ ├── hpl_delay.h │ │ │ │ ├── hpl_dma.h │ │ │ │ ├── hpl_gpio.h │ │ │ │ ├── hpl_i2c_m_async.h │ │ │ │ ├── hpl_i2c_m_sync.h │ │ │ │ ├── hpl_i2c_s_async.h │ │ │ │ ├── hpl_i2c_s_sync.h │ │ │ │ ├── hpl_init.h │ │ │ │ ├── hpl_irq.h │ │ │ │ ├── hpl_mac_async.h │ │ │ │ ├── hpl_missing_features.h │ │ │ │ ├── hpl_ramecc.h │ │ │ │ ├── hpl_reset.h │ │ │ │ ├── hpl_sleep.h │ │ │ │ ├── hpl_spi.h │ │ │ │ ├── hpl_spi_async.h │ │ │ │ ├── hpl_spi_m_async.h │ │ │ │ ├── hpl_spi_m_dma.h │ │ │ │ ├── hpl_spi_m_sync.h │ │ │ │ ├── hpl_spi_s_async.h │ │ │ │ ├── hpl_spi_s_sync.h │ │ │ │ ├── hpl_spi_sync.h │ │ │ │ ├── hpl_usart.h │ │ │ │ ├── hpl_usart_async.h │ │ │ │ └── hpl_usart_sync.h │ │ │ ├── src │ │ │ │ ├── hal_atomic.c │ │ │ │ ├── hal_cache.c │ │ │ │ ├── hal_delay.c │ │ │ │ ├── hal_gpio.c │ │ │ │ ├── hal_i2c_m_sync.c │ │ │ │ ├── hal_init.c │ │ │ │ ├── hal_io.c │ │ │ │ ├── hal_mac_async.c │ │ │ │ ├── hal_sleep.c │ │ │ │ └── hal_usart_sync.c │ │ │ └── utils │ │ │ │ ├── include │ │ │ │ ├── compiler.h │ │ │ │ ├── err_codes.h │ │ │ │ ├── events.h │ │ │ │ ├── parts.h │ │ │ │ ├── utils.h │ │ │ │ ├── utils_assert.h │ │ │ │ ├── utils_event.h │ │ │ │ ├── utils_increment_macro.h │ │ │ │ ├── utils_list.h │ │ │ │ └── utils_repeat_macro.h │ │ │ │ └── src │ │ │ │ ├── utils_assert.c │ │ │ │ ├── utils_event.c │ │ │ │ ├── utils_list.c │ │ │ │ └── utils_syscalls.c │ │ │ ├── hpl │ │ │ ├── cmcc │ │ │ │ └── hpl_cmcc.c │ │ │ ├── core │ │ │ │ ├── hpl_core_m4.c │ │ │ │ ├── hpl_core_port.h │ │ │ │ └── hpl_init.c │ │ │ ├── dmac │ │ │ │ └── hpl_dmac.c │ │ │ ├── gclk │ │ │ │ ├── hpl_gclk.c │ │ │ │ └── hpl_gclk_base.h │ │ │ ├── gmac │ │ │ │ └── hpl_gmac.c │ │ │ ├── mclk │ │ │ │ └── hpl_mclk.c │ │ │ ├── osc32kctrl │ │ │ │ └── hpl_osc32kctrl.c │ │ │ ├── oscctrl │ │ │ │ └── hpl_oscctrl.c │ │ │ ├── pm │ │ │ │ ├── hpl_pm.c │ │ │ │ └── hpl_pm_base.h │ │ │ ├── port │ │ │ │ └── hpl_gpio_base.h │ │ │ ├── ramecc │ │ │ │ └── hpl_ramecc.c │ │ │ └── sercom │ │ │ │ └── hpl_sercom.c │ │ │ ├── hri │ │ │ ├── hri_ac_e54.h │ │ │ ├── hri_adc_e54.h │ │ │ ├── hri_aes_e54.h │ │ │ ├── hri_can_e54.h │ │ │ ├── hri_ccl_e54.h │ │ │ ├── hri_cmcc_e54.h │ │ │ ├── hri_dac_e54.h │ │ │ ├── hri_dmac_e54.h │ │ │ ├── hri_dsu_e54.h │ │ │ ├── hri_e54.h │ │ │ ├── hri_eic_e54.h │ │ │ ├── hri_evsys_e54.h │ │ │ ├── hri_freqm_e54.h │ │ │ ├── hri_gclk_e54.h │ │ │ ├── hri_gmac_e54.h │ │ │ ├── hri_hmatrixb_e54.h │ │ │ ├── hri_i2s_e54.h │ │ │ ├── hri_icm_e54.h │ │ │ ├── hri_mclk_e54.h │ │ │ ├── hri_nvmctrl_e54.h │ │ │ ├── hri_osc32kctrl_e54.h │ │ │ ├── hri_oscctrl_e54.h │ │ │ ├── hri_pac_e54.h │ │ │ ├── hri_pcc_e54.h │ │ │ ├── hri_pdec_e54.h │ │ │ ├── hri_pm_e54.h │ │ │ ├── hri_port_e54.h │ │ │ ├── hri_qspi_e54.h │ │ │ ├── hri_ramecc_e54.h │ │ │ ├── hri_rstc_e54.h │ │ │ ├── hri_rtc_e54.h │ │ │ ├── hri_sdhc_e54.h │ │ │ ├── hri_sercom_e54.h │ │ │ ├── hri_supc_e54.h │ │ │ ├── hri_tc_e54.h │ │ │ ├── hri_tcc_e54.h │ │ │ ├── hri_trng_e54.h │ │ │ ├── hri_usb_e54.h │ │ │ └── hri_wdt_e54.h │ │ │ ├── include │ │ │ ├── component-version.h │ │ │ ├── component │ │ │ │ ├── ac.h │ │ │ │ ├── adc.h │ │ │ │ ├── aes.h │ │ │ │ ├── can.h │ │ │ │ ├── ccl.h │ │ │ │ ├── cmcc.h │ │ │ │ ├── dac.h │ │ │ │ ├── dmac.h │ │ │ │ ├── dsu.h │ │ │ │ ├── eic.h │ │ │ │ ├── evsys.h │ │ │ │ ├── freqm.h │ │ │ │ ├── gclk.h │ │ │ │ ├── gmac.h │ │ │ │ ├── hmatrixb.h │ │ │ │ ├── i2s.h │ │ │ │ ├── icm.h │ │ │ │ ├── mclk.h │ │ │ │ ├── nvmctrl.h │ │ │ │ ├── osc32kctrl.h │ │ │ │ ├── oscctrl.h │ │ │ │ ├── pac.h │ │ │ │ ├── pcc.h │ │ │ │ ├── pdec.h │ │ │ │ ├── picop.h │ │ │ │ ├── pm.h │ │ │ │ ├── port.h │ │ │ │ ├── qspi.h │ │ │ │ ├── ramecc.h │ │ │ │ ├── rstc.h │ │ │ │ ├── rtc.h │ │ │ │ ├── sdhc.h │ │ │ │ ├── sercom.h │ │ │ │ ├── supc.h │ │ │ │ ├── tc.h │ │ │ │ ├── tcc.h │ │ │ │ ├── trng.h │ │ │ │ ├── usb.h │ │ │ │ └── wdt.h │ │ │ ├── instance │ │ │ │ ├── ac.h │ │ │ │ ├── adc0.h │ │ │ │ ├── adc1.h │ │ │ │ ├── aes.h │ │ │ │ ├── can0.h │ │ │ │ ├── can1.h │ │ │ │ ├── ccl.h │ │ │ │ ├── cmcc.h │ │ │ │ ├── dac.h │ │ │ │ ├── dmac.h │ │ │ │ ├── dsu.h │ │ │ │ ├── eic.h │ │ │ │ ├── evsys.h │ │ │ │ ├── freqm.h │ │ │ │ ├── gclk.h │ │ │ │ ├── gmac.h │ │ │ │ ├── hmatrix.h │ │ │ │ ├── i2s.h │ │ │ │ ├── icm.h │ │ │ │ ├── mclk.h │ │ │ │ ├── nvmctrl.h │ │ │ │ ├── osc32kctrl.h │ │ │ │ ├── oscctrl.h │ │ │ │ ├── pac.h │ │ │ │ ├── pcc.h │ │ │ │ ├── pdec.h │ │ │ │ ├── picop.h │ │ │ │ ├── pm.h │ │ │ │ ├── port.h │ │ │ │ ├── pukcc.h │ │ │ │ ├── qspi.h │ │ │ │ ├── ramecc.h │ │ │ │ ├── rstc.h │ │ │ │ ├── rtc.h │ │ │ │ ├── sdhc0.h │ │ │ │ ├── sdhc1.h │ │ │ │ ├── sercom0.h │ │ │ │ ├── sercom1.h │ │ │ │ ├── sercom2.h │ │ │ │ ├── sercom3.h │ │ │ │ ├── sercom4.h │ │ │ │ ├── sercom5.h │ │ │ │ ├── sercom6.h │ │ │ │ ├── sercom7.h │ │ │ │ ├── supc.h │ │ │ │ ├── tc0.h │ │ │ │ ├── tc1.h │ │ │ │ ├── tc2.h │ │ │ │ ├── tc3.h │ │ │ │ ├── tc4.h │ │ │ │ ├── tc5.h │ │ │ │ ├── tc6.h │ │ │ │ ├── tc7.h │ │ │ │ ├── tcc0.h │ │ │ │ ├── tcc1.h │ │ │ │ ├── tcc2.h │ │ │ │ ├── tcc3.h │ │ │ │ ├── tcc4.h │ │ │ │ ├── trng.h │ │ │ │ ├── usb.h │ │ │ │ └── wdt.h │ │ │ ├── pio │ │ │ │ ├── same54n19a.h │ │ │ │ ├── same54n20a.h │ │ │ │ ├── same54p19a.h │ │ │ │ └── same54p20a.h │ │ │ ├── sam.h │ │ │ ├── same54.h │ │ │ ├── same54n19a.h │ │ │ ├── same54n20a.h │ │ │ ├── same54p19a.h │ │ │ ├── same54p20a.h │ │ │ └── system_same54.h │ │ │ ├── stdio_redirect │ │ │ ├── gcc │ │ │ │ ├── read.c │ │ │ │ └── write.c │ │ │ ├── iar │ │ │ │ ├── read.c │ │ │ │ └── write.c │ │ │ ├── keil │ │ │ │ └── Retarget.c │ │ │ ├── stdio_io.c │ │ │ └── stdio_io.h │ │ │ ├── stdio_start.c │ │ │ └── stdio_start.h │ ├── bme280 │ │ ├── CMakeLists.txt │ │ ├── src │ │ │ ├── LICENSE.txt │ │ │ ├── bme280.c │ │ │ ├── bme280.h │ │ │ └── bme280_defs.h │ │ ├── weather_click.c │ │ └── weather_click.h │ ├── netx_driver │ │ ├── CMakeLists.txt │ │ ├── LICENSE.txt │ │ ├── LICENSED-HARDWARE.txt │ │ └── src │ │ │ ├── gnu │ │ │ └── nx_driver_same54_low_level.S │ │ │ ├── iar │ │ │ └── nx_driver_same54_low_level.s │ │ │ ├── nx_driver_same54.c │ │ │ └── nx_driver_same54.h │ ├── netxduo │ │ └── nx_user.h │ └── threadx │ │ └── tx_user.h │ ├── readme.md │ └── tools │ ├── flash.bat │ ├── rebuild.bat │ ├── rebuild.sh │ └── rebuild_iar.bat ├── NOTICE.txt ├── NXP ├── MIMXRT1050-EVKB │ ├── .vscode │ │ ├── cmake-kits.json │ │ └── launch.json │ ├── CMakeLists.txt │ ├── app │ │ ├── CMakeLists.txt │ │ ├── azure_config.h │ │ ├── azure_device_x509_cert_config.h │ │ ├── azure_pnp_info.h │ │ ├── board_init.c │ │ ├── board_init.h │ │ ├── console.c │ │ ├── legacy │ │ │ ├── mqtt.c │ │ │ └── mqtt.h │ │ ├── main.c │ │ ├── nx_client.c │ │ ├── nx_client.h │ │ └── startup │ │ │ ├── gnu │ │ │ ├── MIMXRT1052xxxxx_flexspi_nor.ld │ │ │ ├── startup_MIMXRT1052.S │ │ │ └── tx_initialize_low_level.S │ │ │ └── iar │ │ │ ├── MIMXRT1052xxxxx_flexspi_nor.icf │ │ │ ├── startup_MIMXRT1052.s │ │ │ └── tx_initialize_low_level.s │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── MIMXRT1050-evk │ │ │ ├── CMakeLists.txt │ │ │ ├── config │ │ │ │ └── board │ │ │ │ │ ├── board.c │ │ │ │ │ ├── board.h │ │ │ │ │ ├── clock_config.c │ │ │ │ │ ├── clock_config.h │ │ │ │ │ ├── dcd.c │ │ │ │ │ ├── dcd.h │ │ │ │ │ ├── pin_mux.c │ │ │ │ │ └── pin_mux.h │ │ │ └── src │ │ │ │ ├── BSP.XML │ │ │ │ ├── CMSIS │ │ │ │ ├── Driver │ │ │ │ │ ├── DriverTemplates │ │ │ │ │ │ ├── Driver_CAN.c │ │ │ │ │ │ ├── Driver_ETH_MAC.c │ │ │ │ │ │ ├── Driver_ETH_PHY.c │ │ │ │ │ │ ├── Driver_Flash.c │ │ │ │ │ │ ├── Driver_I2C.c │ │ │ │ │ │ ├── Driver_MCI.c │ │ │ │ │ │ ├── Driver_SAI.c │ │ │ │ │ │ ├── Driver_SPI.c │ │ │ │ │ │ ├── Driver_Storage.c │ │ │ │ │ │ ├── Driver_USART.c │ │ │ │ │ │ ├── Driver_USBD.c │ │ │ │ │ │ └── Driver_USBH.c │ │ │ │ │ └── Include │ │ │ │ │ │ ├── Driver_CAN.h │ │ │ │ │ │ ├── Driver_Common.h │ │ │ │ │ │ ├── Driver_ETH.h │ │ │ │ │ │ ├── Driver_ETH_MAC.h │ │ │ │ │ │ ├── Driver_ETH_PHY.h │ │ │ │ │ │ ├── Driver_Flash.h │ │ │ │ │ │ ├── Driver_I2C.h │ │ │ │ │ │ ├── Driver_MCI.h │ │ │ │ │ │ ├── Driver_NAND.h │ │ │ │ │ │ ├── Driver_SAI.h │ │ │ │ │ │ ├── Driver_SPI.h │ │ │ │ │ │ ├── Driver_USART.h │ │ │ │ │ │ ├── Driver_USB.h │ │ │ │ │ │ ├── Driver_USBD.h │ │ │ │ │ │ ├── Driver_USBH.h │ │ │ │ │ │ └── Driver_WiFi.h │ │ │ │ ├── Include │ │ │ │ │ ├── arm_common_tables.h │ │ │ │ │ ├── arm_const_structs.h │ │ │ │ │ ├── arm_math.h │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ ├── cmsis_armclang_ltm.h │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ │ ├── cmsis_version.h │ │ │ │ │ ├── core_armv81mml.h │ │ │ │ │ ├── core_armv8mbl.h │ │ │ │ │ ├── core_armv8mml.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm0plus.h │ │ │ │ │ ├── core_cm1.h │ │ │ │ │ ├── core_cm23.h │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ ├── core_cm33.h │ │ │ │ │ ├── core_cm35p.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm7.h │ │ │ │ │ ├── core_dsp.h │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ ├── core_sc300.h │ │ │ │ │ ├── mpu_armv7.h │ │ │ │ │ ├── mpu_armv8.h │ │ │ │ │ └── tz_context.h │ │ │ │ └── LICENSE.txt │ │ │ │ ├── COPYING-BSD-3 │ │ │ │ ├── EVKB-IMXRT1050_manifest_v3_6.xml │ │ │ │ ├── SW-Content-Register.txt │ │ │ │ ├── VendorSamples.XML │ │ │ │ ├── boards │ │ │ │ └── evkbimxrt1050 │ │ │ │ │ ├── project_template │ │ │ │ │ ├── board.c │ │ │ │ │ ├── board.h │ │ │ │ │ ├── clock_config.c │ │ │ │ │ ├── clock_config.h │ │ │ │ │ ├── dcd.c │ │ │ │ │ ├── dcd.h │ │ │ │ │ ├── peripherals.c │ │ │ │ │ ├── peripherals.h │ │ │ │ │ ├── pin_mux.c │ │ │ │ │ └── pin_mux.h │ │ │ │ │ └── xip │ │ │ │ │ ├── evkbimxrt1050_flexspi_nor_config.c │ │ │ │ │ └── evkbimxrt1050_flexspi_nor_config.h │ │ │ │ ├── components │ │ │ │ ├── button │ │ │ │ │ ├── button.c │ │ │ │ │ └── button.h │ │ │ │ ├── codec │ │ │ │ │ ├── cs42888 │ │ │ │ │ │ ├── fsl_cs42888.c │ │ │ │ │ │ └── fsl_cs42888.h │ │ │ │ │ ├── da7212 │ │ │ │ │ │ ├── fsl_dialog7212.c │ │ │ │ │ │ └── fsl_dialog7212.h │ │ │ │ │ ├── fsl_codec_common.c │ │ │ │ │ ├── fsl_codec_common.h │ │ │ │ │ ├── i2c │ │ │ │ │ │ ├── fsl_codec_i2c.c │ │ │ │ │ │ └── fsl_codec_i2c.h │ │ │ │ │ ├── port │ │ │ │ │ │ ├── cs42888 │ │ │ │ │ │ │ ├── fsl_codec_adapter.c │ │ │ │ │ │ │ └── fsl_codec_adapter.h │ │ │ │ │ │ ├── da7212 │ │ │ │ │ │ │ ├── fsl_codec_adapter.c │ │ │ │ │ │ │ └── fsl_codec_adapter.h │ │ │ │ │ │ ├── fsl_codec_adapter.c │ │ │ │ │ │ ├── fsl_codec_adapter.h │ │ │ │ │ │ ├── fsl_cs42888_adapter.c │ │ │ │ │ │ ├── fsl_cs42888_adapter.h │ │ │ │ │ │ ├── fsl_da7212_adapter.c │ │ │ │ │ │ ├── fsl_da7212_adapter.h │ │ │ │ │ │ ├── fsl_sgtl_adapter.c │ │ │ │ │ │ ├── fsl_sgtl_adapter.h │ │ │ │ │ │ ├── fsl_wm8904_adapter.c │ │ │ │ │ │ ├── fsl_wm8904_adapter.h │ │ │ │ │ │ ├── fsl_wm8960_adapter.c │ │ │ │ │ │ ├── fsl_wm8960_adapter.h │ │ │ │ │ │ ├── sgtl5000 │ │ │ │ │ │ │ ├── fsl_codec_adapter.c │ │ │ │ │ │ │ └── fsl_codec_adapter.h │ │ │ │ │ │ ├── wm8904 │ │ │ │ │ │ │ ├── fsl_codec_adapter.c │ │ │ │ │ │ │ └── fsl_codec_adapter.h │ │ │ │ │ │ └── wm8960 │ │ │ │ │ │ │ ├── fsl_codec_adapter.c │ │ │ │ │ │ │ └── fsl_codec_adapter.h │ │ │ │ │ ├── sgtl5000 │ │ │ │ │ │ ├── fsl_sgtl5000.c │ │ │ │ │ │ └── fsl_sgtl5000.h │ │ │ │ │ ├── wm8904 │ │ │ │ │ │ ├── fsl_wm8904.c │ │ │ │ │ │ └── fsl_wm8904.h │ │ │ │ │ └── wm8960 │ │ │ │ │ │ ├── fsl_wm8960.c │ │ │ │ │ │ └── fsl_wm8960.h │ │ │ │ ├── common_task │ │ │ │ │ ├── common_task.c │ │ │ │ │ └── common_task.h │ │ │ │ ├── crc │ │ │ │ │ ├── crc.h │ │ │ │ │ └── software_crc_adapter.c │ │ │ │ ├── flash │ │ │ │ │ ├── nand │ │ │ │ │ │ ├── flexspi │ │ │ │ │ │ │ ├── fsl_flexspi_nand_flash.c │ │ │ │ │ │ │ └── fsl_flexspi_nand_flash.h │ │ │ │ │ │ ├── fsl_nand_flash.h │ │ │ │ │ │ └── semc │ │ │ │ │ │ │ ├── fsl_semc_nand_flash.c │ │ │ │ │ │ │ └── fsl_semc_nand_flash.h │ │ │ │ │ └── nor │ │ │ │ │ │ ├── flexspi │ │ │ │ │ │ ├── fsl_flexspi_nor_flash.c │ │ │ │ │ │ └── fsl_flexspi_nor_flash.h │ │ │ │ │ │ └── fsl_nor_flash.h │ │ │ │ ├── ft5406_rt │ │ │ │ │ ├── fsl_ft5406_rt.c │ │ │ │ │ └── fsl_ft5406_rt.h │ │ │ │ ├── fxos8700cq │ │ │ │ │ ├── fsl_fxos.c │ │ │ │ │ └── fsl_fxos.h │ │ │ │ ├── gpio │ │ │ │ │ ├── gpio.h │ │ │ │ │ └── igpio_adapter.c │ │ │ │ ├── i2c │ │ │ │ │ ├── i2c.h │ │ │ │ │ └── lpi2c_adapter.c │ │ │ │ ├── led │ │ │ │ │ ├── led.c │ │ │ │ │ └── led.h │ │ │ │ ├── lists │ │ │ │ │ ├── generic_list.c │ │ │ │ │ └── generic_list.h │ │ │ │ ├── mem_manager │ │ │ │ │ ├── mem_manager.c │ │ │ │ │ └── mem_manager.h │ │ │ │ ├── osa │ │ │ │ │ ├── fsl_os_abstraction.h │ │ │ │ │ ├── fsl_os_abstraction_bm.c │ │ │ │ │ ├── fsl_os_abstraction_bm.h │ │ │ │ │ └── fsl_os_abstraction_config.h │ │ │ │ ├── panic │ │ │ │ │ ├── panic.c │ │ │ │ │ └── panic.h │ │ │ │ ├── phy │ │ │ │ │ ├── device │ │ │ │ │ │ └── phyksz8081 │ │ │ │ │ │ │ ├── fsl_phyksz8081.c │ │ │ │ │ │ │ └── fsl_phyksz8081.h │ │ │ │ │ ├── fsl_mdio.h │ │ │ │ │ ├── fsl_phy.h │ │ │ │ │ └── mdio │ │ │ │ │ │ └── enet │ │ │ │ │ │ ├── fsl_enet_mdio.c │ │ │ │ │ │ └── fsl_enet_mdio.h │ │ │ │ ├── phyksz8081 │ │ │ │ │ ├── fsl_phy.c │ │ │ │ │ └── fsl_phy.h │ │ │ │ ├── rng │ │ │ │ │ ├── rng.h │ │ │ │ │ └── trng_adapter.c │ │ │ │ ├── serial_manager │ │ │ │ │ ├── serial_manager.c │ │ │ │ │ ├── serial_manager.h │ │ │ │ │ ├── serial_port_internal.h │ │ │ │ │ ├── serial_port_swo.c │ │ │ │ │ ├── serial_port_swo.h │ │ │ │ │ ├── serial_port_uart.c │ │ │ │ │ └── serial_port_uart.h │ │ │ │ ├── timer │ │ │ │ │ ├── gpt_adapter.c │ │ │ │ │ ├── pit_adapter.c │ │ │ │ │ └── timer.h │ │ │ │ ├── timer_manager │ │ │ │ │ ├── timer_manager.c │ │ │ │ │ └── timer_manager.h │ │ │ │ ├── uart │ │ │ │ │ ├── lpuart_adapter.c │ │ │ │ │ └── uart.h │ │ │ │ └── video │ │ │ │ │ ├── camera │ │ │ │ │ ├── device │ │ │ │ │ │ ├── fsl_camera_device.h │ │ │ │ │ │ ├── mt9m114 │ │ │ │ │ │ │ ├── fsl_mt9m114.c │ │ │ │ │ │ │ └── fsl_mt9m114.h │ │ │ │ │ │ ├── ov7725 │ │ │ │ │ │ │ ├── fsl_ov7725.c │ │ │ │ │ │ │ └── fsl_ov7725.h │ │ │ │ │ │ └── sccb │ │ │ │ │ │ │ ├── fsl_sccb.c │ │ │ │ │ │ │ └── fsl_sccb.h │ │ │ │ │ ├── fsl_camera.h │ │ │ │ │ └── receiver │ │ │ │ │ │ ├── csi │ │ │ │ │ │ ├── fsl_csi_camera_adapter.c │ │ │ │ │ │ └── fsl_csi_camera_adapter.h │ │ │ │ │ │ └── fsl_camera_receiver.h │ │ │ │ │ ├── display │ │ │ │ │ └── dc │ │ │ │ │ │ ├── elcdif │ │ │ │ │ │ ├── fsl_dc_fb_elcdif.c │ │ │ │ │ │ └── fsl_dc_fb_elcdif.h │ │ │ │ │ │ └── fsl_dc_fb.h │ │ │ │ │ ├── fsl_video_common.c │ │ │ │ │ ├── fsl_video_common.h │ │ │ │ │ └── i2c │ │ │ │ │ ├── fsl_video_i2c.c │ │ │ │ │ └── fsl_video_i2c.h │ │ │ │ ├── devices │ │ │ │ └── MIMXRT1052 │ │ │ │ │ ├── MIMXRT1052.h │ │ │ │ │ ├── MIMXRT1052.xml │ │ │ │ │ ├── MIMXRT1052_features.h │ │ │ │ │ ├── arm │ │ │ │ │ ├── MIMXRT105x_HYPER_256KB_SEC.FLM │ │ │ │ │ └── MIMXRT105x_QuadSPI_4KB_SEC.FLM │ │ │ │ │ ├── cmsis_drivers │ │ │ │ │ ├── fsl_enet_cmsis.c │ │ │ │ │ ├── fsl_enet_cmsis.h │ │ │ │ │ ├── fsl_enet_phy_cmsis.c │ │ │ │ │ ├── fsl_enet_phy_cmsis.h │ │ │ │ │ ├── fsl_lpi2c_cmsis.c │ │ │ │ │ ├── fsl_lpi2c_cmsis.h │ │ │ │ │ ├── fsl_lpspi_cmsis.c │ │ │ │ │ ├── fsl_lpspi_cmsis.h │ │ │ │ │ ├── fsl_lpuart_cmsis.c │ │ │ │ │ └── fsl_lpuart_cmsis.h │ │ │ │ │ ├── drivers │ │ │ │ │ ├── fsl_adc.c │ │ │ │ │ ├── fsl_adc.h │ │ │ │ │ ├── fsl_adc_etc.c │ │ │ │ │ ├── fsl_adc_etc.h │ │ │ │ │ ├── fsl_aipstz.c │ │ │ │ │ ├── fsl_aipstz.h │ │ │ │ │ ├── fsl_aoi.c │ │ │ │ │ ├── fsl_aoi.h │ │ │ │ │ ├── fsl_bee.c │ │ │ │ │ ├── fsl_bee.h │ │ │ │ │ ├── fsl_cache.c │ │ │ │ │ ├── fsl_cache.h │ │ │ │ │ ├── fsl_clock.c │ │ │ │ │ ├── fsl_clock.h │ │ │ │ │ ├── fsl_cmp.c │ │ │ │ │ ├── fsl_cmp.h │ │ │ │ │ ├── fsl_common.c │ │ │ │ │ ├── fsl_common.h │ │ │ │ │ ├── fsl_csi.c │ │ │ │ │ ├── fsl_csi.h │ │ │ │ │ ├── fsl_dcdc.c │ │ │ │ │ ├── fsl_dcdc.h │ │ │ │ │ ├── fsl_dcp.c │ │ │ │ │ ├── fsl_dcp.h │ │ │ │ │ ├── fsl_dmamux.c │ │ │ │ │ ├── fsl_dmamux.h │ │ │ │ │ ├── fsl_edma.c │ │ │ │ │ ├── fsl_edma.h │ │ │ │ │ ├── fsl_elcdif.c │ │ │ │ │ ├── fsl_elcdif.h │ │ │ │ │ ├── fsl_enc.c │ │ │ │ │ ├── fsl_enc.h │ │ │ │ │ ├── fsl_enet.c │ │ │ │ │ ├── fsl_enet.h │ │ │ │ │ ├── fsl_ewm.c │ │ │ │ │ ├── fsl_ewm.h │ │ │ │ │ ├── fsl_flexcan.c │ │ │ │ │ ├── fsl_flexcan.h │ │ │ │ │ ├── fsl_flexio.c │ │ │ │ │ ├── fsl_flexio.h │ │ │ │ │ ├── fsl_flexio_camera.c │ │ │ │ │ ├── fsl_flexio_camera.h │ │ │ │ │ ├── fsl_flexio_camera_edma.c │ │ │ │ │ ├── fsl_flexio_camera_edma.h │ │ │ │ │ ├── fsl_flexio_i2c_master.c │ │ │ │ │ ├── fsl_flexio_i2c_master.h │ │ │ │ │ ├── fsl_flexio_i2s.c │ │ │ │ │ ├── fsl_flexio_i2s.h │ │ │ │ │ ├── fsl_flexio_i2s_edma.c │ │ │ │ │ ├── fsl_flexio_i2s_edma.h │ │ │ │ │ ├── fsl_flexio_mculcd.c │ │ │ │ │ ├── fsl_flexio_mculcd.h │ │ │ │ │ ├── fsl_flexio_mculcd_edma.c │ │ │ │ │ ├── fsl_flexio_mculcd_edma.h │ │ │ │ │ ├── fsl_flexio_spi.c │ │ │ │ │ ├── fsl_flexio_spi.h │ │ │ │ │ ├── fsl_flexio_spi_edma.c │ │ │ │ │ ├── fsl_flexio_spi_edma.h │ │ │ │ │ ├── fsl_flexio_uart.c │ │ │ │ │ ├── fsl_flexio_uart.h │ │ │ │ │ ├── fsl_flexio_uart_edma.c │ │ │ │ │ ├── fsl_flexio_uart_edma.h │ │ │ │ │ ├── fsl_flexram.c │ │ │ │ │ ├── fsl_flexram.h │ │ │ │ │ ├── fsl_flexram_allocate.c │ │ │ │ │ ├── fsl_flexram_allocate.h │ │ │ │ │ ├── fsl_flexspi.c │ │ │ │ │ ├── fsl_flexspi.h │ │ │ │ │ ├── fsl_gpc.c │ │ │ │ │ ├── fsl_gpc.h │ │ │ │ │ ├── fsl_gpio.c │ │ │ │ │ ├── fsl_gpio.h │ │ │ │ │ ├── fsl_gpt.c │ │ │ │ │ ├── fsl_gpt.h │ │ │ │ │ ├── fsl_iomuxc.h │ │ │ │ │ ├── fsl_kpp.c │ │ │ │ │ ├── fsl_kpp.h │ │ │ │ │ ├── fsl_lpi2c.c │ │ │ │ │ ├── fsl_lpi2c.h │ │ │ │ │ ├── fsl_lpi2c_edma.c │ │ │ │ │ ├── fsl_lpi2c_edma.h │ │ │ │ │ ├── fsl_lpspi.c │ │ │ │ │ ├── fsl_lpspi.h │ │ │ │ │ ├── fsl_lpspi_edma.c │ │ │ │ │ ├── fsl_lpspi_edma.h │ │ │ │ │ ├── fsl_lpuart.c │ │ │ │ │ ├── fsl_lpuart.h │ │ │ │ │ ├── fsl_lpuart_edma.c │ │ │ │ │ ├── fsl_lpuart_edma.h │ │ │ │ │ ├── fsl_ocotp.c │ │ │ │ │ ├── fsl_ocotp.h │ │ │ │ │ ├── fsl_pit.c │ │ │ │ │ ├── fsl_pit.h │ │ │ │ │ ├── fsl_pmu.c │ │ │ │ │ ├── fsl_pmu.h │ │ │ │ │ ├── fsl_pwm.c │ │ │ │ │ ├── fsl_pwm.h │ │ │ │ │ ├── fsl_pxp.c │ │ │ │ │ ├── fsl_pxp.h │ │ │ │ │ ├── fsl_qtmr.c │ │ │ │ │ ├── fsl_qtmr.h │ │ │ │ │ ├── fsl_rtwdog.c │ │ │ │ │ ├── fsl_rtwdog.h │ │ │ │ │ ├── fsl_sai.c │ │ │ │ │ ├── fsl_sai.h │ │ │ │ │ ├── fsl_sai_edma.c │ │ │ │ │ ├── fsl_sai_edma.h │ │ │ │ │ ├── fsl_semc.c │ │ │ │ │ ├── fsl_semc.h │ │ │ │ │ ├── fsl_snvs_hp.c │ │ │ │ │ ├── fsl_snvs_hp.h │ │ │ │ │ ├── fsl_snvs_lp.c │ │ │ │ │ ├── fsl_snvs_lp.h │ │ │ │ │ ├── fsl_spdif.c │ │ │ │ │ ├── fsl_spdif.h │ │ │ │ │ ├── fsl_spdif_edma.c │ │ │ │ │ ├── fsl_spdif_edma.h │ │ │ │ │ ├── fsl_src.c │ │ │ │ │ ├── fsl_src.h │ │ │ │ │ ├── fsl_tempmon.c │ │ │ │ │ ├── fsl_tempmon.h │ │ │ │ │ ├── fsl_trng.c │ │ │ │ │ ├── fsl_trng.h │ │ │ │ │ ├── fsl_tsc.c │ │ │ │ │ ├── fsl_tsc.h │ │ │ │ │ ├── fsl_usdhc.c │ │ │ │ │ ├── fsl_usdhc.h │ │ │ │ │ ├── fsl_wdog.c │ │ │ │ │ ├── fsl_wdog.h │ │ │ │ │ ├── fsl_xbara.c │ │ │ │ │ ├── fsl_xbara.h │ │ │ │ │ ├── fsl_xbarb.c │ │ │ │ │ └── fsl_xbarb.h │ │ │ │ │ ├── fsl_device_registers.h │ │ │ │ │ ├── gcc │ │ │ │ │ ├── MIMXRT1052xxxxx_flexspi_nor.ld │ │ │ │ │ ├── MIMXRT1052xxxxx_flexspi_nor_sdram.ld │ │ │ │ │ ├── MIMXRT1052xxxxx_ram.ld │ │ │ │ │ ├── MIMXRT1052xxxxx_sdram.ld │ │ │ │ │ ├── MIMXRT1052xxxxx_sdram_txt.ld │ │ │ │ │ └── startup_MIMXRT1052.S │ │ │ │ │ ├── project_template │ │ │ │ │ ├── board.c │ │ │ │ │ ├── board.h │ │ │ │ │ ├── clock_config.c │ │ │ │ │ ├── clock_config.h │ │ │ │ │ ├── peripherals.c │ │ │ │ │ ├── peripherals.h │ │ │ │ │ ├── pin_mux.c │ │ │ │ │ └── pin_mux.h │ │ │ │ │ ├── system_MIMXRT1052.c │ │ │ │ │ ├── system_MIMXRT1052.h │ │ │ │ │ ├── template │ │ │ │ │ └── RTE_Device.h │ │ │ │ │ ├── utilities │ │ │ │ │ ├── debug_console │ │ │ │ │ │ ├── fsl_debug_console.c │ │ │ │ │ │ ├── fsl_debug_console.h │ │ │ │ │ │ └── fsl_debug_console_conf.h │ │ │ │ │ ├── fsl_assert.c │ │ │ │ │ ├── fsl_notifier.c │ │ │ │ │ ├── fsl_notifier.h │ │ │ │ │ ├── fsl_sbrk.c │ │ │ │ │ ├── fsl_shell.c │ │ │ │ │ ├── fsl_shell.h │ │ │ │ │ └── str │ │ │ │ │ │ ├── fsl_str.c │ │ │ │ │ │ └── fsl_str.h │ │ │ │ │ └── xip │ │ │ │ │ ├── fsl_flexspi_nor_boot.c │ │ │ │ │ └── fsl_flexspi_nor_boot.h │ │ │ │ └── main.c │ │ ├── netx_driver │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE.txt │ │ │ ├── LICENSED-HARDWARE.txt │ │ │ └── src │ │ │ │ ├── gnu │ │ │ │ └── nx_driver_imxrt10xx_low_level.S │ │ │ │ ├── iar │ │ │ │ └── nx_driver_imxrt10xx_low_level.s │ │ │ │ ├── nx_driver_imxrt10xx.c │ │ │ │ └── nx_driver_imxrt10xx.h │ │ ├── netxduo │ │ │ └── nx_user.h │ │ └── threadx │ │ │ └── tx_user.h │ ├── mimxrt1050.code-workspace │ ├── readme.md │ └── tools │ │ ├── flash.bat │ │ ├── mimxrt1050-evkb.cfg │ │ ├── rebuild.bat │ │ ├── rebuild.sh │ │ └── rebuild_iar.bat └── MIMXRT1060-EVK │ ├── .vs │ └── launch.vs.json │ ├── .vscode │ ├── cmake-kits.json │ ├── extensions.json │ ├── flash.jlink │ ├── launch.json │ ├── reset.gdb │ ├── settings.json │ └── tasks.json │ ├── CMakeLists.txt │ ├── CMakePresets.json │ ├── MIMXRT1062.svd │ ├── VS.md │ ├── app │ ├── CMakeLists.txt │ ├── azure_config.h │ ├── azure_device_x509_cert_config.h │ ├── azure_pnp_info.h │ ├── board_init.c │ ├── board_init.h │ ├── console.c │ ├── legacy │ │ ├── mqtt.c │ │ └── mqtt.h │ ├── main.c │ ├── nx_client.c │ ├── nx_client.h │ └── startup │ │ ├── gnu │ │ ├── MIMXRT1062xxxxx_flexspi_nor.ld │ │ ├── startup_MIMXRT1062.S │ │ └── tx_initialize_low_level.S │ │ └── iar │ │ ├── MIMXRT1062xxxxx_flexspi_nor.icf │ │ ├── startup_MIMXRT1062.s │ │ └── tx_initialize_low_level.s │ ├── azure-pipelines.yml │ ├── lib │ ├── CMakeLists.txt │ ├── MIMXRT1060-evk │ │ ├── CMakeLists.txt │ │ ├── config │ │ │ └── board │ │ │ │ ├── board.c │ │ │ │ ├── board.h │ │ │ │ ├── clock_config.c │ │ │ │ ├── clock_config.h │ │ │ │ ├── dcd.c │ │ │ │ ├── dcd.h │ │ │ │ ├── pin_mux.c │ │ │ │ ├── pin_mux.h │ │ │ │ └── readme.txt │ │ └── src │ │ │ ├── BSP.XML │ │ │ ├── CMSIS │ │ │ ├── Core │ │ │ │ └── Include │ │ │ │ │ ├── CMSIS_Include_core_cm_MIMXRT1062.cmake │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ ├── cmsis_armclang_ltm.h │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ │ ├── cmsis_version.h │ │ │ │ │ ├── core_cm7.h │ │ │ │ │ └── mpu_armv7.h │ │ │ ├── Driver │ │ │ │ ├── DriverTemplates │ │ │ │ │ ├── Driver_CAN.c │ │ │ │ │ ├── Driver_ETH_MAC.c │ │ │ │ │ ├── Driver_ETH_PHY.c │ │ │ │ │ ├── Driver_Flash.c │ │ │ │ │ ├── Driver_I2C.c │ │ │ │ │ ├── Driver_MCI.c │ │ │ │ │ ├── Driver_SAI.c │ │ │ │ │ ├── Driver_SPI.c │ │ │ │ │ ├── Driver_Storage.c │ │ │ │ │ ├── Driver_USART.c │ │ │ │ │ ├── Driver_USBD.c │ │ │ │ │ └── Driver_USBH.c │ │ │ │ └── Include │ │ │ │ │ ├── CMSIS_Driver_Include_Common_MIMXRT1062.cmake │ │ │ │ │ ├── CMSIS_Driver_Include_Ethernet_MAC_MIMXRT1062.cmake │ │ │ │ │ ├── CMSIS_Driver_Include_Ethernet_MIMXRT1062.cmake │ │ │ │ │ ├── CMSIS_Driver_Include_Ethernet_PHY_MIMXRT1062.cmake │ │ │ │ │ ├── CMSIS_Driver_Include_I2C_MIMXRT1062.cmake │ │ │ │ │ ├── CMSIS_Driver_Include_SPI_MIMXRT1062.cmake │ │ │ │ │ ├── CMSIS_Driver_Include_USART_MIMXRT1062.cmake │ │ │ │ │ ├── Driver_CAN.h │ │ │ │ │ ├── Driver_Common.h │ │ │ │ │ ├── Driver_ETH.h │ │ │ │ │ ├── Driver_ETH_MAC.h │ │ │ │ │ ├── Driver_ETH_PHY.h │ │ │ │ │ ├── Driver_Flash.h │ │ │ │ │ ├── Driver_GPIO.h │ │ │ │ │ ├── Driver_I2C.h │ │ │ │ │ ├── Driver_MCI.h │ │ │ │ │ ├── Driver_NAND.h │ │ │ │ │ ├── Driver_SAI.h │ │ │ │ │ ├── Driver_SPI.h │ │ │ │ │ ├── Driver_Storage.h │ │ │ │ │ ├── Driver_USART.h │ │ │ │ │ ├── Driver_USB.h │ │ │ │ │ ├── Driver_USBD.h │ │ │ │ │ ├── Driver_USBH.h │ │ │ │ │ └── Driver_WiFi.h │ │ │ └── LICENSE.txt │ │ │ ├── COPYING-BSD-3 │ │ │ ├── EVK-MIMXRT1060_manifest_v3_8.xml │ │ │ ├── LA_OPT_NXP_Software_License RTAudio.txt │ │ │ ├── SW-Content-Register.txt │ │ │ ├── boards │ │ │ └── evkmimxrt1060 │ │ │ │ └── xip │ │ │ │ ├── driver_xip_board_evkmimxrt1060_MIMXRT1062.cmake │ │ │ │ ├── evkmimxrt1060_flexspi_nor_config.c │ │ │ │ └── evkmimxrt1060_flexspi_nor_config.h │ │ │ ├── components │ │ │ ├── button │ │ │ │ ├── fsl_component_button.c │ │ │ │ └── fsl_component_button.h │ │ │ ├── codec │ │ │ │ ├── component_codec_adapters_MIMXRT1062.cmake │ │ │ │ ├── component_cs42448_adapter_MIMXRT1062.cmake │ │ │ │ ├── component_wm8960_adapter_MIMXRT1062.cmake │ │ │ │ ├── cs42448 │ │ │ │ │ ├── driver_cs42448_MIMXRT1062.cmake │ │ │ │ │ ├── fsl_cs42448.c │ │ │ │ │ └── fsl_cs42448.h │ │ │ │ ├── cs42888 │ │ │ │ │ ├── fsl_cs42888.c │ │ │ │ │ └── fsl_cs42888.h │ │ │ │ ├── da7212 │ │ │ │ │ ├── fsl_dialog7212.c │ │ │ │ │ └── fsl_dialog7212.h │ │ │ │ ├── driver_codec_MIMXRT1062.cmake │ │ │ │ ├── fsl_codec_common.c │ │ │ │ ├── fsl_codec_common.h │ │ │ │ ├── i2c │ │ │ │ │ ├── component_codec_i2c_MIMXRT1062.cmake │ │ │ │ │ ├── fsl_codec_i2c.c │ │ │ │ │ └── fsl_codec_i2c.h │ │ │ │ ├── port │ │ │ │ │ ├── cs42448 │ │ │ │ │ │ ├── fsl_codec_cs42448_adapter.c │ │ │ │ │ │ └── fsl_codec_cs42448_adapter.h │ │ │ │ │ ├── cs42888 │ │ │ │ │ │ ├── fsl_codec_cs42888_adapter.c │ │ │ │ │ │ └── fsl_codec_cs42888_adapter.h │ │ │ │ │ ├── da7212 │ │ │ │ │ │ ├── fsl_codec_da7212_adapter.c │ │ │ │ │ │ └── fsl_codec_da7212_adapter.h │ │ │ │ │ ├── fsl_codec_adapter.c │ │ │ │ │ ├── fsl_codec_adapter.h │ │ │ │ │ ├── sgtl5000 │ │ │ │ │ │ ├── fsl_codec_sgtl_adapter.c │ │ │ │ │ │ └── fsl_codec_sgtl_adapter.h │ │ │ │ │ ├── wm8904 │ │ │ │ │ │ ├── fsl_codec_wm8904_adapter.c │ │ │ │ │ │ └── fsl_codec_wm8904_adapter.h │ │ │ │ │ └── wm8960 │ │ │ │ │ │ ├── fsl_codec_wm8960_adapter.c │ │ │ │ │ │ └── fsl_codec_wm8960_adapter.h │ │ │ │ ├── sgtl5000 │ │ │ │ │ ├── fsl_sgtl5000.c │ │ │ │ │ └── fsl_sgtl5000.h │ │ │ │ ├── wm8904 │ │ │ │ │ ├── fsl_wm8904.c │ │ │ │ │ └── fsl_wm8904.h │ │ │ │ └── wm8960 │ │ │ │ │ ├── driver_wm8960_MIMXRT1062.cmake │ │ │ │ │ ├── fsl_wm8960.c │ │ │ │ │ └── fsl_wm8960.h │ │ │ ├── common_task │ │ │ │ ├── component_common_task_MIMXRT1062.cmake │ │ │ │ ├── fsl_component_common_task.c │ │ │ │ └── fsl_component_common_task.h │ │ │ ├── crc │ │ │ │ ├── fsl_adapter_crc.h │ │ │ │ └── fsl_adapter_software_crc.c │ │ │ ├── flash │ │ │ │ ├── mflash │ │ │ │ │ ├── component_mflash_common_MIMXRT1062.cmake │ │ │ │ │ ├── component_mflash_file_MIMXRT1062.cmake │ │ │ │ │ ├── mflash_common.h │ │ │ │ │ ├── mflash_file.c │ │ │ │ │ ├── mflash_file.h │ │ │ │ │ ├── mimxrt1062 │ │ │ │ │ │ ├── component_mflash_rt1060_MIMXRT1062.cmake │ │ │ │ │ │ ├── mflash_drv.c │ │ │ │ │ │ └── mflash_drv.h │ │ │ │ │ └── readme.txt │ │ │ │ ├── nand │ │ │ │ │ ├── flexspi │ │ │ │ │ │ ├── fsl_flexspi_nand_flash.c │ │ │ │ │ │ └── fsl_flexspi_nand_flash.h │ │ │ │ │ ├── fsl_nand_flash.h │ │ │ │ │ └── semc │ │ │ │ │ │ ├── fsl_semc_nand_flash.c │ │ │ │ │ │ └── fsl_semc_nand_flash.h │ │ │ │ └── nor │ │ │ │ │ ├── driver_nor_flash-common_MIMXRT1062.cmake │ │ │ │ │ ├── flexspi │ │ │ │ │ ├── driver_nor_flash-controller-flexspi_MIMXRT1062.cmake │ │ │ │ │ ├── fsl_flexspi_nor_flash.c │ │ │ │ │ └── fsl_flexspi_nor_flash.h │ │ │ │ │ └── fsl_nor_flash.h │ │ │ ├── ft5406_rt │ │ │ │ ├── driver_ft5406_rt_MIMXRT1062.cmake │ │ │ │ ├── fsl_ft5406_rt.c │ │ │ │ └── fsl_ft5406_rt.h │ │ │ ├── fxos8700cq │ │ │ │ ├── driver_fxos8700cq_MIMXRT1062.cmake │ │ │ │ ├── fsl_fxos.c │ │ │ │ └── fsl_fxos.h │ │ │ ├── gpio │ │ │ │ ├── component_igpio_adapter_MIMXRT1062.cmake │ │ │ │ ├── fsl_adapter_gpio.h │ │ │ │ └── fsl_adapter_igpio.c │ │ │ ├── i2c │ │ │ │ ├── component_lpi2c_adapter_MIMXRT1062.cmake │ │ │ │ ├── fsl_adapter_i2c.h │ │ │ │ └── fsl_adapter_lpi2c.c │ │ │ ├── internal_flash │ │ │ │ ├── component_flexspi_nor_flash_adapter_MIMXRT1062.cmake │ │ │ │ ├── component_flexspi_nor_flash_adapter_rt1060evk_MIMXRT1062.cmake │ │ │ │ ├── fsl_adapter_flash.h │ │ │ │ └── fsl_adapter_flexspi_nor_flash.c │ │ │ ├── led │ │ │ │ ├── fsl_component_led.c │ │ │ │ └── fsl_component_led.h │ │ │ ├── lists │ │ │ │ ├── component_lists_MIMXRT1062.cmake │ │ │ │ ├── fsl_component_generic_list.c │ │ │ │ └── fsl_component_generic_list.h │ │ │ ├── log │ │ │ │ ├── component_log_MIMXRT1062.cmake │ │ │ │ ├── component_log_backend_debugconsole_MIMXRT1062.cmake │ │ │ │ ├── component_log_backend_ringbuffer_MIMXRT1062.cmake │ │ │ │ ├── fsl_component_log.c │ │ │ │ ├── fsl_component_log.h │ │ │ │ ├── fsl_component_log_backend_debugconsole.c │ │ │ │ ├── fsl_component_log_backend_debugconsole.h │ │ │ │ ├── fsl_component_log_backend_ringbuffer.c │ │ │ │ ├── fsl_component_log_backend_ringbuffer.h │ │ │ │ └── fsl_component_log_config.h │ │ │ ├── mem_manager │ │ │ │ ├── fsl_component_mem_manager.c │ │ │ │ ├── fsl_component_mem_manager.h │ │ │ │ └── fsl_component_mem_manager_light.c │ │ │ ├── osa │ │ │ │ ├── component_osa_MIMXRT1062.cmake │ │ │ │ ├── component_osa_bm_MIMXRT1062.cmake │ │ │ │ ├── fsl_os_abstraction.h │ │ │ │ ├── fsl_os_abstraction_bm.c │ │ │ │ ├── fsl_os_abstraction_bm.h │ │ │ │ ├── fsl_os_abstraction_config.h │ │ │ │ ├── fsl_os_abstraction_threadx.c │ │ │ │ └── fsl_os_abstraction_threadx.h │ │ │ ├── panic │ │ │ │ ├── component_panic_MIMXRT1062.cmake │ │ │ │ ├── fsl_component_panic.c │ │ │ │ └── fsl_component_panic.h │ │ │ ├── phy │ │ │ │ ├── device │ │ │ │ │ └── phyksz8081 │ │ │ │ │ │ ├── driver_phy-device-ksz8081_MIMXRT1062.cmake │ │ │ │ │ │ ├── fsl_phyksz8081.c │ │ │ │ │ │ └── fsl_phyksz8081.h │ │ │ │ ├── driver_mdio-common_MIMXRT1062.cmake │ │ │ │ ├── driver_phy-common_MIMXRT1062.cmake │ │ │ │ ├── fsl_mdio.h │ │ │ │ ├── fsl_phy.h │ │ │ │ └── mdio │ │ │ │ │ └── enet │ │ │ │ │ ├── driver_mdio-enet_MIMXRT1062.cmake │ │ │ │ │ ├── fsl_enet_mdio.c │ │ │ │ │ └── fsl_enet_mdio.h │ │ │ ├── phyksz8081 │ │ │ │ ├── driver_phyksz8081_MIMXRT1062.cmake │ │ │ │ ├── fsl_phy.c │ │ │ │ └── fsl_phy.h │ │ │ ├── rng │ │ │ │ ├── fsl_adapter_rng.h │ │ │ │ ├── fsl_adapter_software_rng.c │ │ │ │ └── fsl_adapter_trng.c │ │ │ ├── serial_manager │ │ │ │ ├── component_serial_manager_MIMXRT1062.cmake │ │ │ │ ├── component_serial_manager_uart_MIMXRT1062.cmake │ │ │ │ ├── fsl_component_serial_manager.c │ │ │ │ ├── fsl_component_serial_manager.h │ │ │ │ ├── fsl_component_serial_port_internal.h │ │ │ │ ├── fsl_component_serial_port_swo.c │ │ │ │ ├── fsl_component_serial_port_swo.h │ │ │ │ ├── fsl_component_serial_port_uart.c │ │ │ │ ├── fsl_component_serial_port_uart.h │ │ │ │ ├── fsl_component_serial_port_virtual.c │ │ │ │ └── fsl_component_serial_port_virtual.h │ │ │ ├── time_stamp │ │ │ │ ├── fsl_adapter_pit_time_stamp.c │ │ │ │ └── fsl_adapter_time_stamp.h │ │ │ ├── timer │ │ │ │ ├── component_gpt_adapter_MIMXRT1062.cmake │ │ │ │ ├── component_pit_adapter_MIMXRT1062.cmake │ │ │ │ ├── fsl_adapter_gpt.c │ │ │ │ ├── fsl_adapter_pit.c │ │ │ │ └── fsl_adapter_timer.h │ │ │ ├── timer_manager │ │ │ │ ├── fsl_component_timer_manager.c │ │ │ │ └── fsl_component_timer_manager.h │ │ │ ├── uart │ │ │ │ ├── component_lpuart_adapter_MIMXRT1062.cmake │ │ │ │ ├── fsl_adapter_lpuart.c │ │ │ │ └── fsl_adapter_uart.h │ │ │ └── video │ │ │ │ ├── camera │ │ │ │ ├── device │ │ │ │ │ ├── driver_camera-device-common_MIMXRT1062.cmake │ │ │ │ │ ├── fsl_camera_device.h │ │ │ │ │ ├── mt9m114 │ │ │ │ │ │ ├── driver_camera-device-mt9m114_MIMXRT1062.cmake │ │ │ │ │ │ ├── fsl_mt9m114.c │ │ │ │ │ │ └── fsl_mt9m114.h │ │ │ │ │ ├── ov7725 │ │ │ │ │ │ ├── driver_camera-device-ov7725_MIMXRT1062.cmake │ │ │ │ │ │ ├── fsl_ov7725.c │ │ │ │ │ │ └── fsl_ov7725.h │ │ │ │ │ └── sccb │ │ │ │ │ │ ├── driver_camera-device-sccb_MIMXRT1062.cmake │ │ │ │ │ │ ├── fsl_sccb.c │ │ │ │ │ │ └── fsl_sccb.h │ │ │ │ ├── driver_camera-common_MIMXRT1062.cmake │ │ │ │ ├── fsl_camera.h │ │ │ │ └── receiver │ │ │ │ │ ├── csi │ │ │ │ │ ├── driver_camera-receiver-csi_MIMXRT1062.cmake │ │ │ │ │ ├── fsl_csi_camera_adapter.c │ │ │ │ │ └── fsl_csi_camera_adapter.h │ │ │ │ │ ├── driver_camera-receiver-common_MIMXRT1062.cmake │ │ │ │ │ └── fsl_camera_receiver.h │ │ │ │ ├── display │ │ │ │ └── dc │ │ │ │ │ ├── driver_dc-fb-common_MIMXRT1062.cmake │ │ │ │ │ ├── elcdif │ │ │ │ │ ├── driver_dc-fb-elcdif_MIMXRT1062.cmake │ │ │ │ │ ├── fsl_dc_fb_elcdif.c │ │ │ │ │ └── fsl_dc_fb_elcdif.h │ │ │ │ │ └── fsl_dc_fb.h │ │ │ │ ├── driver_video-common_MIMXRT1062.cmake │ │ │ │ ├── fsl_video_common.c │ │ │ │ ├── fsl_video_common.h │ │ │ │ └── i2c │ │ │ │ ├── driver_video-i2c_MIMXRT1062.cmake │ │ │ │ ├── fsl_video_i2c.c │ │ │ │ └── fsl_video_i2c.h │ │ │ └── devices │ │ │ └── MIMXRT1062 │ │ │ ├── MIMXRT1062.h │ │ │ ├── MIMXRT1062.xml │ │ │ ├── MIMXRT1062_features.h │ │ │ ├── arm │ │ │ ├── MIMXRT1062xxxxx_flexspi_nor.scf │ │ │ ├── MIMXRT1062xxxxx_flexspi_nor_sdram.scf │ │ │ ├── MIMXRT1062xxxxx_ram.scf │ │ │ ├── MIMXRT1062xxxxx_sdram.scf │ │ │ ├── MIMXRT1062xxxxx_sdram_txt.scf │ │ │ ├── MIMXRT106x_QSPI_4KB_SEC.FLM │ │ │ └── startup_MIMXRT1062.S │ │ │ ├── cmsis_drivers │ │ │ ├── driver_cmsis_enet_MIMXRT1062.cmake │ │ │ ├── driver_cmsis_lpi2c_MIMXRT1062.cmake │ │ │ ├── driver_cmsis_lpspi_MIMXRT1062.cmake │ │ │ ├── driver_cmsis_lpuart_MIMXRT1062.cmake │ │ │ ├── fsl_enet_cmsis.c │ │ │ ├── fsl_enet_cmsis.h │ │ │ ├── fsl_enet_phy_cmsis.c │ │ │ ├── fsl_enet_phy_cmsis.h │ │ │ ├── fsl_lpi2c_cmsis.c │ │ │ ├── fsl_lpi2c_cmsis.h │ │ │ ├── fsl_lpspi_cmsis.c │ │ │ ├── fsl_lpspi_cmsis.h │ │ │ ├── fsl_lpuart_cmsis.c │ │ │ └── fsl_lpuart_cmsis.h │ │ │ ├── device_MIMXRT1062_CMSIS_MIMXRT1062.cmake │ │ │ ├── device_MIMXRT1062_startup_MIMXRT1062.cmake │ │ │ ├── device_MIMXRT1062_system_MIMXRT1062.cmake │ │ │ ├── drivers │ │ │ ├── driver_adc_12b1msps_sar_MIMXRT1062.cmake │ │ │ ├── driver_adc_etc_MIMXRT1062.cmake │ │ │ ├── driver_aoi_MIMXRT1062.cmake │ │ │ ├── driver_bee_MIMXRT1062.cmake │ │ │ ├── driver_cache_armv7_m7_MIMXRT1062.cmake │ │ │ ├── driver_clock_MIMXRT1062.cmake │ │ │ ├── driver_cmp_MIMXRT1062.cmake │ │ │ ├── driver_common_MIMXRT1062.cmake │ │ │ ├── driver_csi_MIMXRT1062.cmake │ │ │ ├── driver_dcdc_1_MIMXRT1062.cmake │ │ │ ├── driver_dcp_MIMXRT1062.cmake │ │ │ ├── driver_dmamux_MIMXRT1062.cmake │ │ │ ├── driver_edma_MIMXRT1062.cmake │ │ │ ├── driver_elcdif_MIMXRT1062.cmake │ │ │ ├── driver_enc_MIMXRT1062.cmake │ │ │ ├── driver_enet_MIMXRT1062.cmake │ │ │ ├── driver_ewm_MIMXRT1062.cmake │ │ │ ├── driver_flexcan_MIMXRT1062.cmake │ │ │ ├── driver_flexcan_edma_MIMXRT1062.cmake │ │ │ ├── driver_flexio_MIMXRT1062.cmake │ │ │ ├── driver_flexio_i2c_master_MIMXRT1062.cmake │ │ │ ├── driver_flexio_i2s_MIMXRT1062.cmake │ │ │ ├── driver_flexio_i2s_edma_MIMXRT1062.cmake │ │ │ ├── driver_flexio_spi_MIMXRT1062.cmake │ │ │ ├── driver_flexio_spi_edma_MIMXRT1062.cmake │ │ │ ├── driver_flexio_uart_MIMXRT1062.cmake │ │ │ ├── driver_flexio_uart_edma_MIMXRT1062.cmake │ │ │ ├── driver_flexram_MIMXRT1062.cmake │ │ │ ├── driver_flexspi_MIMXRT1062.cmake │ │ │ ├── driver_flexspi_edma_MIMXRT1062.cmake │ │ │ ├── driver_gpc_1_MIMXRT1062.cmake │ │ │ ├── driver_gpt_MIMXRT1062.cmake │ │ │ ├── driver_igpio_MIMXRT1062.cmake │ │ │ ├── driver_iomuxc_MIMXRT1062.cmake │ │ │ ├── driver_kpp_MIMXRT1062.cmake │ │ │ ├── driver_lpi2c_MIMXRT1062.cmake │ │ │ ├── driver_lpi2c_edma_MIMXRT1062.cmake │ │ │ ├── driver_lpspi_MIMXRT1062.cmake │ │ │ ├── driver_lpspi_edma_MIMXRT1062.cmake │ │ │ ├── driver_lpuart_MIMXRT1062.cmake │ │ │ ├── driver_lpuart_edma_MIMXRT1062.cmake │ │ │ ├── driver_ocotp_MIMXRT1062.cmake │ │ │ ├── driver_pit_MIMXRT1062.cmake │ │ │ ├── driver_pwm_MIMXRT1062.cmake │ │ │ ├── driver_pxp_MIMXRT1062.cmake │ │ │ ├── driver_qtmr_1_MIMXRT1062.cmake │ │ │ ├── driver_romapi_MIMXRT1062.cmake │ │ │ ├── driver_rtwdog_MIMXRT1062.cmake │ │ │ ├── driver_sai_MIMXRT1062.cmake │ │ │ ├── driver_sai_edma_MIMXRT1062.cmake │ │ │ ├── driver_semc_MIMXRT1062.cmake │ │ │ ├── driver_snvs_hp_MIMXRT1062.cmake │ │ │ ├── driver_snvs_lp_MIMXRT1062.cmake │ │ │ ├── driver_soc_flexram_allocate_MIMXRT1062.cmake │ │ │ ├── driver_src_MIMXRT1062.cmake │ │ │ ├── driver_tempmon_MIMXRT1062.cmake │ │ │ ├── driver_trng_MIMXRT1062.cmake │ │ │ ├── driver_usdhc_MIMXRT1062.cmake │ │ │ ├── driver_wdog01_MIMXRT1062.cmake │ │ │ ├── driver_xbara_MIMXRT1062.cmake │ │ │ ├── driver_xbarb_MIMXRT1062.cmake │ │ │ ├── fsl_adc.c │ │ │ ├── fsl_adc.h │ │ │ ├── fsl_adc_etc.c │ │ │ ├── fsl_adc_etc.h │ │ │ ├── fsl_aipstz.c │ │ │ ├── fsl_aipstz.h │ │ │ ├── fsl_aoi.c │ │ │ ├── fsl_aoi.h │ │ │ ├── fsl_bee.c │ │ │ ├── fsl_bee.h │ │ │ ├── fsl_cache.c │ │ │ ├── fsl_cache.h │ │ │ ├── fsl_clock.c │ │ │ ├── fsl_clock.h │ │ │ ├── fsl_cmp.c │ │ │ ├── fsl_cmp.h │ │ │ ├── fsl_common.c │ │ │ ├── fsl_common.h │ │ │ ├── fsl_common_arm.c │ │ │ ├── fsl_common_arm.h │ │ │ ├── fsl_csi.c │ │ │ ├── fsl_csi.h │ │ │ ├── fsl_dcdc.c │ │ │ ├── fsl_dcdc.h │ │ │ ├── fsl_dcp.c │ │ │ ├── fsl_dcp.h │ │ │ ├── fsl_dmamux.c │ │ │ ├── fsl_dmamux.h │ │ │ ├── fsl_edma.c │ │ │ ├── fsl_edma.h │ │ │ ├── fsl_elcdif.c │ │ │ ├── fsl_elcdif.h │ │ │ ├── fsl_enc.c │ │ │ ├── fsl_enc.h │ │ │ ├── fsl_enet.c │ │ │ ├── fsl_enet.h │ │ │ ├── fsl_ewm.c │ │ │ ├── fsl_ewm.h │ │ │ ├── fsl_flexcan.c │ │ │ ├── fsl_flexcan.h │ │ │ ├── fsl_flexcan_edma.c │ │ │ ├── fsl_flexcan_edma.h │ │ │ ├── fsl_flexio.c │ │ │ ├── fsl_flexio.h │ │ │ ├── fsl_flexio_camera.c │ │ │ ├── fsl_flexio_camera.h │ │ │ ├── fsl_flexio_camera_edma.c │ │ │ ├── fsl_flexio_camera_edma.h │ │ │ ├── fsl_flexio_i2c_master.c │ │ │ ├── fsl_flexio_i2c_master.h │ │ │ ├── fsl_flexio_i2s.c │ │ │ ├── fsl_flexio_i2s.h │ │ │ ├── fsl_flexio_i2s_edma.c │ │ │ ├── fsl_flexio_i2s_edma.h │ │ │ ├── fsl_flexio_mculcd.c │ │ │ ├── fsl_flexio_mculcd.h │ │ │ ├── fsl_flexio_mculcd_edma.c │ │ │ ├── fsl_flexio_mculcd_edma.h │ │ │ ├── fsl_flexio_spi.c │ │ │ ├── fsl_flexio_spi.h │ │ │ ├── fsl_flexio_spi_edma.c │ │ │ ├── fsl_flexio_spi_edma.h │ │ │ ├── fsl_flexio_uart.c │ │ │ ├── fsl_flexio_uart.h │ │ │ ├── fsl_flexio_uart_edma.c │ │ │ ├── fsl_flexio_uart_edma.h │ │ │ ├── fsl_flexram.c │ │ │ ├── fsl_flexram.h │ │ │ ├── fsl_flexram_allocate.c │ │ │ ├── fsl_flexram_allocate.h │ │ │ ├── fsl_flexspi.c │ │ │ ├── fsl_flexspi.h │ │ │ ├── fsl_flexspi_edma.c │ │ │ ├── fsl_flexspi_edma.h │ │ │ ├── fsl_gpc.c │ │ │ ├── fsl_gpc.h │ │ │ ├── fsl_gpio.c │ │ │ ├── fsl_gpio.h │ │ │ ├── fsl_gpt.c │ │ │ ├── fsl_gpt.h │ │ │ ├── fsl_iomuxc.h │ │ │ ├── fsl_kpp.c │ │ │ ├── fsl_kpp.h │ │ │ ├── fsl_lpi2c.c │ │ │ ├── fsl_lpi2c.h │ │ │ ├── fsl_lpi2c_edma.c │ │ │ ├── fsl_lpi2c_edma.h │ │ │ ├── fsl_lpspi.c │ │ │ ├── fsl_lpspi.h │ │ │ ├── fsl_lpspi_edma.c │ │ │ ├── fsl_lpspi_edma.h │ │ │ ├── fsl_lpuart.c │ │ │ ├── fsl_lpuart.h │ │ │ ├── fsl_lpuart_edma.c │ │ │ ├── fsl_lpuart_edma.h │ │ │ ├── fsl_nic301.h │ │ │ ├── fsl_ocotp.c │ │ │ ├── fsl_ocotp.h │ │ │ ├── fsl_pit.c │ │ │ ├── fsl_pit.h │ │ │ ├── fsl_pmu.c │ │ │ ├── fsl_pmu.h │ │ │ ├── fsl_pwm.c │ │ │ ├── fsl_pwm.h │ │ │ ├── fsl_pxp.c │ │ │ ├── fsl_pxp.h │ │ │ ├── fsl_qtmr.c │ │ │ ├── fsl_qtmr.h │ │ │ ├── fsl_romapi.c │ │ │ ├── fsl_romapi.h │ │ │ ├── fsl_rtwdog.c │ │ │ ├── fsl_rtwdog.h │ │ │ ├── fsl_sai.c │ │ │ ├── fsl_sai.h │ │ │ ├── fsl_sai_edma.c │ │ │ ├── fsl_sai_edma.h │ │ │ ├── fsl_semc.c │ │ │ ├── fsl_semc.h │ │ │ ├── fsl_snvs_hp.c │ │ │ ├── fsl_snvs_hp.h │ │ │ ├── fsl_snvs_lp.c │ │ │ ├── fsl_snvs_lp.h │ │ │ ├── fsl_spdif.c │ │ │ ├── fsl_spdif.h │ │ │ ├── fsl_spdif_edma.c │ │ │ ├── fsl_spdif_edma.h │ │ │ ├── fsl_src.c │ │ │ ├── fsl_src.h │ │ │ ├── fsl_tempmon.c │ │ │ ├── fsl_tempmon.h │ │ │ ├── fsl_trng.c │ │ │ ├── fsl_trng.h │ │ │ ├── fsl_tsc.c │ │ │ ├── fsl_tsc.h │ │ │ ├── fsl_usdhc.c │ │ │ ├── fsl_usdhc.h │ │ │ ├── fsl_wdog.c │ │ │ ├── fsl_wdog.h │ │ │ ├── fsl_xbara.c │ │ │ ├── fsl_xbara.h │ │ │ ├── fsl_xbarb.c │ │ │ └── fsl_xbarb.h │ │ │ ├── fsl_device_registers.h │ │ │ ├── gcc │ │ │ ├── MIMXRT1062xxxxx_flexspi_nor.ld │ │ │ ├── MIMXRT1062xxxxx_flexspi_nor_sdram.ld │ │ │ ├── MIMXRT1062xxxxx_ram.ld │ │ │ ├── MIMXRT1062xxxxx_sdram.ld │ │ │ ├── MIMXRT1062xxxxx_sdram_txt.ld │ │ │ └── startup_MIMXRT1062.S │ │ │ ├── iar │ │ │ ├── MIMXRT1062xxxxx_flexspi_nor.icf │ │ │ ├── MIMXRT1062xxxxx_flexspi_nor_sdram.icf │ │ │ ├── MIMXRT1062xxxxx_ram.icf │ │ │ ├── MIMXRT1062xxxxx_sdram.icf │ │ │ ├── MIMXRT1062xxxxx_sdram_txt.icf │ │ │ └── startup_MIMXRT1062.s │ │ │ ├── mcuxpresso │ │ │ ├── startup_mimxrt1062.c │ │ │ └── startup_mimxrt1062.cpp │ │ │ ├── project_template │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── clock_config.c │ │ │ ├── clock_config.h │ │ │ ├── peripherals.c │ │ │ ├── peripherals.h │ │ │ ├── pin_mux.c │ │ │ └── pin_mux.h │ │ │ ├── system_MIMXRT1062.c │ │ │ ├── system_MIMXRT1062.h │ │ │ ├── template │ │ │ └── RTE_Device.h │ │ │ ├── utilities │ │ │ ├── debug_console │ │ │ │ ├── fsl_debug_console.c │ │ │ │ ├── fsl_debug_console.h │ │ │ │ └── fsl_debug_console_conf.h │ │ │ ├── debug_console_lite │ │ │ │ ├── fsl_assert.c │ │ │ │ ├── fsl_debug_console.c │ │ │ │ ├── fsl_debug_console.h │ │ │ │ ├── utility_assert_lite_MIMXRT1062.cmake │ │ │ │ └── utility_debug_console_lite_MIMXRT1062.cmake │ │ │ ├── fsl_assert.c │ │ │ ├── fsl_notifier.c │ │ │ ├── fsl_notifier.h │ │ │ ├── fsl_sbrk.c │ │ │ ├── fsl_shell.c │ │ │ ├── fsl_shell.h │ │ │ ├── str │ │ │ │ ├── fsl_str.c │ │ │ │ └── fsl_str.h │ │ │ ├── utilities_misc_utilities_MIMXRT1062.cmake │ │ │ ├── utility_assert_MIMXRT1062.cmake │ │ │ ├── utility_debug_console_MIMXRT1062.cmake │ │ │ └── utility_shell_MIMXRT1062.cmake │ │ │ └── xip │ │ │ ├── driver_xip_device_MIMXRT1062.cmake │ │ │ ├── fsl_flexspi_nor_boot.c │ │ │ └── fsl_flexspi_nor_boot.h │ ├── netx_driver │ │ ├── CMakeLists.txt │ │ ├── LICENSE.txt │ │ ├── LICENSED-HARDWARE.txt │ │ └── src │ │ │ ├── gnu │ │ │ └── nx_driver_imxrt1062_low_level.S │ │ │ ├── iar │ │ │ └── nx_driver_imxrt1062_low_level.s │ │ │ ├── nx_driver_imxrt1062.c │ │ │ └── nx_driver_imxrt1062.h │ ├── netxduo │ │ └── nx_user.h │ └── threadx │ │ └── tx_user.h │ ├── mimxrt1060.code-workspace │ ├── readme.md │ ├── tools │ ├── flash.bat │ ├── mimxrt1060-evk.cfg │ ├── rebuild.bat │ ├── rebuild.sh │ └── rebuild_iar.bat │ ├── vcpkg-configuration.json │ └── vscode.md ├── README.md ├── Renesas ├── RSK_RX65N_2MB │ ├── .vscode │ │ └── cmake-kits.json │ ├── CMakeLists.txt │ ├── app │ │ ├── .vscode │ │ │ └── cmake-kits.json │ │ ├── CMakeLists.txt │ │ ├── azure_config.h │ │ ├── azure_device_x509_cert_config.h │ │ ├── azure_pnp_info.h │ │ ├── board_init.c │ │ ├── board_init.h │ │ ├── console.c │ │ ├── legacy │ │ │ ├── mqtt.c │ │ │ └── mqtt.h │ │ ├── main.c │ │ ├── nx_client.c │ │ ├── nx_client.h │ │ └── startup │ │ │ └── gnu │ │ │ ├── linker_script.ld │ │ │ ├── linker_script_rvectors.inc │ │ │ ├── linker_script_rvectors_extern.inc │ │ │ └── tx_initialize_low_level.S │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── netx_driver │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE.txt │ │ │ ├── LICENSED-HARDWARE.txt │ │ │ └── src │ │ │ │ ├── nx_driver_rx_fit.c │ │ │ │ └── nx_driver_rx_fit.h │ │ ├── netxduo │ │ │ └── nx_user.h │ │ ├── rx_driver_package │ │ │ ├── CMakeLists.txt │ │ │ ├── RSK_RX65N_2MB.scfg │ │ │ └── src │ │ │ │ └── smc_gen │ │ │ │ ├── Config_PORT │ │ │ │ ├── Config_PORT.c │ │ │ │ ├── Config_PORT.h │ │ │ │ └── Config_PORT_user.c │ │ │ │ ├── Config_SCI8 │ │ │ │ ├── Config_SCI8.c │ │ │ │ ├── Config_SCI8.h │ │ │ │ └── Config_SCI8_user.c │ │ │ │ ├── general │ │ │ │ ├── r_cg_hardware_setup.c │ │ │ │ ├── r_cg_interrupt_handlers.h │ │ │ │ ├── r_cg_macrodriver.h │ │ │ │ ├── r_cg_port.h │ │ │ │ ├── r_cg_sci.h │ │ │ │ ├── r_cg_userdefine.h │ │ │ │ ├── r_smc_cgc.c │ │ │ │ ├── r_smc_cgc.h │ │ │ │ ├── r_smc_cgc_user.c │ │ │ │ ├── r_smc_entry.h │ │ │ │ ├── r_smc_interrupt.c │ │ │ │ └── r_smc_interrupt.h │ │ │ │ ├── r_bsp │ │ │ │ ├── board │ │ │ │ │ ├── generic_rx65n │ │ │ │ │ │ ├── hwsetup.c │ │ │ │ │ │ ├── hwsetup.h │ │ │ │ │ │ ├── r_bsp.h │ │ │ │ │ │ ├── r_bsp_config_reference.h │ │ │ │ │ │ └── r_bsp_interrupt_config_reference.h │ │ │ │ │ └── user │ │ │ │ │ │ └── r_bsp.h │ │ │ │ ├── doc │ │ │ │ │ ├── en │ │ │ │ │ │ └── r01an1685ej0561-rx-bsp.pdf │ │ │ │ │ └── ja │ │ │ │ │ │ └── r01an1685jj0561-rx-bsp.pdf │ │ │ │ ├── mcu │ │ │ │ │ ├── all │ │ │ │ │ │ ├── dbsct.c │ │ │ │ │ │ ├── linker_script_rvectors.inc │ │ │ │ │ │ ├── lowlvl.c │ │ │ │ │ │ ├── lowlvl.h │ │ │ │ │ │ ├── lowsrc.c │ │ │ │ │ │ ├── lowsrc.h │ │ │ │ │ │ ├── mcu_locks.c │ │ │ │ │ │ ├── r_bsp_common.c │ │ │ │ │ │ ├── r_bsp_common.h │ │ │ │ │ │ ├── r_bsp_cpu.c │ │ │ │ │ │ ├── r_bsp_interrupts.c │ │ │ │ │ │ ├── r_bsp_interrupts.h │ │ │ │ │ │ ├── r_bsp_locking.c │ │ │ │ │ │ ├── r_bsp_mcu_startup.c │ │ │ │ │ │ ├── r_bsp_mcu_startup.h │ │ │ │ │ │ ├── r_bsp_software_interrupt.c │ │ │ │ │ │ ├── r_bsp_software_interrupt.h │ │ │ │ │ │ ├── r_rtos.h │ │ │ │ │ │ ├── r_rx_compiler.h │ │ │ │ │ │ ├── r_rx_intrinsic_functions.c │ │ │ │ │ │ ├── r_rx_intrinsic_functions.h │ │ │ │ │ │ ├── r_typedefs.h │ │ │ │ │ │ ├── reset_program.S │ │ │ │ │ │ ├── resetprg.c │ │ │ │ │ │ ├── sbrk.c │ │ │ │ │ │ └── sbrk.h │ │ │ │ │ └── rx65n │ │ │ │ │ │ ├── mcu_clocks.c │ │ │ │ │ │ ├── mcu_clocks.h │ │ │ │ │ │ ├── mcu_info.h │ │ │ │ │ │ ├── mcu_init.c │ │ │ │ │ │ ├── mcu_init.h │ │ │ │ │ │ ├── mcu_interrupts.c │ │ │ │ │ │ ├── mcu_interrupts.h │ │ │ │ │ │ ├── mcu_locks.h │ │ │ │ │ │ ├── mcu_mapped_interrupts.c │ │ │ │ │ │ ├── mcu_mapped_interrupts.h │ │ │ │ │ │ ├── mcu_mapped_interrupts_private.h │ │ │ │ │ │ ├── r_bsp_cpu.h │ │ │ │ │ │ ├── r_bsp_locking.h │ │ │ │ │ │ ├── register_access │ │ │ │ │ │ └── gnuc │ │ │ │ │ │ │ └── iodefine.h │ │ │ │ │ │ ├── vecttbl.c │ │ │ │ │ │ └── vecttbl.h │ │ │ │ ├── platform.h │ │ │ │ └── readme.txt │ │ │ │ ├── r_cmt_rx │ │ │ │ ├── doc │ │ │ │ │ ├── en │ │ │ │ │ │ └── r01an1856ej0470-rx-timer.pdf │ │ │ │ │ └── ja │ │ │ │ │ │ └── r01an1856jj0470-rx-timer.pdf │ │ │ │ ├── r_cmt_rx_if.h │ │ │ │ ├── readme.txt │ │ │ │ ├── ref │ │ │ │ │ └── r_cmt_rx_config_reference.h │ │ │ │ └── src │ │ │ │ │ └── r_cmt_rx.c │ │ │ │ ├── r_config │ │ │ │ ├── r_bsp_config.h │ │ │ │ ├── r_bsp_config_readme.txt │ │ │ │ ├── r_bsp_interrupt_config.h │ │ │ │ ├── r_cmt_rx_config.h │ │ │ │ └── r_ether_rx_config.h │ │ │ │ ├── r_ether_rx │ │ │ │ ├── doc │ │ │ │ │ ├── en │ │ │ │ │ │ └── r01an2009ej0121-rx-ether.pdf │ │ │ │ │ └── ja │ │ │ │ │ │ └── r01an2009jj0121-rx-ether.pdf │ │ │ │ ├── r_ether_rx_if.h │ │ │ │ ├── readme.txt │ │ │ │ ├── ref │ │ │ │ │ └── r_ether_rx_config_reference.h │ │ │ │ └── src │ │ │ │ │ ├── phy │ │ │ │ │ ├── phy.c │ │ │ │ │ └── phy.h │ │ │ │ │ ├── r_ether_rx.c │ │ │ │ │ ├── r_ether_rx_private.h │ │ │ │ │ └── targets │ │ │ │ │ └── rx65n │ │ │ │ │ └── r_ether_setting_rx65n.c │ │ │ │ └── r_pincfg │ │ │ │ ├── Pin.c │ │ │ │ ├── Pin.h │ │ │ │ ├── r_ether_rx_pinset.c │ │ │ │ ├── r_ether_rx_pinset.h │ │ │ │ └── r_pinset.h │ │ └── threadx │ │ │ └── tx_user.h │ ├── projects │ │ └── e2studio │ │ │ ├── .project │ │ │ └── rsk_rx65n_2mb DebugOnly.launch │ ├── readme.md │ └── tools │ │ └── rebuild.bat ├── RX65N_Cloud_Kit │ ├── .vscode │ │ └── cmake-kits.json │ ├── CMakeLists.txt │ ├── RX65N_Cloud_Kit.code-workspace │ ├── app │ │ ├── .vscode │ │ │ └── cmake-kits.json │ │ ├── CMakeLists.txt │ │ ├── azure_config.h │ │ ├── azure_device_x509_cert_config.h │ │ ├── azure_pnp_info.h │ │ ├── board_init.c │ │ ├── board_init.h │ │ ├── console.c │ │ ├── legacy │ │ │ ├── mqtt.c │ │ │ └── mqtt.h │ │ ├── main.c │ │ ├── nx_client.c │ │ ├── nx_client.h │ │ ├── rx_networking.c │ │ ├── rx_networking.h │ │ └── startup │ │ │ ├── gnu │ │ │ ├── linker_script.ld │ │ │ ├── linker_script_rvectors.inc │ │ │ ├── linker_script_rvectors_extern.inc │ │ │ └── tx_initialize_low_level.S │ │ │ └── iar │ │ │ ├── linker_script.icf │ │ │ └── tx_initialize_low_level.S │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── netx_driver │ │ │ ├── CMakeLists.txt │ │ │ ├── nx_driver_rx65n_cloud_kit.c │ │ │ └── nx_driver_rx65n_cloud_kit.h │ │ ├── netxduo │ │ │ └── nx_user.h │ │ ├── rx_driver_package │ │ │ ├── CMakeLists.txt │ │ │ ├── rx65n_cloud_kit.scfg │ │ │ └── src │ │ │ │ ├── r_wifi_sx_ulpgn │ │ │ │ ├── r_wifi_sx_ulpgn_config.h │ │ │ │ ├── r_wifi_sx_ulpgn_if.h │ │ │ │ ├── readme.txt │ │ │ │ ├── ref │ │ │ │ │ └── r_wifi_sx_ulpgn_config_reference.h │ │ │ │ └── src │ │ │ │ │ ├── r_wifi_sx_ulpgn_api.c │ │ │ │ │ ├── r_wifi_sx_ulpgn_atcmd.c │ │ │ │ │ ├── r_wifi_sx_ulpgn_os_wrap.c │ │ │ │ │ ├── r_wifi_sx_ulpgn_os_wrap.h │ │ │ │ │ └── r_wifi_sx_ulpgn_private.h │ │ │ │ └── smc_gen │ │ │ │ ├── Config_PORT │ │ │ │ ├── Config_PORT.c │ │ │ │ ├── Config_PORT.h │ │ │ │ └── Config_PORT_user.c │ │ │ │ ├── Config_SCI5 │ │ │ │ ├── Config_SCI5.c │ │ │ │ ├── Config_SCI5.h │ │ │ │ └── Config_SCI5_user.c │ │ │ │ ├── general │ │ │ │ ├── r_cg_hardware_setup.c │ │ │ │ ├── r_cg_interrupt_handlers.h │ │ │ │ ├── r_cg_macrodriver.h │ │ │ │ ├── r_cg_port.h │ │ │ │ ├── r_cg_sci.h │ │ │ │ ├── r_cg_userdefine.h │ │ │ │ ├── r_smc_cgc.c │ │ │ │ ├── r_smc_cgc.h │ │ │ │ ├── r_smc_cgc_user.c │ │ │ │ ├── r_smc_entry.h │ │ │ │ ├── r_smc_interrupt.c │ │ │ │ └── r_smc_interrupt.h │ │ │ │ ├── r_bsp │ │ │ │ ├── board │ │ │ │ │ ├── generic_rx65n │ │ │ │ │ │ ├── hwsetup.c │ │ │ │ │ │ ├── hwsetup.h │ │ │ │ │ │ ├── r_bsp.h │ │ │ │ │ │ ├── r_bsp_config_reference.h │ │ │ │ │ │ └── r_bsp_interrupt_config_reference.h │ │ │ │ │ └── user │ │ │ │ │ │ └── r_bsp.h │ │ │ │ ├── doc │ │ │ │ │ ├── en │ │ │ │ │ │ └── r01an1685ej0620-rx-bsp.pdf │ │ │ │ │ └── ja │ │ │ │ │ │ └── r01an1685jj0620-rx-bsp.pdf │ │ │ │ ├── mcu │ │ │ │ │ ├── all │ │ │ │ │ │ ├── dbsct.c │ │ │ │ │ │ ├── fsp_common_api.h │ │ │ │ │ │ ├── linker_script_rvectors.inc │ │ │ │ │ │ ├── lowlvl.c │ │ │ │ │ │ ├── lowlvl.h │ │ │ │ │ │ ├── lowsrc.c │ │ │ │ │ │ ├── lowsrc.h │ │ │ │ │ │ ├── mcu_locks.c │ │ │ │ │ │ ├── r_bsp_common.c │ │ │ │ │ │ ├── r_bsp_common.h │ │ │ │ │ │ ├── r_bsp_cpu.c │ │ │ │ │ │ ├── r_bsp_interrupts.c │ │ │ │ │ │ ├── r_bsp_interrupts.h │ │ │ │ │ │ ├── r_bsp_locking.c │ │ │ │ │ │ ├── r_bsp_mcu_startup.c │ │ │ │ │ │ ├── r_bsp_mcu_startup.h │ │ │ │ │ │ ├── r_bsp_software_interrupt.c │ │ │ │ │ │ ├── r_bsp_software_interrupt.h │ │ │ │ │ │ ├── r_fsp_error.h │ │ │ │ │ │ ├── r_rtos.h │ │ │ │ │ │ ├── r_rx_compiler.h │ │ │ │ │ │ ├── r_rx_intrinsic_functions.c │ │ │ │ │ │ ├── r_rx_intrinsic_functions.h │ │ │ │ │ │ ├── r_typedefs.h │ │ │ │ │ │ ├── reset_program.S │ │ │ │ │ │ ├── resetprg.c │ │ │ │ │ │ ├── sbrk.c │ │ │ │ │ │ └── sbrk.h │ │ │ │ │ └── rx65n │ │ │ │ │ │ ├── mcu_clocks.c │ │ │ │ │ │ ├── mcu_clocks.h │ │ │ │ │ │ ├── mcu_info.h │ │ │ │ │ │ ├── mcu_init.c │ │ │ │ │ │ ├── mcu_init.h │ │ │ │ │ │ ├── mcu_interrupts.c │ │ │ │ │ │ ├── mcu_interrupts.h │ │ │ │ │ │ ├── mcu_locks.h │ │ │ │ │ │ ├── mcu_mapped_interrupts.c │ │ │ │ │ │ ├── mcu_mapped_interrupts.h │ │ │ │ │ │ ├── mcu_mapped_interrupts_private.h │ │ │ │ │ │ ├── r_bsp_cpu.h │ │ │ │ │ │ ├── r_bsp_locking.h │ │ │ │ │ │ ├── register_access │ │ │ │ │ │ └── gnuc │ │ │ │ │ │ │ └── iodefine.h │ │ │ │ │ │ ├── vecttbl.c │ │ │ │ │ │ └── vecttbl.h │ │ │ │ ├── platform.h │ │ │ │ └── readme.txt │ │ │ │ ├── r_byteq │ │ │ │ ├── doc │ │ │ │ │ ├── en │ │ │ │ │ │ └── r01an1683ej0181-rx-apl.pdf │ │ │ │ │ └── ja │ │ │ │ │ │ └── r01an1683jj0181-rx-apl.pdf │ │ │ │ ├── r_byteq_if.h │ │ │ │ ├── readme.txt │ │ │ │ ├── ref │ │ │ │ │ └── r_byteq_config_reference.h │ │ │ │ └── src │ │ │ │ │ ├── r_byteq.c │ │ │ │ │ └── r_byteq_private.h │ │ │ │ ├── r_cmt_rx │ │ │ │ ├── doc │ │ │ │ │ ├── en │ │ │ │ │ │ └── r01an1856ej0470-rx-timer.pdf │ │ │ │ │ └── ja │ │ │ │ │ │ └── r01an1856jj0470-rx-timer.pdf │ │ │ │ ├── r_cmt_rx_if.h │ │ │ │ ├── readme.txt │ │ │ │ ├── ref │ │ │ │ │ └── r_cmt_rx_config_reference.h │ │ │ │ └── src │ │ │ │ │ └── r_cmt_rx.c │ │ │ │ ├── r_config │ │ │ │ ├── r_bsp_config.h │ │ │ │ ├── r_bsp_config_readme.txt │ │ │ │ ├── r_bsp_interrupt_config.h │ │ │ │ ├── r_byteq_config.h │ │ │ │ ├── r_cmt_rx_config.h │ │ │ │ ├── r_sci_iic_rx_config.h │ │ │ │ ├── r_sci_iic_rx_pin_config.h │ │ │ │ └── r_sci_rx_config.h │ │ │ │ ├── r_pincfg │ │ │ │ ├── Pin.c │ │ │ │ ├── Pin.h │ │ │ │ ├── r_pinset.h │ │ │ │ ├── r_sci_rx_pinset.c │ │ │ │ └── r_sci_rx_pinset.h │ │ │ │ ├── r_sci_iic_rx │ │ │ │ ├── doc │ │ │ │ │ ├── en │ │ │ │ │ │ └── r01an1691ej0246-rx-sci-iic.pdf │ │ │ │ │ └── ja │ │ │ │ │ │ └── r01an1691jj0246-rx-sci-iic.pdf │ │ │ │ ├── r_sci_iic_rx_if.h │ │ │ │ ├── readme.txt │ │ │ │ ├── ref │ │ │ │ │ ├── r_sci_iic_rx_config_reference.h │ │ │ │ │ └── r_sci_iic_rx_pin_config_reference.h │ │ │ │ └── src │ │ │ │ │ ├── r_sci_iic_rx.c │ │ │ │ │ ├── r_sci_iic_rx_platform.h │ │ │ │ │ ├── r_sci_iic_rx_private.h │ │ │ │ │ └── targets │ │ │ │ │ └── rx65n │ │ │ │ │ ├── r_sci_iic_rx65n.c │ │ │ │ │ └── r_sci_iic_rx65n_private.h │ │ │ │ └── r_sci_rx │ │ │ │ ├── doc │ │ │ │ ├── en │ │ │ │ │ └── r01an1815ej0370-rx-serial.pdf │ │ │ │ └── ja │ │ │ │ │ └── r01an1815jj0370-rx-serial.pdf │ │ │ │ ├── r_sci_rx_if.h │ │ │ │ ├── readme.txt │ │ │ │ ├── ref │ │ │ │ └── r_sci_rx_config_reference.h │ │ │ │ └── src │ │ │ │ ├── r_sci_rx.c │ │ │ │ ├── r_sci_rx_dmaca.c │ │ │ │ ├── r_sci_rx_dmaca.h │ │ │ │ ├── r_sci_rx_dtc.c │ │ │ │ ├── r_sci_rx_dtc.h │ │ │ │ ├── r_sci_rx_platform.h │ │ │ │ ├── r_sci_rx_private.h │ │ │ │ └── targets │ │ │ │ └── rx65n │ │ │ │ ├── r_sci_rx65n.c │ │ │ │ ├── r_sci_rx65n_data.c │ │ │ │ └── r_sci_rx65n_private.h │ │ ├── sensorlib │ │ │ ├── CMakeLists.txt │ │ │ └── src │ │ │ │ ├── bme68x │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bme68x.c │ │ │ │ ├── bme68x.h │ │ │ │ └── bme68x_defs.h │ │ │ │ ├── bmi160 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bmi160.c │ │ │ │ ├── bmi160.h │ │ │ │ └── bmi160_defs.h │ │ │ │ ├── isl29035 │ │ │ │ ├── isl29035_sensor.c │ │ │ │ └── isl29035_sensor.h │ │ │ │ ├── rx65n_cloud_kit_sensors.c │ │ │ │ ├── rx65n_cloud_kit_sensors.h │ │ │ │ ├── rx_i2c_api.c │ │ │ │ └── rx_i2c_api.h │ │ └── threadx │ │ │ └── tx_user.h │ ├── project │ │ └── e2studio │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ └── rx65n_cloud_kit DebugOnly.launch │ ├── readme.md │ └── tools │ │ └── rebuild.bat └── Synergy │ └── readme.md ├── SECURITY.md ├── STMicroelectronics ├── B-L475E-IOT01A │ ├── .vs │ │ └── launch.vs.json │ ├── .vscode │ │ ├── cmake-kits.json │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── CMakeLists.txt │ ├── CMakePresets.json │ ├── STM32L4x5.svd │ ├── VS.md │ ├── app │ │ ├── CMakeLists.txt │ │ ├── azure_config.h │ │ ├── azure_device_x509_cert_config.h │ │ ├── azure_pnp_info.h │ │ ├── board_init.c │ │ ├── board_init.h │ │ ├── console.c │ │ ├── main.c │ │ ├── nx_client.c │ │ ├── nx_client.h │ │ ├── startup │ │ │ ├── gnu │ │ │ │ ├── STM32L475xx_FLASH.ld │ │ │ │ ├── startup_stm32l475xx.s │ │ │ │ └── tx_initialize_low_level.S │ │ │ └── iar │ │ │ │ ├── startup_stm32l475xx.s │ │ │ │ ├── stm32l475xx_flash.icf │ │ │ │ └── tx_initialize_low_level.s │ │ ├── stm_networking.c │ │ └── stm_networking.h │ ├── azure-pipelines.yml │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── netx_driver │ │ │ ├── CMakeLists.txt │ │ │ ├── inventek │ │ │ │ ├── es_wifi.c │ │ │ │ ├── es_wifi.h │ │ │ │ ├── es_wifi_conf.h │ │ │ │ ├── es_wifi_io.c │ │ │ │ ├── es_wifi_io.h │ │ │ │ ├── license.txt │ │ │ │ ├── wifi.c │ │ │ │ └── wifi.h │ │ │ ├── nx_driver_stm32l4.c │ │ │ └── nx_driver_stm32l4.h │ │ ├── netxduo │ │ │ └── nx_user.h │ │ ├── stm32cubel4 │ │ │ ├── CMakeLists.txt │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Drivers │ │ │ │ ├── BSP │ │ │ │ │ ├── B-L475E-IOT01 │ │ │ │ │ │ ├── License.md │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── _htmresc │ │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ │ ├── mini-st_2020.css │ │ │ │ │ │ │ └── st_logo_2020.png │ │ │ │ │ │ ├── stm32l475e_iot01.c │ │ │ │ │ │ ├── stm32l475e_iot01.h │ │ │ │ │ │ ├── stm32l475e_iot01_accelero.c │ │ │ │ │ │ ├── stm32l475e_iot01_accelero.h │ │ │ │ │ │ ├── stm32l475e_iot01_gyro.c │ │ │ │ │ │ ├── stm32l475e_iot01_gyro.h │ │ │ │ │ │ ├── stm32l475e_iot01_hsensor.c │ │ │ │ │ │ ├── stm32l475e_iot01_hsensor.h │ │ │ │ │ │ ├── stm32l475e_iot01_magneto.c │ │ │ │ │ │ ├── stm32l475e_iot01_magneto.h │ │ │ │ │ │ ├── stm32l475e_iot01_psensor.c │ │ │ │ │ │ ├── stm32l475e_iot01_psensor.h │ │ │ │ │ │ ├── stm32l475e_iot01_qspi.c │ │ │ │ │ │ ├── stm32l475e_iot01_qspi.h │ │ │ │ │ │ ├── stm32l475e_iot01_tsensor.c │ │ │ │ │ │ └── stm32l475e_iot01_tsensor.h │ │ │ │ │ └── Components │ │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── accelero.h │ │ │ │ │ │ ├── audio.h │ │ │ │ │ │ ├── camera.h │ │ │ │ │ │ ├── dpredriver.h │ │ │ │ │ │ ├── epd.h │ │ │ │ │ │ ├── gyro.h │ │ │ │ │ │ ├── hsensor.h │ │ │ │ │ │ ├── idd.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── lcd.h │ │ │ │ │ │ ├── magneto.h │ │ │ │ │ │ ├── psensor.h │ │ │ │ │ │ ├── pwrmon.h │ │ │ │ │ │ ├── ts.h │ │ │ │ │ │ ├── tsensor.h │ │ │ │ │ │ └── usbtypecswitch.h │ │ │ │ │ │ ├── cs42l51 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── cs42l51.c │ │ │ │ │ │ └── cs42l51.h │ │ │ │ │ │ ├── cs43l22 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── cs43l22.c │ │ │ │ │ │ └── cs43l22.h │ │ │ │ │ │ ├── cy8c4014lqi │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── cy8c4014lqi.c │ │ │ │ │ │ └── cy8c4014lqi.h │ │ │ │ │ │ ├── ft3x67 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── ft3x67.c │ │ │ │ │ │ └── ft3x67.h │ │ │ │ │ │ ├── ft5336 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── ft5336.c │ │ │ │ │ │ └── ft5336.h │ │ │ │ │ │ ├── ft6x06 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── ft6x06.c │ │ │ │ │ │ └── ft6x06.h │ │ │ │ │ │ ├── hts221 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── hts221.c │ │ │ │ │ │ └── hts221.h │ │ │ │ │ │ ├── hx8347g │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── hx8347g.c │ │ │ │ │ │ └── hx8347g.h │ │ │ │ │ │ ├── hx8347i │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── hx8347i.c │ │ │ │ │ │ └── hx8347i.h │ │ │ │ │ │ ├── iss66wvh8m8 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ └── iss66wvh8m8.h │ │ │ │ │ │ ├── l3gd20 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── l3gd20.c │ │ │ │ │ │ └── l3gd20.h │ │ │ │ │ │ ├── lis3mdl │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── lis3mdl.c │ │ │ │ │ │ └── lis3mdl.h │ │ │ │ │ │ ├── lps22hb │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── lps22hb.c │ │ │ │ │ │ └── lps22hb.h │ │ │ │ │ │ ├── ls016b8uy │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── ls016b8uy.c │ │ │ │ │ │ └── ls016b8uy.h │ │ │ │ │ │ ├── lsm303c │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── lsm303c.c │ │ │ │ │ │ └── lsm303c.h │ │ │ │ │ │ ├── lsm303dlhc │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── lsm303dlhc.c │ │ │ │ │ │ └── lsm303dlhc.h │ │ │ │ │ │ ├── lsm6dsl │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── lsm6dsl.c │ │ │ │ │ │ └── lsm6dsl.h │ │ │ │ │ │ ├── m24sr │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── m24sr.c │ │ │ │ │ │ └── m24sr.h │ │ │ │ │ │ ├── mfxstm32l152 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── mfxstm32l152.c │ │ │ │ │ │ └── mfxstm32l152.h │ │ │ │ │ │ ├── mx25lm51245g │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ └── mx25lm51245g.h │ │ │ │ │ │ ├── mx25r6435f │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ └── mx25r6435f.h │ │ │ │ │ │ ├── n25q128a │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ └── n25q128a.h │ │ │ │ │ │ ├── n25q256a │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ └── n25q256a.h │ │ │ │ │ │ ├── ov9655 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── ov9655.c │ │ │ │ │ │ └── ov9655.h │ │ │ │ │ │ ├── rk043fn48h │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ └── rk043fn48h.h │ │ │ │ │ │ ├── st25dv │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── _htmresc │ │ │ │ │ │ │ ├── mini-st.css │ │ │ │ │ │ │ └── st_logo.png │ │ │ │ │ │ ├── st25dv.c │ │ │ │ │ │ ├── st25dv.h │ │ │ │ │ │ ├── st25dv_reg.c │ │ │ │ │ │ └── st25dv_reg.h │ │ │ │ │ │ ├── st7735 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── st7735.c │ │ │ │ │ │ └── st7735.h │ │ │ │ │ │ ├── st7789h2 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── st7789h2.c │ │ │ │ │ │ └── st7789h2.h │ │ │ │ │ │ ├── stmpe1600 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── stmpe1600.c │ │ │ │ │ │ └── stmpe1600.h │ │ │ │ │ │ ├── stmpe811 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── stmpe811.c │ │ │ │ │ │ └── stmpe811.h │ │ │ │ │ │ └── wm8994 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── wm8994.c │ │ │ │ │ │ └── wm8994.h │ │ │ │ ├── CMSIS │ │ │ │ │ ├── ARM.CMSIS.pdsc │ │ │ │ │ ├── Core │ │ │ │ │ │ ├── Include │ │ │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ │ │ ├── cmsis_armclang_ltm.h │ │ │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ │ │ │ ├── cmsis_version.h │ │ │ │ │ │ │ ├── core_armv81mml.h │ │ │ │ │ │ │ ├── core_armv8mbl.h │ │ │ │ │ │ │ ├── core_armv8mml.h │ │ │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ │ │ ├── core_cm0plus.h │ │ │ │ │ │ │ ├── core_cm1.h │ │ │ │ │ │ │ ├── core_cm23.h │ │ │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ │ │ ├── core_cm33.h │ │ │ │ │ │ │ ├── core_cm35p.h │ │ │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ │ │ ├── core_cm7.h │ │ │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ │ │ ├── core_sc300.h │ │ │ │ │ │ │ ├── mpu_armv7.h │ │ │ │ │ │ │ ├── mpu_armv8.h │ │ │ │ │ │ │ └── tz_context.h │ │ │ │ │ │ └── Template │ │ │ │ │ │ │ └── ARMv8-M │ │ │ │ │ │ │ ├── main_s.c │ │ │ │ │ │ │ └── tz_context.c │ │ │ │ │ ├── Device │ │ │ │ │ │ └── ST │ │ │ │ │ │ │ └── STM32L4xx │ │ │ │ │ │ │ ├── Include │ │ │ │ │ │ │ ├── stm32l475xx.h │ │ │ │ │ │ │ ├── stm32l4xx.h │ │ │ │ │ │ │ └── system_stm32l4xx.h │ │ │ │ │ │ │ ├── License.md │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ │ └── _htmresc │ │ │ │ │ │ │ ├── Add button.svg │ │ │ │ │ │ │ ├── Update.svg │ │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ │ ├── mini-st_2020.css │ │ │ │ │ │ │ └── st_logo_2020.png │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ │ ├── cmsis_armclang_ltm.h │ │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ │ │ ├── cmsis_version.h │ │ │ │ │ │ ├── core_armv81mml.h │ │ │ │ │ │ ├── core_armv8mbl.h │ │ │ │ │ │ ├── core_armv8mml.h │ │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ │ ├── core_cm0plus.h │ │ │ │ │ │ ├── core_cm1.h │ │ │ │ │ │ ├── core_cm23.h │ │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ │ ├── core_cm33.h │ │ │ │ │ │ ├── core_cm35p.h │ │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ │ ├── core_cm7.h │ │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ │ ├── core_sc300.h │ │ │ │ │ │ ├── mpu_armv7.h │ │ │ │ │ │ ├── mpu_armv8.h │ │ │ │ │ │ └── tz_context.h │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── README.md │ │ │ │ └── STM32L4xx_HAL_Driver │ │ │ │ │ ├── Inc │ │ │ │ │ ├── Legacy │ │ │ │ │ │ ├── stm32_hal_legacy.h │ │ │ │ │ │ └── stm32l4xx_hal_can_legacy.h │ │ │ │ │ ├── stm32_assert_template.h │ │ │ │ │ ├── stm32l4xx_hal.h │ │ │ │ │ ├── stm32l4xx_hal_adc.h │ │ │ │ │ ├── stm32l4xx_hal_adc_ex.h │ │ │ │ │ ├── stm32l4xx_hal_can.h │ │ │ │ │ ├── stm32l4xx_hal_comp.h │ │ │ │ │ ├── stm32l4xx_hal_conf_template.h │ │ │ │ │ ├── stm32l4xx_hal_cortex.h │ │ │ │ │ ├── stm32l4xx_hal_crc.h │ │ │ │ │ ├── stm32l4xx_hal_crc_ex.h │ │ │ │ │ ├── stm32l4xx_hal_cryp.h │ │ │ │ │ ├── stm32l4xx_hal_cryp_ex.h │ │ │ │ │ ├── stm32l4xx_hal_dac.h │ │ │ │ │ ├── stm32l4xx_hal_dac_ex.h │ │ │ │ │ ├── stm32l4xx_hal_dcmi.h │ │ │ │ │ ├── stm32l4xx_hal_def.h │ │ │ │ │ ├── stm32l4xx_hal_dfsdm.h │ │ │ │ │ ├── stm32l4xx_hal_dfsdm_ex.h │ │ │ │ │ ├── stm32l4xx_hal_dma.h │ │ │ │ │ ├── stm32l4xx_hal_dma2d.h │ │ │ │ │ ├── stm32l4xx_hal_dma_ex.h │ │ │ │ │ ├── stm32l4xx_hal_dsi.h │ │ │ │ │ ├── stm32l4xx_hal_exti.h │ │ │ │ │ ├── stm32l4xx_hal_firewall.h │ │ │ │ │ ├── stm32l4xx_hal_flash.h │ │ │ │ │ ├── stm32l4xx_hal_flash_ex.h │ │ │ │ │ ├── stm32l4xx_hal_flash_ramfunc.h │ │ │ │ │ ├── stm32l4xx_hal_gfxmmu.h │ │ │ │ │ ├── stm32l4xx_hal_gpio.h │ │ │ │ │ ├── stm32l4xx_hal_gpio_ex.h │ │ │ │ │ ├── stm32l4xx_hal_hash.h │ │ │ │ │ ├── stm32l4xx_hal_hash_ex.h │ │ │ │ │ ├── stm32l4xx_hal_hcd.h │ │ │ │ │ ├── stm32l4xx_hal_i2c.h │ │ │ │ │ ├── stm32l4xx_hal_i2c_ex.h │ │ │ │ │ ├── stm32l4xx_hal_irda.h │ │ │ │ │ ├── stm32l4xx_hal_irda_ex.h │ │ │ │ │ ├── stm32l4xx_hal_iwdg.h │ │ │ │ │ ├── stm32l4xx_hal_lcd.h │ │ │ │ │ ├── stm32l4xx_hal_lptim.h │ │ │ │ │ ├── stm32l4xx_hal_ltdc.h │ │ │ │ │ ├── stm32l4xx_hal_ltdc_ex.h │ │ │ │ │ ├── stm32l4xx_hal_mmc.h │ │ │ │ │ ├── stm32l4xx_hal_mmc_ex.h │ │ │ │ │ ├── stm32l4xx_hal_nand.h │ │ │ │ │ ├── stm32l4xx_hal_nor.h │ │ │ │ │ ├── stm32l4xx_hal_opamp.h │ │ │ │ │ ├── stm32l4xx_hal_opamp_ex.h │ │ │ │ │ ├── stm32l4xx_hal_ospi.h │ │ │ │ │ ├── stm32l4xx_hal_pcd.h │ │ │ │ │ ├── stm32l4xx_hal_pcd_ex.h │ │ │ │ │ ├── stm32l4xx_hal_pka.h │ │ │ │ │ ├── stm32l4xx_hal_pssi.h │ │ │ │ │ ├── stm32l4xx_hal_pwr.h │ │ │ │ │ ├── stm32l4xx_hal_pwr_ex.h │ │ │ │ │ ├── stm32l4xx_hal_qspi.h │ │ │ │ │ ├── stm32l4xx_hal_rcc.h │ │ │ │ │ ├── stm32l4xx_hal_rcc_ex.h │ │ │ │ │ ├── stm32l4xx_hal_rng.h │ │ │ │ │ ├── stm32l4xx_hal_rng_ex.h │ │ │ │ │ ├── stm32l4xx_hal_rtc.h │ │ │ │ │ ├── stm32l4xx_hal_rtc_ex.h │ │ │ │ │ ├── stm32l4xx_hal_sai.h │ │ │ │ │ ├── stm32l4xx_hal_sai_ex.h │ │ │ │ │ ├── stm32l4xx_hal_sd.h │ │ │ │ │ ├── stm32l4xx_hal_sd_ex.h │ │ │ │ │ ├── stm32l4xx_hal_smartcard.h │ │ │ │ │ ├── stm32l4xx_hal_smartcard_ex.h │ │ │ │ │ ├── stm32l4xx_hal_smbus.h │ │ │ │ │ ├── stm32l4xx_hal_smbus_ex.h │ │ │ │ │ ├── stm32l4xx_hal_spi.h │ │ │ │ │ ├── stm32l4xx_hal_spi_ex.h │ │ │ │ │ ├── stm32l4xx_hal_sram.h │ │ │ │ │ ├── stm32l4xx_hal_swpmi.h │ │ │ │ │ ├── stm32l4xx_hal_tim.h │ │ │ │ │ ├── stm32l4xx_hal_tim_ex.h │ │ │ │ │ ├── stm32l4xx_hal_tsc.h │ │ │ │ │ ├── stm32l4xx_hal_uart.h │ │ │ │ │ ├── stm32l4xx_hal_uart_ex.h │ │ │ │ │ ├── stm32l4xx_hal_usart.h │ │ │ │ │ ├── stm32l4xx_hal_usart_ex.h │ │ │ │ │ ├── stm32l4xx_hal_wwdg.h │ │ │ │ │ ├── stm32l4xx_ll_adc.h │ │ │ │ │ ├── stm32l4xx_ll_bus.h │ │ │ │ │ ├── stm32l4xx_ll_comp.h │ │ │ │ │ ├── stm32l4xx_ll_cortex.h │ │ │ │ │ ├── stm32l4xx_ll_crc.h │ │ │ │ │ ├── stm32l4xx_ll_crs.h │ │ │ │ │ ├── stm32l4xx_ll_dac.h │ │ │ │ │ ├── stm32l4xx_ll_dma.h │ │ │ │ │ ├── stm32l4xx_ll_dma2d.h │ │ │ │ │ ├── stm32l4xx_ll_dmamux.h │ │ │ │ │ ├── stm32l4xx_ll_exti.h │ │ │ │ │ ├── stm32l4xx_ll_fmc.h │ │ │ │ │ ├── stm32l4xx_ll_gpio.h │ │ │ │ │ ├── stm32l4xx_ll_i2c.h │ │ │ │ │ ├── stm32l4xx_ll_iwdg.h │ │ │ │ │ ├── stm32l4xx_ll_lptim.h │ │ │ │ │ ├── stm32l4xx_ll_lpuart.h │ │ │ │ │ ├── stm32l4xx_ll_opamp.h │ │ │ │ │ ├── stm32l4xx_ll_pka.h │ │ │ │ │ ├── stm32l4xx_ll_pwr.h │ │ │ │ │ ├── stm32l4xx_ll_rcc.h │ │ │ │ │ ├── stm32l4xx_ll_rng.h │ │ │ │ │ ├── stm32l4xx_ll_rtc.h │ │ │ │ │ ├── stm32l4xx_ll_sdmmc.h │ │ │ │ │ ├── stm32l4xx_ll_spi.h │ │ │ │ │ ├── stm32l4xx_ll_swpmi.h │ │ │ │ │ ├── stm32l4xx_ll_system.h │ │ │ │ │ ├── stm32l4xx_ll_tim.h │ │ │ │ │ ├── stm32l4xx_ll_usart.h │ │ │ │ │ ├── stm32l4xx_ll_usb.h │ │ │ │ │ ├── stm32l4xx_ll_utils.h │ │ │ │ │ └── stm32l4xx_ll_wwdg.h │ │ │ │ │ ├── License.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ ├── Src │ │ │ │ │ ├── Legacy │ │ │ │ │ │ └── stm32l4xx_hal_can.c │ │ │ │ │ ├── stm32l4xx_hal.c │ │ │ │ │ ├── stm32l4xx_hal_adc.c │ │ │ │ │ ├── stm32l4xx_hal_adc_ex.c │ │ │ │ │ ├── stm32l4xx_hal_can.c │ │ │ │ │ ├── stm32l4xx_hal_comp.c │ │ │ │ │ ├── stm32l4xx_hal_cortex.c │ │ │ │ │ ├── stm32l4xx_hal_crc.c │ │ │ │ │ ├── stm32l4xx_hal_crc_ex.c │ │ │ │ │ ├── stm32l4xx_hal_cryp.c │ │ │ │ │ ├── stm32l4xx_hal_cryp_ex.c │ │ │ │ │ ├── stm32l4xx_hal_dac.c │ │ │ │ │ ├── stm32l4xx_hal_dac_ex.c │ │ │ │ │ ├── stm32l4xx_hal_dcmi.c │ │ │ │ │ ├── stm32l4xx_hal_dfsdm.c │ │ │ │ │ ├── stm32l4xx_hal_dfsdm_ex.c │ │ │ │ │ ├── stm32l4xx_hal_dma.c │ │ │ │ │ ├── stm32l4xx_hal_dma2d.c │ │ │ │ │ ├── stm32l4xx_hal_dma_ex.c │ │ │ │ │ ├── stm32l4xx_hal_dsi.c │ │ │ │ │ ├── stm32l4xx_hal_exti.c │ │ │ │ │ ├── stm32l4xx_hal_firewall.c │ │ │ │ │ ├── stm32l4xx_hal_flash.c │ │ │ │ │ ├── stm32l4xx_hal_flash_ex.c │ │ │ │ │ ├── stm32l4xx_hal_flash_ramfunc.c │ │ │ │ │ ├── stm32l4xx_hal_gfxmmu.c │ │ │ │ │ ├── stm32l4xx_hal_gpio.c │ │ │ │ │ ├── stm32l4xx_hal_hash.c │ │ │ │ │ ├── stm32l4xx_hal_hash_ex.c │ │ │ │ │ ├── stm32l4xx_hal_hcd.c │ │ │ │ │ ├── stm32l4xx_hal_i2c.c │ │ │ │ │ ├── stm32l4xx_hal_i2c_ex.c │ │ │ │ │ ├── stm32l4xx_hal_irda.c │ │ │ │ │ ├── stm32l4xx_hal_iwdg.c │ │ │ │ │ ├── stm32l4xx_hal_lcd.c │ │ │ │ │ ├── stm32l4xx_hal_lptim.c │ │ │ │ │ ├── stm32l4xx_hal_ltdc.c │ │ │ │ │ ├── stm32l4xx_hal_ltdc_ex.c │ │ │ │ │ ├── stm32l4xx_hal_mmc.c │ │ │ │ │ ├── stm32l4xx_hal_mmc_ex.c │ │ │ │ │ ├── stm32l4xx_hal_msp_template.c │ │ │ │ │ ├── stm32l4xx_hal_nand.c │ │ │ │ │ ├── stm32l4xx_hal_nor.c │ │ │ │ │ ├── stm32l4xx_hal_opamp.c │ │ │ │ │ ├── stm32l4xx_hal_opamp_ex.c │ │ │ │ │ ├── stm32l4xx_hal_ospi.c │ │ │ │ │ ├── stm32l4xx_hal_pcd.c │ │ │ │ │ ├── stm32l4xx_hal_pcd_ex.c │ │ │ │ │ ├── stm32l4xx_hal_pka.c │ │ │ │ │ ├── stm32l4xx_hal_pssi.c │ │ │ │ │ ├── stm32l4xx_hal_pwr.c │ │ │ │ │ ├── stm32l4xx_hal_pwr_ex.c │ │ │ │ │ ├── stm32l4xx_hal_qspi.c │ │ │ │ │ ├── stm32l4xx_hal_rcc.c │ │ │ │ │ ├── stm32l4xx_hal_rcc_ex.c │ │ │ │ │ ├── stm32l4xx_hal_rng.c │ │ │ │ │ ├── stm32l4xx_hal_rng_ex.c │ │ │ │ │ ├── stm32l4xx_hal_rtc.c │ │ │ │ │ ├── stm32l4xx_hal_rtc_ex.c │ │ │ │ │ ├── stm32l4xx_hal_sai.c │ │ │ │ │ ├── stm32l4xx_hal_sai_ex.c │ │ │ │ │ ├── stm32l4xx_hal_sd.c │ │ │ │ │ ├── stm32l4xx_hal_sd_ex.c │ │ │ │ │ ├── stm32l4xx_hal_smartcard.c │ │ │ │ │ ├── stm32l4xx_hal_smartcard_ex.c │ │ │ │ │ ├── stm32l4xx_hal_smbus.c │ │ │ │ │ ├── stm32l4xx_hal_smbus_ex.c │ │ │ │ │ ├── stm32l4xx_hal_spi.c │ │ │ │ │ ├── stm32l4xx_hal_spi_ex.c │ │ │ │ │ ├── stm32l4xx_hal_sram.c │ │ │ │ │ ├── stm32l4xx_hal_swpmi.c │ │ │ │ │ ├── stm32l4xx_hal_tim.c │ │ │ │ │ ├── stm32l4xx_hal_tim_ex.c │ │ │ │ │ ├── stm32l4xx_hal_timebase_tim_template.c │ │ │ │ │ ├── stm32l4xx_hal_tsc.c │ │ │ │ │ ├── stm32l4xx_hal_uart.c │ │ │ │ │ ├── stm32l4xx_hal_uart_ex.c │ │ │ │ │ ├── stm32l4xx_hal_usart.c │ │ │ │ │ ├── stm32l4xx_hal_usart_ex.c │ │ │ │ │ ├── stm32l4xx_hal_wwdg.c │ │ │ │ │ ├── stm32l4xx_ll_adc.c │ │ │ │ │ ├── stm32l4xx_ll_comp.c │ │ │ │ │ ├── stm32l4xx_ll_crc.c │ │ │ │ │ ├── stm32l4xx_ll_crs.c │ │ │ │ │ ├── stm32l4xx_ll_dac.c │ │ │ │ │ ├── stm32l4xx_ll_dma.c │ │ │ │ │ ├── stm32l4xx_ll_dma2d.c │ │ │ │ │ ├── stm32l4xx_ll_exti.c │ │ │ │ │ ├── stm32l4xx_ll_fmc.c │ │ │ │ │ ├── stm32l4xx_ll_gpio.c │ │ │ │ │ ├── stm32l4xx_ll_i2c.c │ │ │ │ │ ├── stm32l4xx_ll_lptim.c │ │ │ │ │ ├── stm32l4xx_ll_lpuart.c │ │ │ │ │ ├── stm32l4xx_ll_opamp.c │ │ │ │ │ ├── stm32l4xx_ll_pka.c │ │ │ │ │ ├── stm32l4xx_ll_pwr.c │ │ │ │ │ ├── stm32l4xx_ll_rcc.c │ │ │ │ │ ├── stm32l4xx_ll_rng.c │ │ │ │ │ ├── stm32l4xx_ll_rtc.c │ │ │ │ │ ├── stm32l4xx_ll_sdmmc.c │ │ │ │ │ ├── stm32l4xx_ll_spi.c │ │ │ │ │ ├── stm32l4xx_ll_swpmi.c │ │ │ │ │ ├── stm32l4xx_ll_tim.c │ │ │ │ │ ├── stm32l4xx_ll_usart.c │ │ │ │ │ ├── stm32l4xx_ll_usb.c │ │ │ │ │ └── stm32l4xx_ll_utils.c │ │ │ │ │ └── _htmresc │ │ │ │ │ ├── Add button.svg │ │ │ │ │ ├── Update.svg │ │ │ │ │ ├── favicon.png │ │ │ │ │ ├── mini-st_2020.css │ │ │ │ │ └── st_logo_2020.png │ │ │ ├── License.md │ │ │ ├── README.md │ │ │ ├── Release_Notes.html │ │ │ ├── package.xml │ │ │ └── stmcubemx │ │ │ │ ├── Core │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l4xx_hal_conf.h │ │ │ │ │ └── stm32l4xx_it.h │ │ │ │ └── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l4xx_hal_msp.c │ │ │ │ │ ├── stm32l4xx_it.c │ │ │ │ │ └── system_stm32l4xx.c │ │ │ │ └── STM32L475.ioc │ │ └── threadx │ │ │ └── tx_user.h │ ├── readme.md │ ├── tools │ │ ├── flash.bat │ │ └── rebuild.bat │ ├── vcpkg-configuration.json │ └── vscode.md ├── B-L4S5I-IOT01A │ ├── .vs │ │ └── launch.vs.json │ ├── .vscode │ │ ├── cmake-kits.json │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── CMakeLists.txt │ ├── CMakePresets.json │ ├── STM32L4S5.svd │ ├── VS.md │ ├── app │ │ ├── CMakeLists.txt │ │ ├── azure_config.h │ │ ├── azure_device_x509_cert_config.h │ │ ├── azure_pnp_info.h │ │ ├── board_init.c │ │ ├── board_init.h │ │ ├── console.c │ │ ├── main.c │ │ ├── nx_client.c │ │ ├── nx_client.h │ │ ├── startup │ │ │ ├── gnu │ │ │ │ ├── STM32L4S5VITx_FLASH.ld │ │ │ │ ├── startup_stm32l4s5xx.s │ │ │ │ └── tx_initialize_low_level.S │ │ │ └── iar │ │ │ │ ├── startup_stm32l4s5xx.s │ │ │ │ ├── stm32l4s5xx_flash.icf │ │ │ │ └── tx_initialize_low_level.s │ │ ├── stm_networking.c │ │ └── stm_networking.h │ ├── azure-pipelines.yml │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── netx_driver │ │ │ ├── CMakeLists.txt │ │ │ ├── inventek │ │ │ │ ├── es_wifi.c │ │ │ │ ├── es_wifi.h │ │ │ │ ├── es_wifi_conf.h │ │ │ │ ├── es_wifi_io.c │ │ │ │ ├── es_wifi_io.h │ │ │ │ ├── license.txt │ │ │ │ ├── wifi.c │ │ │ │ └── wifi.h │ │ │ ├── nx_driver_stm32l4.c │ │ │ └── nx_driver_stm32l4.h │ │ ├── netxduo │ │ │ └── nx_user.h │ │ ├── stm32cubel4 │ │ │ ├── CMakeLists.txt │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Drivers │ │ │ │ ├── BSP │ │ │ │ │ ├── B-L4S5I-IOT01 │ │ │ │ │ │ ├── License.md │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── _htmresc │ │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ │ ├── mini-st_2020.css │ │ │ │ │ │ │ └── st_logo_2020.png │ │ │ │ │ │ ├── stm32l4s5i_iot01.c │ │ │ │ │ │ ├── stm32l4s5i_iot01.h │ │ │ │ │ │ ├── stm32l4s5i_iot01_accelero.c │ │ │ │ │ │ ├── stm32l4s5i_iot01_accelero.h │ │ │ │ │ │ ├── stm32l4s5i_iot01_gyro.c │ │ │ │ │ │ ├── stm32l4s5i_iot01_gyro.h │ │ │ │ │ │ ├── stm32l4s5i_iot01_hsensor.c │ │ │ │ │ │ ├── stm32l4s5i_iot01_hsensor.h │ │ │ │ │ │ ├── stm32l4s5i_iot01_magneto.c │ │ │ │ │ │ ├── stm32l4s5i_iot01_magneto.h │ │ │ │ │ │ ├── stm32l4s5i_iot01_nfctag.c │ │ │ │ │ │ ├── stm32l4s5i_iot01_nfctag.h │ │ │ │ │ │ ├── stm32l4s5i_iot01_psensor.c │ │ │ │ │ │ ├── stm32l4s5i_iot01_psensor.h │ │ │ │ │ │ ├── stm32l4s5i_iot01_qspi.c │ │ │ │ │ │ ├── stm32l4s5i_iot01_qspi.h │ │ │ │ │ │ ├── stm32l4s5i_iot01_tsensor.c │ │ │ │ │ │ └── stm32l4s5i_iot01_tsensor.h │ │ │ │ │ └── Components │ │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── accelero.h │ │ │ │ │ │ ├── audio.h │ │ │ │ │ │ ├── camera.h │ │ │ │ │ │ ├── dpredriver.h │ │ │ │ │ │ ├── epd.h │ │ │ │ │ │ ├── gyro.h │ │ │ │ │ │ ├── hsensor.h │ │ │ │ │ │ ├── idd.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── lcd.h │ │ │ │ │ │ ├── magneto.h │ │ │ │ │ │ ├── psensor.h │ │ │ │ │ │ ├── pwrmon.h │ │ │ │ │ │ ├── ts.h │ │ │ │ │ │ ├── tsensor.h │ │ │ │ │ │ └── usbtypecswitch.h │ │ │ │ │ │ ├── cs42l51 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── cs42l51.c │ │ │ │ │ │ └── cs42l51.h │ │ │ │ │ │ ├── cs43l22 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── cs43l22.c │ │ │ │ │ │ └── cs43l22.h │ │ │ │ │ │ ├── cy8c4014lqi │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── cy8c4014lqi.c │ │ │ │ │ │ └── cy8c4014lqi.h │ │ │ │ │ │ ├── ft3x67 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── ft3x67.c │ │ │ │ │ │ └── ft3x67.h │ │ │ │ │ │ ├── ft5336 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── ft5336.c │ │ │ │ │ │ └── ft5336.h │ │ │ │ │ │ ├── ft6x06 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── ft6x06.c │ │ │ │ │ │ └── ft6x06.h │ │ │ │ │ │ ├── hts221 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── hts221.c │ │ │ │ │ │ └── hts221.h │ │ │ │ │ │ ├── hx8347g │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── hx8347g.c │ │ │ │ │ │ └── hx8347g.h │ │ │ │ │ │ ├── hx8347i │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── hx8347i.c │ │ │ │ │ │ └── hx8347i.h │ │ │ │ │ │ ├── iss66wvh8m8 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ └── iss66wvh8m8.h │ │ │ │ │ │ ├── l3gd20 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── l3gd20.c │ │ │ │ │ │ └── l3gd20.h │ │ │ │ │ │ ├── lis3mdl │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── lis3mdl.c │ │ │ │ │ │ └── lis3mdl.h │ │ │ │ │ │ ├── lps22hb │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── lps22hb.c │ │ │ │ │ │ └── lps22hb.h │ │ │ │ │ │ ├── ls016b8uy │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── ls016b8uy.c │ │ │ │ │ │ └── ls016b8uy.h │ │ │ │ │ │ ├── lsm303c │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── lsm303c.c │ │ │ │ │ │ └── lsm303c.h │ │ │ │ │ │ ├── lsm303dlhc │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── lsm303dlhc.c │ │ │ │ │ │ └── lsm303dlhc.h │ │ │ │ │ │ ├── lsm6dsl │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── lsm6dsl.c │ │ │ │ │ │ └── lsm6dsl.h │ │ │ │ │ │ ├── m24sr │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── m24sr.c │ │ │ │ │ │ └── m24sr.h │ │ │ │ │ │ ├── mfxstm32l152 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── mfxstm32l152.c │ │ │ │ │ │ └── mfxstm32l152.h │ │ │ │ │ │ ├── mx25lm51245g │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ └── mx25lm51245g.h │ │ │ │ │ │ ├── mx25r6435f │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ └── mx25r6435f.h │ │ │ │ │ │ ├── n25q128a │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ └── n25q128a.h │ │ │ │ │ │ ├── n25q256a │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ └── n25q256a.h │ │ │ │ │ │ ├── ov9655 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── ov9655.c │ │ │ │ │ │ └── ov9655.h │ │ │ │ │ │ ├── rk043fn48h │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ └── rk043fn48h.h │ │ │ │ │ │ ├── st25dv │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── _htmresc │ │ │ │ │ │ │ ├── mini-st.css │ │ │ │ │ │ │ └── st_logo.png │ │ │ │ │ │ ├── st25dv.c │ │ │ │ │ │ ├── st25dv.h │ │ │ │ │ │ ├── st25dv_reg.c │ │ │ │ │ │ └── st25dv_reg.h │ │ │ │ │ │ ├── st7735 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── st7735.c │ │ │ │ │ │ └── st7735.h │ │ │ │ │ │ ├── st7789h2 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── st7789h2.c │ │ │ │ │ │ └── st7789h2.h │ │ │ │ │ │ ├── stmpe1600 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── stmpe1600.c │ │ │ │ │ │ └── stmpe1600.h │ │ │ │ │ │ ├── stmpe811 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── stmpe811.c │ │ │ │ │ │ └── stmpe811.h │ │ │ │ │ │ └── wm8994 │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ ├── wm8994.c │ │ │ │ │ │ └── wm8994.h │ │ │ │ ├── CMSIS │ │ │ │ │ ├── ARM.CMSIS.pdsc │ │ │ │ │ ├── Core │ │ │ │ │ │ ├── Include │ │ │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ │ │ ├── cmsis_armclang_ltm.h │ │ │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ │ │ │ ├── cmsis_version.h │ │ │ │ │ │ │ ├── core_armv81mml.h │ │ │ │ │ │ │ ├── core_armv8mbl.h │ │ │ │ │ │ │ ├── core_armv8mml.h │ │ │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ │ │ ├── core_cm0plus.h │ │ │ │ │ │ │ ├── core_cm1.h │ │ │ │ │ │ │ ├── core_cm23.h │ │ │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ │ │ ├── core_cm33.h │ │ │ │ │ │ │ ├── core_cm35p.h │ │ │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ │ │ ├── core_cm7.h │ │ │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ │ │ ├── core_sc300.h │ │ │ │ │ │ │ ├── mpu_armv7.h │ │ │ │ │ │ │ ├── mpu_armv8.h │ │ │ │ │ │ │ └── tz_context.h │ │ │ │ │ │ └── Template │ │ │ │ │ │ │ └── ARMv8-M │ │ │ │ │ │ │ ├── main_s.c │ │ │ │ │ │ │ └── tz_context.c │ │ │ │ │ ├── Device │ │ │ │ │ │ └── ST │ │ │ │ │ │ │ └── STM32L4xx │ │ │ │ │ │ │ ├── Include │ │ │ │ │ │ │ ├── stm32l4s5xx.h │ │ │ │ │ │ │ ├── stm32l4xx.h │ │ │ │ │ │ │ └── system_stm32l4xx.h │ │ │ │ │ │ │ ├── License.md │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ │ │ └── _htmresc │ │ │ │ │ │ │ ├── Add button.svg │ │ │ │ │ │ │ ├── Update.svg │ │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ │ ├── mini-st_2020.css │ │ │ │ │ │ │ └── st_logo_2020.png │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ │ ├── cmsis_armclang_ltm.h │ │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ │ │ ├── cmsis_version.h │ │ │ │ │ │ ├── core_armv81mml.h │ │ │ │ │ │ ├── core_armv8mbl.h │ │ │ │ │ │ ├── core_armv8mml.h │ │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ │ ├── core_cm0plus.h │ │ │ │ │ │ ├── core_cm1.h │ │ │ │ │ │ ├── core_cm23.h │ │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ │ ├── core_cm33.h │ │ │ │ │ │ ├── core_cm35p.h │ │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ │ ├── core_cm7.h │ │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ │ ├── core_sc300.h │ │ │ │ │ │ ├── mpu_armv7.h │ │ │ │ │ │ ├── mpu_armv8.h │ │ │ │ │ │ └── tz_context.h │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── README.md │ │ │ │ └── STM32L4xx_HAL_Driver │ │ │ │ │ ├── Inc │ │ │ │ │ ├── Legacy │ │ │ │ │ │ ├── stm32_hal_legacy.h │ │ │ │ │ │ └── stm32l4xx_hal_can_legacy.h │ │ │ │ │ ├── stm32_assert_template.h │ │ │ │ │ ├── stm32l4xx_hal.h │ │ │ │ │ ├── stm32l4xx_hal_adc.h │ │ │ │ │ ├── stm32l4xx_hal_adc_ex.h │ │ │ │ │ ├── stm32l4xx_hal_can.h │ │ │ │ │ ├── stm32l4xx_hal_comp.h │ │ │ │ │ ├── stm32l4xx_hal_conf_template.h │ │ │ │ │ ├── stm32l4xx_hal_cortex.h │ │ │ │ │ ├── stm32l4xx_hal_crc.h │ │ │ │ │ ├── stm32l4xx_hal_crc_ex.h │ │ │ │ │ ├── stm32l4xx_hal_cryp.h │ │ │ │ │ ├── stm32l4xx_hal_cryp_ex.h │ │ │ │ │ ├── stm32l4xx_hal_dac.h │ │ │ │ │ ├── stm32l4xx_hal_dac_ex.h │ │ │ │ │ ├── stm32l4xx_hal_dcmi.h │ │ │ │ │ ├── stm32l4xx_hal_def.h │ │ │ │ │ ├── stm32l4xx_hal_dfsdm.h │ │ │ │ │ ├── stm32l4xx_hal_dfsdm_ex.h │ │ │ │ │ ├── stm32l4xx_hal_dma.h │ │ │ │ │ ├── stm32l4xx_hal_dma2d.h │ │ │ │ │ ├── stm32l4xx_hal_dma_ex.h │ │ │ │ │ ├── stm32l4xx_hal_dsi.h │ │ │ │ │ ├── stm32l4xx_hal_exti.h │ │ │ │ │ ├── stm32l4xx_hal_firewall.h │ │ │ │ │ ├── stm32l4xx_hal_flash.h │ │ │ │ │ ├── stm32l4xx_hal_flash_ex.h │ │ │ │ │ ├── stm32l4xx_hal_flash_ramfunc.h │ │ │ │ │ ├── stm32l4xx_hal_gfxmmu.h │ │ │ │ │ ├── stm32l4xx_hal_gpio.h │ │ │ │ │ ├── stm32l4xx_hal_gpio_ex.h │ │ │ │ │ ├── stm32l4xx_hal_hash.h │ │ │ │ │ ├── stm32l4xx_hal_hash_ex.h │ │ │ │ │ ├── stm32l4xx_hal_hcd.h │ │ │ │ │ ├── stm32l4xx_hal_i2c.h │ │ │ │ │ ├── stm32l4xx_hal_i2c_ex.h │ │ │ │ │ ├── stm32l4xx_hal_irda.h │ │ │ │ │ ├── stm32l4xx_hal_irda_ex.h │ │ │ │ │ ├── stm32l4xx_hal_iwdg.h │ │ │ │ │ ├── stm32l4xx_hal_lcd.h │ │ │ │ │ ├── stm32l4xx_hal_lptim.h │ │ │ │ │ ├── stm32l4xx_hal_ltdc.h │ │ │ │ │ ├── stm32l4xx_hal_ltdc_ex.h │ │ │ │ │ ├── stm32l4xx_hal_mmc.h │ │ │ │ │ ├── stm32l4xx_hal_mmc_ex.h │ │ │ │ │ ├── stm32l4xx_hal_nand.h │ │ │ │ │ ├── stm32l4xx_hal_nor.h │ │ │ │ │ ├── stm32l4xx_hal_opamp.h │ │ │ │ │ ├── stm32l4xx_hal_opamp_ex.h │ │ │ │ │ ├── stm32l4xx_hal_ospi.h │ │ │ │ │ ├── stm32l4xx_hal_pcd.h │ │ │ │ │ ├── stm32l4xx_hal_pcd_ex.h │ │ │ │ │ ├── stm32l4xx_hal_pka.h │ │ │ │ │ ├── stm32l4xx_hal_pssi.h │ │ │ │ │ ├── stm32l4xx_hal_pwr.h │ │ │ │ │ ├── stm32l4xx_hal_pwr_ex.h │ │ │ │ │ ├── stm32l4xx_hal_qspi.h │ │ │ │ │ ├── stm32l4xx_hal_rcc.h │ │ │ │ │ ├── stm32l4xx_hal_rcc_ex.h │ │ │ │ │ ├── stm32l4xx_hal_rng.h │ │ │ │ │ ├── stm32l4xx_hal_rng_ex.h │ │ │ │ │ ├── stm32l4xx_hal_rtc.h │ │ │ │ │ ├── stm32l4xx_hal_rtc_ex.h │ │ │ │ │ ├── stm32l4xx_hal_sai.h │ │ │ │ │ ├── stm32l4xx_hal_sai_ex.h │ │ │ │ │ ├── stm32l4xx_hal_sd.h │ │ │ │ │ ├── stm32l4xx_hal_sd_ex.h │ │ │ │ │ ├── stm32l4xx_hal_smartcard.h │ │ │ │ │ ├── stm32l4xx_hal_smartcard_ex.h │ │ │ │ │ ├── stm32l4xx_hal_smbus.h │ │ │ │ │ ├── stm32l4xx_hal_smbus_ex.h │ │ │ │ │ ├── stm32l4xx_hal_spi.h │ │ │ │ │ ├── stm32l4xx_hal_spi_ex.h │ │ │ │ │ ├── stm32l4xx_hal_sram.h │ │ │ │ │ ├── stm32l4xx_hal_swpmi.h │ │ │ │ │ ├── stm32l4xx_hal_tim.h │ │ │ │ │ ├── stm32l4xx_hal_tim_ex.h │ │ │ │ │ ├── stm32l4xx_hal_tsc.h │ │ │ │ │ ├── stm32l4xx_hal_uart.h │ │ │ │ │ ├── stm32l4xx_hal_uart_ex.h │ │ │ │ │ ├── stm32l4xx_hal_usart.h │ │ │ │ │ ├── stm32l4xx_hal_usart_ex.h │ │ │ │ │ ├── stm32l4xx_hal_wwdg.h │ │ │ │ │ ├── stm32l4xx_ll_adc.h │ │ │ │ │ ├── stm32l4xx_ll_bus.h │ │ │ │ │ ├── stm32l4xx_ll_comp.h │ │ │ │ │ ├── stm32l4xx_ll_cortex.h │ │ │ │ │ ├── stm32l4xx_ll_crc.h │ │ │ │ │ ├── stm32l4xx_ll_crs.h │ │ │ │ │ ├── stm32l4xx_ll_dac.h │ │ │ │ │ ├── stm32l4xx_ll_dma.h │ │ │ │ │ ├── stm32l4xx_ll_dma2d.h │ │ │ │ │ ├── stm32l4xx_ll_dmamux.h │ │ │ │ │ ├── stm32l4xx_ll_exti.h │ │ │ │ │ ├── stm32l4xx_ll_fmc.h │ │ │ │ │ ├── stm32l4xx_ll_gpio.h │ │ │ │ │ ├── stm32l4xx_ll_i2c.h │ │ │ │ │ ├── stm32l4xx_ll_iwdg.h │ │ │ │ │ ├── stm32l4xx_ll_lptim.h │ │ │ │ │ ├── stm32l4xx_ll_lpuart.h │ │ │ │ │ ├── stm32l4xx_ll_opamp.h │ │ │ │ │ ├── stm32l4xx_ll_pka.h │ │ │ │ │ ├── stm32l4xx_ll_pwr.h │ │ │ │ │ ├── stm32l4xx_ll_rcc.h │ │ │ │ │ ├── stm32l4xx_ll_rng.h │ │ │ │ │ ├── stm32l4xx_ll_rtc.h │ │ │ │ │ ├── stm32l4xx_ll_sdmmc.h │ │ │ │ │ ├── stm32l4xx_ll_spi.h │ │ │ │ │ ├── stm32l4xx_ll_swpmi.h │ │ │ │ │ ├── stm32l4xx_ll_system.h │ │ │ │ │ ├── stm32l4xx_ll_tim.h │ │ │ │ │ ├── stm32l4xx_ll_usart.h │ │ │ │ │ ├── stm32l4xx_ll_usb.h │ │ │ │ │ ├── stm32l4xx_ll_utils.h │ │ │ │ │ └── stm32l4xx_ll_wwdg.h │ │ │ │ │ ├── License.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ ├── Src │ │ │ │ │ ├── Legacy │ │ │ │ │ │ └── stm32l4xx_hal_can.c │ │ │ │ │ ├── stm32l4xx_hal.c │ │ │ │ │ ├── stm32l4xx_hal_adc.c │ │ │ │ │ ├── stm32l4xx_hal_adc_ex.c │ │ │ │ │ ├── stm32l4xx_hal_can.c │ │ │ │ │ ├── stm32l4xx_hal_comp.c │ │ │ │ │ ├── stm32l4xx_hal_cortex.c │ │ │ │ │ ├── stm32l4xx_hal_crc.c │ │ │ │ │ ├── stm32l4xx_hal_crc_ex.c │ │ │ │ │ ├── stm32l4xx_hal_cryp.c │ │ │ │ │ ├── stm32l4xx_hal_cryp_ex.c │ │ │ │ │ ├── stm32l4xx_hal_dac.c │ │ │ │ │ ├── stm32l4xx_hal_dac_ex.c │ │ │ │ │ ├── stm32l4xx_hal_dcmi.c │ │ │ │ │ ├── stm32l4xx_hal_dfsdm.c │ │ │ │ │ ├── stm32l4xx_hal_dfsdm_ex.c │ │ │ │ │ ├── stm32l4xx_hal_dma.c │ │ │ │ │ ├── stm32l4xx_hal_dma2d.c │ │ │ │ │ ├── stm32l4xx_hal_dma_ex.c │ │ │ │ │ ├── stm32l4xx_hal_dsi.c │ │ │ │ │ ├── stm32l4xx_hal_exti.c │ │ │ │ │ ├── stm32l4xx_hal_firewall.c │ │ │ │ │ ├── stm32l4xx_hal_flash.c │ │ │ │ │ ├── stm32l4xx_hal_flash_ex.c │ │ │ │ │ ├── stm32l4xx_hal_flash_ramfunc.c │ │ │ │ │ ├── stm32l4xx_hal_gfxmmu.c │ │ │ │ │ ├── stm32l4xx_hal_gpio.c │ │ │ │ │ ├── stm32l4xx_hal_hash.c │ │ │ │ │ ├── stm32l4xx_hal_hash_ex.c │ │ │ │ │ ├── stm32l4xx_hal_hcd.c │ │ │ │ │ ├── stm32l4xx_hal_i2c.c │ │ │ │ │ ├── stm32l4xx_hal_i2c_ex.c │ │ │ │ │ ├── stm32l4xx_hal_irda.c │ │ │ │ │ ├── stm32l4xx_hal_iwdg.c │ │ │ │ │ ├── stm32l4xx_hal_lcd.c │ │ │ │ │ ├── stm32l4xx_hal_lptim.c │ │ │ │ │ ├── stm32l4xx_hal_ltdc.c │ │ │ │ │ ├── stm32l4xx_hal_ltdc_ex.c │ │ │ │ │ ├── stm32l4xx_hal_mmc.c │ │ │ │ │ ├── stm32l4xx_hal_mmc_ex.c │ │ │ │ │ ├── stm32l4xx_hal_msp_template.c │ │ │ │ │ ├── stm32l4xx_hal_nand.c │ │ │ │ │ ├── stm32l4xx_hal_nor.c │ │ │ │ │ ├── stm32l4xx_hal_opamp.c │ │ │ │ │ ├── stm32l4xx_hal_opamp_ex.c │ │ │ │ │ ├── stm32l4xx_hal_ospi.c │ │ │ │ │ ├── stm32l4xx_hal_pcd.c │ │ │ │ │ ├── stm32l4xx_hal_pcd_ex.c │ │ │ │ │ ├── stm32l4xx_hal_pka.c │ │ │ │ │ ├── stm32l4xx_hal_pssi.c │ │ │ │ │ ├── stm32l4xx_hal_pwr.c │ │ │ │ │ ├── stm32l4xx_hal_pwr_ex.c │ │ │ │ │ ├── stm32l4xx_hal_qspi.c │ │ │ │ │ ├── stm32l4xx_hal_rcc.c │ │ │ │ │ ├── stm32l4xx_hal_rcc_ex.c │ │ │ │ │ ├── stm32l4xx_hal_rng.c │ │ │ │ │ ├── stm32l4xx_hal_rng_ex.c │ │ │ │ │ ├── stm32l4xx_hal_rtc.c │ │ │ │ │ ├── stm32l4xx_hal_rtc_ex.c │ │ │ │ │ ├── stm32l4xx_hal_sai.c │ │ │ │ │ ├── stm32l4xx_hal_sai_ex.c │ │ │ │ │ ├── stm32l4xx_hal_sd.c │ │ │ │ │ ├── stm32l4xx_hal_sd_ex.c │ │ │ │ │ ├── stm32l4xx_hal_smartcard.c │ │ │ │ │ ├── stm32l4xx_hal_smartcard_ex.c │ │ │ │ │ ├── stm32l4xx_hal_smbus.c │ │ │ │ │ ├── stm32l4xx_hal_smbus_ex.c │ │ │ │ │ ├── stm32l4xx_hal_spi.c │ │ │ │ │ ├── stm32l4xx_hal_spi_ex.c │ │ │ │ │ ├── stm32l4xx_hal_sram.c │ │ │ │ │ ├── stm32l4xx_hal_swpmi.c │ │ │ │ │ ├── stm32l4xx_hal_tim.c │ │ │ │ │ ├── stm32l4xx_hal_tim_ex.c │ │ │ │ │ ├── stm32l4xx_hal_timebase_tim_template.c │ │ │ │ │ ├── stm32l4xx_hal_tsc.c │ │ │ │ │ ├── stm32l4xx_hal_uart.c │ │ │ │ │ ├── stm32l4xx_hal_uart_ex.c │ │ │ │ │ ├── stm32l4xx_hal_usart.c │ │ │ │ │ ├── stm32l4xx_hal_usart_ex.c │ │ │ │ │ ├── stm32l4xx_hal_wwdg.c │ │ │ │ │ ├── stm32l4xx_ll_adc.c │ │ │ │ │ ├── stm32l4xx_ll_comp.c │ │ │ │ │ ├── stm32l4xx_ll_crc.c │ │ │ │ │ ├── stm32l4xx_ll_crs.c │ │ │ │ │ ├── stm32l4xx_ll_dac.c │ │ │ │ │ ├── stm32l4xx_ll_dma.c │ │ │ │ │ ├── stm32l4xx_ll_dma2d.c │ │ │ │ │ ├── stm32l4xx_ll_exti.c │ │ │ │ │ ├── stm32l4xx_ll_fmc.c │ │ │ │ │ ├── stm32l4xx_ll_gpio.c │ │ │ │ │ ├── stm32l4xx_ll_i2c.c │ │ │ │ │ ├── stm32l4xx_ll_lptim.c │ │ │ │ │ ├── stm32l4xx_ll_lpuart.c │ │ │ │ │ ├── stm32l4xx_ll_opamp.c │ │ │ │ │ ├── stm32l4xx_ll_pka.c │ │ │ │ │ ├── stm32l4xx_ll_pwr.c │ │ │ │ │ ├── stm32l4xx_ll_rcc.c │ │ │ │ │ ├── stm32l4xx_ll_rng.c │ │ │ │ │ ├── stm32l4xx_ll_rtc.c │ │ │ │ │ ├── stm32l4xx_ll_sdmmc.c │ │ │ │ │ ├── stm32l4xx_ll_spi.c │ │ │ │ │ ├── stm32l4xx_ll_swpmi.c │ │ │ │ │ ├── stm32l4xx_ll_tim.c │ │ │ │ │ ├── stm32l4xx_ll_usart.c │ │ │ │ │ ├── stm32l4xx_ll_usb.c │ │ │ │ │ └── stm32l4xx_ll_utils.c │ │ │ │ │ └── _htmresc │ │ │ │ │ ├── Add button.svg │ │ │ │ │ ├── Update.svg │ │ │ │ │ ├── favicon.png │ │ │ │ │ ├── mini-st_2020.css │ │ │ │ │ └── st_logo_2020.png │ │ │ ├── License.md │ │ │ ├── README.md │ │ │ ├── Release_Notes.html │ │ │ ├── package.xml │ │ │ └── stmcubemx │ │ │ │ ├── .mxproject │ │ │ │ ├── Core │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l4xx_hal_conf.h │ │ │ │ │ └── stm32l4xx_it.h │ │ │ │ └── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l4xx_hal_msp.c │ │ │ │ │ ├── stm32l4xx_it.c │ │ │ │ │ └── system_stm32l4xx.c │ │ │ │ ├── EWARM │ │ │ │ ├── Project.eww │ │ │ │ ├── STM32L4S5.ewd │ │ │ │ ├── STM32L4S5.ewp │ │ │ │ ├── startup_stm32l4s5xx.s │ │ │ │ ├── stm32l4s5xx_flash.icf │ │ │ │ └── stm32l4s5xx_sram.icf │ │ │ │ ├── Makefile │ │ │ │ ├── STM32L4S5.ioc │ │ │ │ ├── STM32L4S5VITx_FLASH.ld │ │ │ │ └── startup_stm32l4s5xx.s │ │ └── threadx │ │ │ └── tx_user.h │ ├── readme.md │ ├── tools │ │ ├── flash.bat │ │ └── rebuild.bat │ ├── vcpkg-configuration.json │ └── vscode.md ├── B-U585I-IOT02A │ ├── .vs │ │ └── launch.vs.json │ ├── .vscode │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── CMakeLists.txt │ ├── CMakePresets.json │ ├── README.md │ ├── STM32U5xx.svd │ ├── app │ │ ├── CMakeLists.txt │ │ ├── azure_config.h │ │ ├── azure_device_x509_cert_config.h │ │ ├── azure_pnp_info.h │ │ ├── board_init.c │ │ ├── board_init.h │ │ ├── console.c │ │ ├── main.c │ │ ├── nx_client.c │ │ ├── nx_client.h │ │ ├── startup │ │ │ ├── STM32U585AIIX_FLASH.ld │ │ │ ├── startup_stm32u585aiix.s │ │ │ └── tx_initialize_low_level.S │ │ ├── stm_networking.c │ │ └── stm_networking.h │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── netxduo │ │ │ └── nx_user.h │ │ ├── stm32cubeu5 │ │ │ ├── CMakeLists.txt │ │ │ ├── Drivers │ │ │ │ ├── BSP │ │ │ │ │ ├── B-U585I-IOT02A │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── b_u585i_iot02a.c │ │ │ │ │ │ ├── b_u585i_iot02a.h │ │ │ │ │ │ ├── b_u585i_iot02a_bus.c │ │ │ │ │ │ ├── b_u585i_iot02a_bus.h │ │ │ │ │ │ ├── b_u585i_iot02a_env_sensors.c │ │ │ │ │ │ ├── b_u585i_iot02a_env_sensors.h │ │ │ │ │ │ ├── b_u585i_iot02a_errno.h │ │ │ │ │ │ ├── b_u585i_iot02a_light_sensor.c │ │ │ │ │ │ └── b_u585i_iot02a_light_sensor.h │ │ │ │ │ └── Components │ │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── audio.h │ │ │ │ │ │ ├── camera.h │ │ │ │ │ │ ├── dpredriver.h │ │ │ │ │ │ ├── env_sensor.h │ │ │ │ │ │ ├── epd.h │ │ │ │ │ │ ├── idd.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── lcd.h │ │ │ │ │ │ ├── light_sensor.h │ │ │ │ │ │ ├── motion_sensor.h │ │ │ │ │ │ ├── pwrmon.h │ │ │ │ │ │ ├── ranging_sensor.h │ │ │ │ │ │ ├── ts.h │ │ │ │ │ │ └── usbtypecswitch.h │ │ │ │ │ │ ├── aps6408 │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── aps6408.c │ │ │ │ │ │ ├── aps6408.h │ │ │ │ │ │ └── aps6408_conf_template.h │ │ │ │ │ │ ├── cs42l51 │ │ │ │ │ │ ├── cs42l51.c │ │ │ │ │ │ ├── cs42l51.h │ │ │ │ │ │ ├── cs42l51_reg.c │ │ │ │ │ │ └── cs42l51_reg.h │ │ │ │ │ │ ├── hts221 │ │ │ │ │ │ ├── hts221.c │ │ │ │ │ │ ├── hts221.h │ │ │ │ │ │ ├── hts221_reg.c │ │ │ │ │ │ └── hts221_reg.h │ │ │ │ │ │ ├── hx8347i │ │ │ │ │ │ ├── hx8347i.c │ │ │ │ │ │ ├── hx8347i.h │ │ │ │ │ │ ├── hx8347i_reg.c │ │ │ │ │ │ └── hx8347i_reg.h │ │ │ │ │ │ ├── iis2mdc │ │ │ │ │ │ ├── iis2mdc.c │ │ │ │ │ │ ├── iis2mdc.h │ │ │ │ │ │ ├── iis2mdc_reg.c │ │ │ │ │ │ └── iis2mdc_reg.h │ │ │ │ │ │ ├── lps22hh │ │ │ │ │ │ ├── lps22hh.c │ │ │ │ │ │ ├── lps22hh.h │ │ │ │ │ │ ├── lps22hh_reg.c │ │ │ │ │ │ └── lps22hh_reg.h │ │ │ │ │ │ ├── lsm6dso │ │ │ │ │ │ ├── lsm6dso.c │ │ │ │ │ │ ├── lsm6dso.h │ │ │ │ │ │ ├── lsm6dso_reg.c │ │ │ │ │ │ └── lsm6dso_reg.h │ │ │ │ │ │ ├── m24lr64 │ │ │ │ │ │ ├── m24lr64.c │ │ │ │ │ │ └── m24lr64.h │ │ │ │ │ │ ├── mfxstm32l152 │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── mfxstm32l152.c │ │ │ │ │ │ ├── mfxstm32l152.h │ │ │ │ │ │ ├── mfxstm32l152_reg.c │ │ │ │ │ │ └── mfxstm32l152_reg.h │ │ │ │ │ │ ├── mx25lm51245g │ │ │ │ │ │ ├── mx25lm51245g.c │ │ │ │ │ │ ├── mx25lm51245g.h │ │ │ │ │ │ └── mx25lm51245g_conf_template.h │ │ │ │ │ │ ├── mx_wifi │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── checksumutils.c │ │ │ │ │ │ │ ├── checksumutils.h │ │ │ │ │ │ │ ├── mx_rtos_abs.c │ │ │ │ │ │ │ ├── mx_rtos_abs.h │ │ │ │ │ │ │ ├── mx_wifi_hci.c │ │ │ │ │ │ │ ├── mx_wifi_hci.h │ │ │ │ │ │ │ ├── mx_wifi_ipc.c │ │ │ │ │ │ │ ├── mx_wifi_ipc.h │ │ │ │ │ │ │ ├── mx_wifi_slip.c │ │ │ │ │ │ │ └── mx_wifi_slip.h │ │ │ │ │ │ ├── io_pattern │ │ │ │ │ │ │ ├── mx_wifi_spi.c │ │ │ │ │ │ │ └── mx_wifi_uart.c │ │ │ │ │ │ ├── mx_wifi.c │ │ │ │ │ │ ├── mx_wifi.h │ │ │ │ │ │ ├── mx_wifi.md │ │ │ │ │ │ └── mx_wifi_conf_template.h │ │ │ │ │ │ ├── ov5640 │ │ │ │ │ │ ├── ov5640.c │ │ │ │ │ │ ├── ov5640.h │ │ │ │ │ │ ├── ov5640_reg.c │ │ │ │ │ │ └── ov5640_reg.h │ │ │ │ │ │ ├── stm32wb_at │ │ │ │ │ │ ├── License.md │ │ │ │ │ │ ├── stm32wb_at.c │ │ │ │ │ │ ├── stm32wb_at.h │ │ │ │ │ │ ├── stm32wb_at_ble.c │ │ │ │ │ │ ├── stm32wb_at_ble.h │ │ │ │ │ │ ├── stm32wb_at_client.c │ │ │ │ │ │ ├── stm32wb_at_client.h │ │ │ │ │ │ ├── stm32wb_at_ll.c │ │ │ │ │ │ └── stm32wb_at_ll.h │ │ │ │ │ │ ├── sx8651 │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── sx8651.c │ │ │ │ │ │ ├── sx8651.h │ │ │ │ │ │ ├── sx8651_conf_template.h │ │ │ │ │ │ ├── sx8651_reg.c │ │ │ │ │ │ └── sx8651_reg.h │ │ │ │ │ │ ├── tcpp0203 │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── tcpp0203.c │ │ │ │ │ │ ├── tcpp0203.h │ │ │ │ │ │ ├── tcpp0203_reg.c │ │ │ │ │ │ └── tcpp0203_reg.h │ │ │ │ │ │ └── veml6030 │ │ │ │ │ │ ├── veml6030.c │ │ │ │ │ │ ├── veml6030.h │ │ │ │ │ │ ├── veml6030_reg.c │ │ │ │ │ │ └── veml6030_reg.h │ │ │ │ ├── CMSIS │ │ │ │ │ ├── ARM.CMSIS.pdsc │ │ │ │ │ ├── Core │ │ │ │ │ │ ├── Include │ │ │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ │ │ ├── cmsis_armclang_ltm.h │ │ │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ │ │ │ ├── cmsis_version.h │ │ │ │ │ │ │ ├── core_armv81mml.h │ │ │ │ │ │ │ ├── core_armv8mbl.h │ │ │ │ │ │ │ ├── core_armv8mml.h │ │ │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ │ │ ├── core_cm0plus.h │ │ │ │ │ │ │ ├── core_cm1.h │ │ │ │ │ │ │ ├── core_cm23.h │ │ │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ │ │ ├── core_cm33.h │ │ │ │ │ │ │ ├── core_cm35p.h │ │ │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ │ │ ├── core_cm7.h │ │ │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ │ │ ├── core_sc300.h │ │ │ │ │ │ │ ├── mpu_armv7.h │ │ │ │ │ │ │ ├── mpu_armv8.h │ │ │ │ │ │ │ └── tz_context.h │ │ │ │ │ │ └── Template │ │ │ │ │ │ │ └── ARMv8-M │ │ │ │ │ │ │ ├── main_s.c │ │ │ │ │ │ │ └── tz_context.c │ │ │ │ │ ├── Device │ │ │ │ │ │ └── ST │ │ │ │ │ │ │ └── STM32U5xx │ │ │ │ │ │ │ ├── Include │ │ │ │ │ │ │ ├── Templates │ │ │ │ │ │ │ │ ├── partition_stm32u575xx.h │ │ │ │ │ │ │ │ └── partition_stm32u585xx.h │ │ │ │ │ │ │ ├── partition_stm32u5xx.h │ │ │ │ │ │ │ ├── stm32u575xx.h │ │ │ │ │ │ │ ├── stm32u585xx.h │ │ │ │ │ │ │ ├── stm32u5xx.h │ │ │ │ │ │ │ └── system_stm32u5xx.h │ │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── Source │ │ │ │ │ │ │ └── Templates │ │ │ │ │ │ │ ├── arm │ │ │ │ │ │ │ ├── startup_stm32u575xx.s │ │ │ │ │ │ │ └── startup_stm32u585xx.s │ │ │ │ │ │ │ ├── gcc │ │ │ │ │ │ │ ├── linker │ │ │ │ │ │ │ │ ├── STM32U575xx_FLASH.ld │ │ │ │ │ │ │ │ ├── STM32U575xx_FLASH_ns.ld │ │ │ │ │ │ │ │ ├── STM32U575xx_FLASH_s.ld │ │ │ │ │ │ │ │ ├── STM32U575xx_RAM.ld │ │ │ │ │ │ │ │ ├── STM32U575xx_RAM_ns.ld │ │ │ │ │ │ │ │ ├── STM32U575xx_RAM_s.ld │ │ │ │ │ │ │ │ ├── STM32U585xx_FLASH.ld │ │ │ │ │ │ │ │ ├── STM32U585xx_FLASH_ns.ld │ │ │ │ │ │ │ │ ├── STM32U585xx_FLASH_s.ld │ │ │ │ │ │ │ │ ├── STM32U585xx_RAM.ld │ │ │ │ │ │ │ │ ├── STM32U585xx_RAM_ns.ld │ │ │ │ │ │ │ │ └── STM32U585xx_RAM_s.ld │ │ │ │ │ │ │ ├── startup_stm32u575xx.s │ │ │ │ │ │ │ └── startup_stm32u585xx.s │ │ │ │ │ │ │ ├── iar │ │ │ │ │ │ │ ├── linker │ │ │ │ │ │ │ │ ├── stm32u575xx_flash.icf │ │ │ │ │ │ │ │ ├── stm32u575xx_flash_ns.icf │ │ │ │ │ │ │ │ ├── stm32u575xx_flash_s.icf │ │ │ │ │ │ │ │ ├── stm32u575xx_sram.icf │ │ │ │ │ │ │ │ ├── stm32u575xx_sram_ns.icf │ │ │ │ │ │ │ │ ├── stm32u575xx_sram_s.icf │ │ │ │ │ │ │ │ ├── stm32u585xx_flash.icf │ │ │ │ │ │ │ │ ├── stm32u585xx_flash_ns.icf │ │ │ │ │ │ │ │ ├── stm32u585xx_flash_s.icf │ │ │ │ │ │ │ │ ├── stm32u585xx_sram.icf │ │ │ │ │ │ │ │ ├── stm32u585xx_sram_ns.icf │ │ │ │ │ │ │ │ └── stm32u585xx_sram_s.icf │ │ │ │ │ │ │ ├── startup_stm32u575xx.s │ │ │ │ │ │ │ └── startup_stm32u585xx.s │ │ │ │ │ │ │ ├── system_stm32u5xx.c │ │ │ │ │ │ │ ├── system_stm32u5xx_ns.c │ │ │ │ │ │ │ └── system_stm32u5xx_s.c │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ │ ├── cmsis_armclang_ltm.h │ │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ │ │ ├── cmsis_version.h │ │ │ │ │ │ ├── core_armv81mml.h │ │ │ │ │ │ ├── core_armv8mbl.h │ │ │ │ │ │ ├── core_armv8mml.h │ │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ │ ├── core_cm0plus.h │ │ │ │ │ │ ├── core_cm1.h │ │ │ │ │ │ ├── core_cm23.h │ │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ │ ├── core_cm33.h │ │ │ │ │ │ ├── core_cm35p.h │ │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ │ ├── core_cm7.h │ │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ │ ├── core_sc300.h │ │ │ │ │ │ ├── mpu_armv7.h │ │ │ │ │ │ ├── mpu_armv8.h │ │ │ │ │ │ └── tz_context.h │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── README.md │ │ │ │ └── STM32U5xx_HAL_Driver │ │ │ │ │ ├── Inc │ │ │ │ │ ├── Legacy │ │ │ │ │ │ └── stm32_hal_legacy.h │ │ │ │ │ ├── stm32_assert_template.h │ │ │ │ │ ├── stm32u5xx_hal.h │ │ │ │ │ ├── stm32u5xx_hal_adc.h │ │ │ │ │ ├── stm32u5xx_hal_adc_ex.h │ │ │ │ │ ├── stm32u5xx_hal_comp.h │ │ │ │ │ ├── stm32u5xx_hal_conf_template.h │ │ │ │ │ ├── stm32u5xx_hal_cordic.h │ │ │ │ │ ├── stm32u5xx_hal_cortex.h │ │ │ │ │ ├── stm32u5xx_hal_crc.h │ │ │ │ │ ├── stm32u5xx_hal_crc_ex.h │ │ │ │ │ ├── stm32u5xx_hal_cryp.h │ │ │ │ │ ├── stm32u5xx_hal_cryp_ex.h │ │ │ │ │ ├── stm32u5xx_hal_dac.h │ │ │ │ │ ├── stm32u5xx_hal_dac_ex.h │ │ │ │ │ ├── stm32u5xx_hal_dcache.h │ │ │ │ │ ├── stm32u5xx_hal_dcmi.h │ │ │ │ │ ├── stm32u5xx_hal_def.h │ │ │ │ │ ├── stm32u5xx_hal_dma.h │ │ │ │ │ ├── stm32u5xx_hal_dma2d.h │ │ │ │ │ ├── stm32u5xx_hal_dma_ex.h │ │ │ │ │ ├── stm32u5xx_hal_exti.h │ │ │ │ │ ├── stm32u5xx_hal_fdcan.h │ │ │ │ │ ├── stm32u5xx_hal_flash.h │ │ │ │ │ ├── stm32u5xx_hal_flash_ex.h │ │ │ │ │ ├── stm32u5xx_hal_fmac.h │ │ │ │ │ ├── stm32u5xx_hal_gpio.h │ │ │ │ │ ├── stm32u5xx_hal_gpio_ex.h │ │ │ │ │ ├── stm32u5xx_hal_gtzc.h │ │ │ │ │ ├── stm32u5xx_hal_hash.h │ │ │ │ │ ├── stm32u5xx_hal_hash_ex.h │ │ │ │ │ ├── stm32u5xx_hal_hcd.h │ │ │ │ │ ├── stm32u5xx_hal_i2c.h │ │ │ │ │ ├── stm32u5xx_hal_i2c_ex.h │ │ │ │ │ ├── stm32u5xx_hal_icache.h │ │ │ │ │ ├── stm32u5xx_hal_irda.h │ │ │ │ │ ├── stm32u5xx_hal_irda_ex.h │ │ │ │ │ ├── stm32u5xx_hal_iwdg.h │ │ │ │ │ ├── stm32u5xx_hal_lptim.h │ │ │ │ │ ├── stm32u5xx_hal_mdf.h │ │ │ │ │ ├── stm32u5xx_hal_mmc.h │ │ │ │ │ ├── stm32u5xx_hal_mmc_ex.h │ │ │ │ │ ├── stm32u5xx_hal_nand.h │ │ │ │ │ ├── stm32u5xx_hal_nor.h │ │ │ │ │ ├── stm32u5xx_hal_opamp.h │ │ │ │ │ ├── stm32u5xx_hal_opamp_ex.h │ │ │ │ │ ├── stm32u5xx_hal_ospi.h │ │ │ │ │ ├── stm32u5xx_hal_otfdec.h │ │ │ │ │ ├── stm32u5xx_hal_pcd.h │ │ │ │ │ ├── stm32u5xx_hal_pcd_ex.h │ │ │ │ │ ├── stm32u5xx_hal_pka.h │ │ │ │ │ ├── stm32u5xx_hal_pssi.h │ │ │ │ │ ├── stm32u5xx_hal_pwr.h │ │ │ │ │ ├── stm32u5xx_hal_pwr_ex.h │ │ │ │ │ ├── stm32u5xx_hal_ramcfg.h │ │ │ │ │ ├── stm32u5xx_hal_rcc.h │ │ │ │ │ ├── stm32u5xx_hal_rcc_ex.h │ │ │ │ │ ├── stm32u5xx_hal_rng.h │ │ │ │ │ ├── stm32u5xx_hal_rng_ex.h │ │ │ │ │ ├── stm32u5xx_hal_rtc.h │ │ │ │ │ ├── stm32u5xx_hal_rtc_ex.h │ │ │ │ │ ├── stm32u5xx_hal_sai.h │ │ │ │ │ ├── stm32u5xx_hal_sai_ex.h │ │ │ │ │ ├── stm32u5xx_hal_sd.h │ │ │ │ │ ├── stm32u5xx_hal_sd_ex.h │ │ │ │ │ ├── stm32u5xx_hal_smartcard.h │ │ │ │ │ ├── stm32u5xx_hal_smartcard_ex.h │ │ │ │ │ ├── stm32u5xx_hal_smbus.h │ │ │ │ │ ├── stm32u5xx_hal_smbus_ex.h │ │ │ │ │ ├── stm32u5xx_hal_spi.h │ │ │ │ │ ├── stm32u5xx_hal_spi_ex.h │ │ │ │ │ ├── stm32u5xx_hal_sram.h │ │ │ │ │ ├── stm32u5xx_hal_tim.h │ │ │ │ │ ├── stm32u5xx_hal_tim_ex.h │ │ │ │ │ ├── stm32u5xx_hal_tsc.h │ │ │ │ │ ├── stm32u5xx_hal_uart.h │ │ │ │ │ ├── stm32u5xx_hal_uart_ex.h │ │ │ │ │ ├── stm32u5xx_hal_usart.h │ │ │ │ │ ├── stm32u5xx_hal_usart_ex.h │ │ │ │ │ ├── stm32u5xx_hal_wwdg.h │ │ │ │ │ ├── stm32u5xx_ll_adc.h │ │ │ │ │ ├── stm32u5xx_ll_bus.h │ │ │ │ │ ├── stm32u5xx_ll_comp.h │ │ │ │ │ ├── stm32u5xx_ll_cordic.h │ │ │ │ │ ├── stm32u5xx_ll_cortex.h │ │ │ │ │ ├── stm32u5xx_ll_crc.h │ │ │ │ │ ├── stm32u5xx_ll_crs.h │ │ │ │ │ ├── stm32u5xx_ll_dac.h │ │ │ │ │ ├── stm32u5xx_ll_dcache.h │ │ │ │ │ ├── stm32u5xx_ll_dlyb.h │ │ │ │ │ ├── stm32u5xx_ll_dma.h │ │ │ │ │ ├── stm32u5xx_ll_dma2d.h │ │ │ │ │ ├── stm32u5xx_ll_exti.h │ │ │ │ │ ├── stm32u5xx_ll_fmac.h │ │ │ │ │ ├── stm32u5xx_ll_fmc.h │ │ │ │ │ ├── stm32u5xx_ll_gpio.h │ │ │ │ │ ├── stm32u5xx_ll_i2c.h │ │ │ │ │ ├── stm32u5xx_ll_icache.h │ │ │ │ │ ├── stm32u5xx_ll_iwdg.h │ │ │ │ │ ├── stm32u5xx_ll_lpgpio.h │ │ │ │ │ ├── stm32u5xx_ll_lptim.h │ │ │ │ │ ├── stm32u5xx_ll_lpuart.h │ │ │ │ │ ├── stm32u5xx_ll_opamp.h │ │ │ │ │ ├── stm32u5xx_ll_pka.h │ │ │ │ │ ├── stm32u5xx_ll_pwr.h │ │ │ │ │ ├── stm32u5xx_ll_rcc.h │ │ │ │ │ ├── stm32u5xx_ll_rng.h │ │ │ │ │ ├── stm32u5xx_ll_rtc.h │ │ │ │ │ ├── stm32u5xx_ll_sdmmc.h │ │ │ │ │ ├── stm32u5xx_ll_spi.h │ │ │ │ │ ├── stm32u5xx_ll_system.h │ │ │ │ │ ├── stm32u5xx_ll_tim.h │ │ │ │ │ ├── stm32u5xx_ll_ucpd.h │ │ │ │ │ ├── stm32u5xx_ll_usart.h │ │ │ │ │ ├── stm32u5xx_ll_usb.h │ │ │ │ │ ├── stm32u5xx_ll_utils.h │ │ │ │ │ └── stm32u5xx_ll_wwdg.h │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── Src │ │ │ │ │ ├── stm32u5xx_hal.c │ │ │ │ │ ├── stm32u5xx_hal_adc.c │ │ │ │ │ ├── stm32u5xx_hal_adc_ex.c │ │ │ │ │ ├── stm32u5xx_hal_comp.c │ │ │ │ │ ├── stm32u5xx_hal_cordic.c │ │ │ │ │ ├── stm32u5xx_hal_cortex.c │ │ │ │ │ ├── stm32u5xx_hal_crc.c │ │ │ │ │ ├── stm32u5xx_hal_crc_ex.c │ │ │ │ │ ├── stm32u5xx_hal_cryp.c │ │ │ │ │ ├── stm32u5xx_hal_cryp_ex.c │ │ │ │ │ ├── stm32u5xx_hal_dac.c │ │ │ │ │ ├── stm32u5xx_hal_dac_ex.c │ │ │ │ │ ├── stm32u5xx_hal_dcache.c │ │ │ │ │ ├── stm32u5xx_hal_dcmi.c │ │ │ │ │ ├── stm32u5xx_hal_dma.c │ │ │ │ │ ├── stm32u5xx_hal_dma2d.c │ │ │ │ │ ├── stm32u5xx_hal_dma_ex.c │ │ │ │ │ ├── stm32u5xx_hal_exti.c │ │ │ │ │ ├── stm32u5xx_hal_fdcan.c │ │ │ │ │ ├── stm32u5xx_hal_flash.c │ │ │ │ │ ├── stm32u5xx_hal_flash_ex.c │ │ │ │ │ ├── stm32u5xx_hal_fmac.c │ │ │ │ │ ├── stm32u5xx_hal_gpio.c │ │ │ │ │ ├── stm32u5xx_hal_gtzc.c │ │ │ │ │ ├── stm32u5xx_hal_hash.c │ │ │ │ │ ├── stm32u5xx_hal_hash_ex.c │ │ │ │ │ ├── stm32u5xx_hal_hcd.c │ │ │ │ │ ├── stm32u5xx_hal_i2c.c │ │ │ │ │ ├── stm32u5xx_hal_i2c_ex.c │ │ │ │ │ ├── stm32u5xx_hal_icache.c │ │ │ │ │ ├── stm32u5xx_hal_irda.c │ │ │ │ │ ├── stm32u5xx_hal_iwdg.c │ │ │ │ │ ├── stm32u5xx_hal_lptim.c │ │ │ │ │ ├── stm32u5xx_hal_mdf.c │ │ │ │ │ ├── stm32u5xx_hal_mmc.c │ │ │ │ │ ├── stm32u5xx_hal_mmc_ex.c │ │ │ │ │ ├── stm32u5xx_hal_msp_template.c │ │ │ │ │ ├── stm32u5xx_hal_nand.c │ │ │ │ │ ├── stm32u5xx_hal_nor.c │ │ │ │ │ ├── stm32u5xx_hal_opamp.c │ │ │ │ │ ├── stm32u5xx_hal_opamp_ex.c │ │ │ │ │ ├── stm32u5xx_hal_ospi.c │ │ │ │ │ ├── stm32u5xx_hal_otfdec.c │ │ │ │ │ ├── stm32u5xx_hal_pcd.c │ │ │ │ │ ├── stm32u5xx_hal_pcd_ex.c │ │ │ │ │ ├── stm32u5xx_hal_pka.c │ │ │ │ │ ├── stm32u5xx_hal_pssi.c │ │ │ │ │ ├── stm32u5xx_hal_pwr.c │ │ │ │ │ ├── stm32u5xx_hal_pwr_ex.c │ │ │ │ │ ├── stm32u5xx_hal_ramcfg.c │ │ │ │ │ ├── stm32u5xx_hal_rcc.c │ │ │ │ │ ├── stm32u5xx_hal_rcc_ex.c │ │ │ │ │ ├── stm32u5xx_hal_rng.c │ │ │ │ │ ├── stm32u5xx_hal_rng_ex.c │ │ │ │ │ ├── stm32u5xx_hal_rtc.c │ │ │ │ │ ├── stm32u5xx_hal_rtc_ex.c │ │ │ │ │ ├── stm32u5xx_hal_sai.c │ │ │ │ │ ├── stm32u5xx_hal_sai_ex.c │ │ │ │ │ ├── stm32u5xx_hal_sd.c │ │ │ │ │ ├── stm32u5xx_hal_sd_ex.c │ │ │ │ │ ├── stm32u5xx_hal_smartcard.c │ │ │ │ │ ├── stm32u5xx_hal_smartcard_ex.c │ │ │ │ │ ├── stm32u5xx_hal_smbus.c │ │ │ │ │ ├── stm32u5xx_hal_smbus_ex.c │ │ │ │ │ ├── stm32u5xx_hal_spi.c │ │ │ │ │ ├── stm32u5xx_hal_spi_ex.c │ │ │ │ │ ├── stm32u5xx_hal_sram.c │ │ │ │ │ ├── stm32u5xx_hal_tim.c │ │ │ │ │ ├── stm32u5xx_hal_tim_ex.c │ │ │ │ │ ├── stm32u5xx_hal_timebase_rtc_alarm_template.c │ │ │ │ │ ├── stm32u5xx_hal_timebase_rtc_wakeup_template.c │ │ │ │ │ ├── stm32u5xx_hal_timebase_tim_template.c │ │ │ │ │ ├── stm32u5xx_hal_tsc.c │ │ │ │ │ ├── stm32u5xx_hal_uart.c │ │ │ │ │ ├── stm32u5xx_hal_uart_ex.c │ │ │ │ │ ├── stm32u5xx_hal_usart.c │ │ │ │ │ ├── stm32u5xx_hal_usart_ex.c │ │ │ │ │ ├── stm32u5xx_hal_wwdg.c │ │ │ │ │ ├── stm32u5xx_ll_adc.c │ │ │ │ │ ├── stm32u5xx_ll_comp.c │ │ │ │ │ ├── stm32u5xx_ll_cordic.c │ │ │ │ │ ├── stm32u5xx_ll_crc.c │ │ │ │ │ ├── stm32u5xx_ll_crs.c │ │ │ │ │ ├── stm32u5xx_ll_dac.c │ │ │ │ │ ├── stm32u5xx_ll_dlyb.c │ │ │ │ │ ├── stm32u5xx_ll_dma.c │ │ │ │ │ ├── stm32u5xx_ll_dma2d.c │ │ │ │ │ ├── stm32u5xx_ll_exti.c │ │ │ │ │ ├── stm32u5xx_ll_fmac.c │ │ │ │ │ ├── stm32u5xx_ll_fmc.c │ │ │ │ │ ├── stm32u5xx_ll_gpio.c │ │ │ │ │ ├── stm32u5xx_ll_i2c.c │ │ │ │ │ ├── stm32u5xx_ll_icache.c │ │ │ │ │ ├── stm32u5xx_ll_lpgpio.c │ │ │ │ │ ├── stm32u5xx_ll_lptim.c │ │ │ │ │ ├── stm32u5xx_ll_lpuart.c │ │ │ │ │ ├── stm32u5xx_ll_opamp.c │ │ │ │ │ ├── stm32u5xx_ll_pka.c │ │ │ │ │ ├── stm32u5xx_ll_pwr.c │ │ │ │ │ ├── stm32u5xx_ll_rcc.c │ │ │ │ │ ├── stm32u5xx_ll_rng.c │ │ │ │ │ ├── stm32u5xx_ll_rtc.c │ │ │ │ │ ├── stm32u5xx_ll_sdmmc.c │ │ │ │ │ ├── stm32u5xx_ll_spi.c │ │ │ │ │ ├── stm32u5xx_ll_tim.c │ │ │ │ │ ├── stm32u5xx_ll_ucpd.c │ │ │ │ │ ├── stm32u5xx_ll_usart.c │ │ │ │ │ ├── stm32u5xx_ll_usb.c │ │ │ │ │ └── stm32u5xx_ll_utils.c │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── netx_driver │ │ │ │ └── mxchip │ │ │ │ │ ├── mx_wifi_azure_rtos.c │ │ │ │ │ ├── mx_wifi_azure_rtos_conf.h │ │ │ │ │ ├── nx_driver_emw3080.c │ │ │ │ │ ├── nx_driver_emw3080.h │ │ │ │ │ ├── nx_driver_framework.c │ │ │ │ │ └── nx_driver_framework.h │ │ │ ├── package.xml │ │ │ └── stmcubemx │ │ │ │ ├── b_u585i_iot02a_conf.h │ │ │ │ ├── main.h │ │ │ │ ├── mx_wifi_conf.h │ │ │ │ ├── stm32u5xx_hal_conf.h │ │ │ │ ├── stm32u5xx_hal_msp.c │ │ │ │ ├── stm32u5xx_hal_timebase_tim.c │ │ │ │ ├── stm32u5xx_it.c │ │ │ │ ├── stm32u5xx_it.h │ │ │ │ └── system_stm32u5xx.c │ │ └── threadx │ │ │ └── tx_user.h │ ├── tools │ │ ├── flash.bat │ │ └── rebuild.bat │ └── vcpkg-configuration.json └── STM32L4_L4+ │ └── readme.md ├── SiliconLabs └── EFR32MG12 │ ├── .vscode │ ├── EFR32MG12P332F1024GM48.svd │ ├── cmake-kits.json │ ├── flash.jlink │ ├── launch.json │ └── tasks.json │ ├── CMakeLists.txt │ ├── CMakePresets.json │ ├── EFM32MG12.code-workspace │ ├── app │ ├── CMakeLists.txt │ ├── azure_config.h │ ├── azure_device_x509_cert_config.h │ ├── azure_pnp_info.h │ ├── console.c │ ├── main.c │ ├── nx_client.c │ ├── nx_client.h │ ├── pds │ │ ├── brd4001a_pds.h │ │ ├── brd8022a_pds.h │ │ └── brd8023a_pds.h │ ├── sl_wfx_host │ │ ├── sl_wfx_host.c │ │ ├── sl_wfx_host_bus.c │ │ ├── sl_wfx_host_cfg.h │ │ ├── sl_wfx_host_gpio.c │ │ ├── sl_wfx_host_gpio.h │ │ ├── sl_wfx_host_spi.c │ │ ├── sl_wfx_task.c │ │ └── sl_wfx_task.h │ └── startup │ │ ├── efr32mg12p.ld │ │ ├── startup_efr32mg12p.S │ │ ├── system_efr32mg12p.c │ │ └── tx_initialize_low_level.S │ ├── lib │ ├── CMakeLists.txt │ ├── gecko_sdk_3.0.0_efr32mg12 │ │ ├── CMakeLists.txt │ │ ├── autogen │ │ │ ├── sl_board_default_init.c │ │ │ ├── sl_component_catalog.h │ │ │ ├── sl_device_init_clocks.c │ │ │ ├── sl_event_handler.c │ │ │ ├── sl_event_handler.h │ │ │ ├── sl_i2cspm_init.c │ │ │ ├── sl_i2cspm_instances.h │ │ │ ├── sl_iostream_handles.c │ │ │ ├── sl_iostream_handles.h │ │ │ ├── sl_iostream_init_instances.h │ │ │ ├── sl_iostream_init_usart_instances.c │ │ │ ├── sl_iostream_init_usart_instances.h │ │ │ ├── sl_simple_led_instances.c │ │ │ └── sl_simple_led_instances.h │ │ ├── config │ │ │ ├── emdrv │ │ │ │ ├── dmadrv_config.h │ │ │ │ └── spidrv_config.h │ │ │ ├── hardware │ │ │ │ └── board │ │ │ │ │ └── brd4161a_brd4001a │ │ │ │ │ ├── sl_board_control_config.h │ │ │ │ │ ├── sl_device_init_hfxo_config.h │ │ │ │ │ ├── sl_device_init_lfxo_config.h │ │ │ │ │ ├── sl_i2cspm_sensor_config.h │ │ │ │ │ ├── sl_iostream_leuart_exp_config.h │ │ │ │ │ ├── sl_iostream_leuart_vcom_config.h │ │ │ │ │ ├── sl_iostream_usart_exp_config.h │ │ │ │ │ ├── sl_iostream_usart_vcom_config.h │ │ │ │ │ ├── sl_memlcd_config.h │ │ │ │ │ ├── sl_mx25_flash_shutdown_config.h │ │ │ │ │ ├── sl_pwm_init_led0_config.h │ │ │ │ │ ├── sl_pwm_init_led1_config.h │ │ │ │ │ ├── sl_rail_util_pa_config.h │ │ │ │ │ ├── sl_rail_util_pti_config.h │ │ │ │ │ ├── sl_simple_button_btn0_config.h │ │ │ │ │ ├── sl_simple_button_btn1_config.h │ │ │ │ │ ├── sl_simple_led_led0_config.h │ │ │ │ │ ├── sl_simple_led_led1_config.h │ │ │ │ │ ├── sl_spidrv_exp_config.h │ │ │ │ │ ├── sl_uartdrv_leuart_exp_config.h │ │ │ │ │ ├── sl_uartdrv_leuart_vcom_config.h │ │ │ │ │ ├── sl_uartdrv_usart_exp_config.h │ │ │ │ │ └── sl_uartdrv_usart_vcom_config.h │ │ │ └── service │ │ │ │ ├── device_init │ │ │ │ ├── sl_device_init_dcdc_config.h │ │ │ │ └── sl_device_init_emu_config.h │ │ │ │ └── sleeptimer │ │ │ │ └── sl_sleeptimer_config.h │ │ ├── hardware │ │ │ ├── board │ │ │ │ ├── inc │ │ │ │ │ ├── brd4166a_support.h │ │ │ │ │ ├── sl_board_control.h │ │ │ │ │ └── sl_board_init.h │ │ │ │ └── src │ │ │ │ │ ├── brd4166a_support.c │ │ │ │ │ ├── sl_board_control_gpio.c │ │ │ │ │ ├── sl_board_control_stub.c │ │ │ │ │ └── sl_board_init.c │ │ │ └── driver │ │ │ │ ├── mx25_flash_shutdown │ │ │ │ ├── inc │ │ │ │ │ └── sl_mx25_flash_shutdown.h │ │ │ │ └── src │ │ │ │ │ └── sl_mx25_flash_shutdown.c │ │ │ │ └── si70xx │ │ │ │ ├── inc │ │ │ │ └── sl_si70xx.h │ │ │ │ └── src │ │ │ │ └── sl_si70xx.c │ │ └── platform │ │ │ ├── CMSIS │ │ │ └── Include │ │ │ │ ├── arm_common_tables.h │ │ │ │ ├── arm_const_structs.h │ │ │ │ ├── arm_math.h │ │ │ │ ├── cmsis_armcc.h │ │ │ │ ├── cmsis_armclang.h │ │ │ │ ├── cmsis_compiler.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ ├── cmsis_version.h │ │ │ │ ├── core_armv8mbl.h │ │ │ │ ├── core_armv8mml.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm23.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm33.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm7.h │ │ │ │ ├── core_sc000.h │ │ │ │ ├── core_sc300.h │ │ │ │ ├── mpu_armv7.h │ │ │ │ ├── mpu_armv8.h │ │ │ │ └── tz_context.h │ │ │ ├── Device │ │ │ └── SiliconLabs │ │ │ │ └── EFR32MG12P │ │ │ │ └── Include │ │ │ │ ├── efr32mg12p132f1024gl125.h │ │ │ │ ├── efr32mg12p132f1024gm48.h │ │ │ │ ├── efr32mg12p132f512gm68.h │ │ │ │ ├── efr32mg12p231f1024gm48.h │ │ │ │ ├── efr32mg12p231f1024gm68.h │ │ │ │ ├── efr32mg12p232f1024gl125.h │ │ │ │ ├── efr32mg12p232f1024gm48.h │ │ │ │ ├── efr32mg12p232f1024gm68.h │ │ │ │ ├── efr32mg12p232f512gm68.h │ │ │ │ ├── efr32mg12p332f1024gl125.h │ │ │ │ ├── efr32mg12p332f1024gm48.h │ │ │ │ ├── efr32mg12p332f1024im48.h │ │ │ │ ├── efr32mg12p431f1024gm48.h │ │ │ │ ├── efr32mg12p431f1024gm68.h │ │ │ │ ├── efr32mg12p432f1024gl125.h │ │ │ │ ├── efr32mg12p432f1024gm48.h │ │ │ │ ├── efr32mg12p432f1024gm68.h │ │ │ │ ├── efr32mg12p432f1024im48.h │ │ │ │ ├── efr32mg12p433f1024gl125.h │ │ │ │ ├── efr32mg12p433f1024gm48.h │ │ │ │ ├── efr32mg12p433f1024gm68.h │ │ │ │ ├── efr32mg12p433f1024il125.h │ │ │ │ ├── efr32mg12p433f1024im48.h │ │ │ │ ├── efr32mg12p_acmp.h │ │ │ │ ├── efr32mg12p_adc.h │ │ │ │ ├── efr32mg12p_af_pins.h │ │ │ │ ├── efr32mg12p_af_ports.h │ │ │ │ ├── efr32mg12p_cmu.h │ │ │ │ ├── efr32mg12p_cryotimer.h │ │ │ │ ├── efr32mg12p_crypto.h │ │ │ │ ├── efr32mg12p_csen.h │ │ │ │ ├── efr32mg12p_devinfo.h │ │ │ │ ├── efr32mg12p_dma_descriptor.h │ │ │ │ ├── efr32mg12p_dmareq.h │ │ │ │ ├── efr32mg12p_emu.h │ │ │ │ ├── efr32mg12p_etm.h │ │ │ │ ├── efr32mg12p_fpueh.h │ │ │ │ ├── efr32mg12p_gpcrc.h │ │ │ │ ├── efr32mg12p_gpio.h │ │ │ │ ├── efr32mg12p_gpio_p.h │ │ │ │ ├── efr32mg12p_i2c.h │ │ │ │ ├── efr32mg12p_idac.h │ │ │ │ ├── efr32mg12p_ldma.h │ │ │ │ ├── efr32mg12p_ldma_ch.h │ │ │ │ ├── efr32mg12p_lesense.h │ │ │ │ ├── efr32mg12p_lesense_buf.h │ │ │ │ ├── efr32mg12p_lesense_ch.h │ │ │ │ ├── efr32mg12p_lesense_st.h │ │ │ │ ├── efr32mg12p_letimer.h │ │ │ │ ├── efr32mg12p_leuart.h │ │ │ │ ├── efr32mg12p_msc.h │ │ │ │ ├── efr32mg12p_pcnt.h │ │ │ │ ├── efr32mg12p_prs.h │ │ │ │ ├── efr32mg12p_prs_ch.h │ │ │ │ ├── efr32mg12p_prs_signals.h │ │ │ │ ├── efr32mg12p_rmu.h │ │ │ │ ├── efr32mg12p_romtable.h │ │ │ │ ├── efr32mg12p_rtcc.h │ │ │ │ ├── efr32mg12p_rtcc_cc.h │ │ │ │ ├── efr32mg12p_rtcc_ret.h │ │ │ │ ├── efr32mg12p_smu.h │ │ │ │ ├── efr32mg12p_timer.h │ │ │ │ ├── efr32mg12p_timer_cc.h │ │ │ │ ├── efr32mg12p_trng.h │ │ │ │ ├── efr32mg12p_usart.h │ │ │ │ ├── efr32mg12p_vdac.h │ │ │ │ ├── efr32mg12p_vdac_opa.h │ │ │ │ ├── efr32mg12p_wdog.h │ │ │ │ ├── efr32mg12p_wdog_pch.h │ │ │ │ ├── em_device.h │ │ │ │ └── system_efr32mg12p.h │ │ │ ├── common │ │ │ ├── inc │ │ │ │ ├── sl_atomic.h │ │ │ │ ├── sl_bit.h │ │ │ │ ├── sl_enum.h │ │ │ │ ├── sl_slist.h │ │ │ │ ├── sl_status.h │ │ │ │ ├── sl_stdio.h │ │ │ │ └── sl_string.h │ │ │ ├── src │ │ │ │ ├── sl_slist.c │ │ │ │ ├── sl_status.c │ │ │ │ ├── sl_stdio.c │ │ │ │ └── sl_string.c │ │ │ └── toolchain │ │ │ │ └── inc │ │ │ │ ├── sl_gcc_preinclude.h │ │ │ │ ├── sl_memory.h │ │ │ │ ├── sl_memory_region.h │ │ │ │ └── sl_storage.h │ │ │ ├── driver │ │ │ ├── i2cspm │ │ │ │ ├── inc │ │ │ │ │ └── sl_i2cspm.h │ │ │ │ └── src │ │ │ │ │ └── sl_i2cspm.c │ │ │ └── leddrv │ │ │ │ ├── inc │ │ │ │ ├── sl_led.h │ │ │ │ └── sl_simple_led.h │ │ │ │ └── src │ │ │ │ ├── sl_led.c │ │ │ │ └── sl_simple_led.c │ │ │ ├── emdrv │ │ │ ├── common │ │ │ │ └── inc │ │ │ │ │ └── ecode.h │ │ │ ├── dmadrv │ │ │ │ ├── inc │ │ │ │ │ ├── dmactrl.h │ │ │ │ │ └── dmadrv.h │ │ │ │ └── src │ │ │ │ │ ├── dmactrl.c │ │ │ │ │ └── dmadrv.c │ │ │ └── spidrv │ │ │ │ ├── inc │ │ │ │ └── spidrv.h │ │ │ │ └── src │ │ │ │ └── spidrv.c │ │ │ ├── emlib │ │ │ ├── inc │ │ │ │ ├── em_acmp.h │ │ │ │ ├── em_adc.h │ │ │ │ ├── em_aes.h │ │ │ │ ├── em_assert.h │ │ │ │ ├── em_burtc.h │ │ │ │ ├── em_bus.h │ │ │ │ ├── em_can.h │ │ │ │ ├── em_chip.h │ │ │ │ ├── em_cmu.h │ │ │ │ ├── em_common.h │ │ │ │ ├── em_core.h │ │ │ │ ├── em_cryotimer.h │ │ │ │ ├── em_crypto.h │ │ │ │ ├── em_csen.h │ │ │ │ ├── em_dac.h │ │ │ │ ├── em_dbg.h │ │ │ │ ├── em_dma.h │ │ │ │ ├── em_ebi.h │ │ │ │ ├── em_emu.h │ │ │ │ ├── em_eusart.h │ │ │ │ ├── em_gpcrc.h │ │ │ │ ├── em_gpio.h │ │ │ │ ├── em_i2c.h │ │ │ │ ├── em_iadc.h │ │ │ │ ├── em_idac.h │ │ │ │ ├── em_lcd.h │ │ │ │ ├── em_ldma.h │ │ │ │ ├── em_lesense.h │ │ │ │ ├── em_letimer.h │ │ │ │ ├── em_leuart.h │ │ │ │ ├── em_msc.h │ │ │ │ ├── em_opamp.h │ │ │ │ ├── em_pcnt.h │ │ │ │ ├── em_pdm.h │ │ │ │ ├── em_prs.h │ │ │ │ ├── em_qspi.h │ │ │ │ ├── em_ramfunc.h │ │ │ │ ├── em_rmu.h │ │ │ │ ├── em_rtc.h │ │ │ │ ├── em_rtcc.h │ │ │ │ ├── em_se.h │ │ │ │ ├── em_smu.h │ │ │ │ ├── em_system.h │ │ │ │ ├── em_timer.h │ │ │ │ ├── em_usart.h │ │ │ │ ├── em_vcmp.h │ │ │ │ ├── em_vdac.h │ │ │ │ ├── em_version.h │ │ │ │ └── em_wdog.h │ │ │ └── src │ │ │ │ ├── em_acmp.c │ │ │ │ ├── em_adc.c │ │ │ │ ├── em_aes.c │ │ │ │ ├── em_assert.c │ │ │ │ ├── em_burtc.c │ │ │ │ ├── em_can.c │ │ │ │ ├── em_cmu.c │ │ │ │ ├── em_core.c │ │ │ │ ├── em_cryotimer.c │ │ │ │ ├── em_crypto.c │ │ │ │ ├── em_csen.c │ │ │ │ ├── em_dac.c │ │ │ │ ├── em_dbg.c │ │ │ │ ├── em_dma.c │ │ │ │ ├── em_ebi.c │ │ │ │ ├── em_emu.c │ │ │ │ ├── em_eusart.c │ │ │ │ ├── em_gpcrc.c │ │ │ │ ├── em_gpio.c │ │ │ │ ├── em_i2c.c │ │ │ │ ├── em_iadc.c │ │ │ │ ├── em_idac.c │ │ │ │ ├── em_lcd.c │ │ │ │ ├── em_ldma.c │ │ │ │ ├── em_lesense.c │ │ │ │ ├── em_letimer.c │ │ │ │ ├── em_leuart.c │ │ │ │ ├── em_msc.c │ │ │ │ ├── em_opamp.c │ │ │ │ ├── em_pcnt.c │ │ │ │ ├── em_pdm.c │ │ │ │ ├── em_prs.c │ │ │ │ ├── em_qspi.c │ │ │ │ ├── em_rmu.c │ │ │ │ ├── em_rtc.c │ │ │ │ ├── em_rtcc.c │ │ │ │ ├── em_se.c │ │ │ │ ├── em_system.c │ │ │ │ ├── em_timer.c │ │ │ │ ├── em_usart.c │ │ │ │ ├── em_vcmp.c │ │ │ │ ├── em_vdac.c │ │ │ │ └── em_wdog.c │ │ │ ├── radio │ │ │ └── wifi │ │ │ │ └── wfx_fmac_driver │ │ │ │ ├── bus │ │ │ │ ├── sl_wfx_bus.c │ │ │ │ ├── sl_wfx_bus.h │ │ │ │ ├── sl_wfx_bus_sdio.c │ │ │ │ └── sl_wfx_bus_spi.c │ │ │ │ ├── firmware │ │ │ │ ├── sl_wfx_api.h │ │ │ │ ├── sl_wfx_cmd_api.h │ │ │ │ ├── sl_wfx_general_api.h │ │ │ │ ├── sl_wfx_general_error_api.h │ │ │ │ ├── sl_wfx_registers.h │ │ │ │ └── sl_wfx_wf200_C0.h │ │ │ │ ├── secure_link │ │ │ │ ├── sl_wfx_secure_link.c │ │ │ │ └── sl_wfx_secure_link.h │ │ │ │ ├── sl_wfx.c │ │ │ │ ├── sl_wfx.h │ │ │ │ ├── sl_wfx_configuration.h │ │ │ │ ├── sl_wfx_constants.h │ │ │ │ ├── sl_wfx_host_api.h │ │ │ │ └── sl_wfx_version.h │ │ │ └── service │ │ │ ├── device_init │ │ │ ├── inc │ │ │ │ ├── sl_device_init_clocks.h │ │ │ │ ├── sl_device_init_dcdc.h │ │ │ │ ├── sl_device_init_dpll.h │ │ │ │ ├── sl_device_init_emu.h │ │ │ │ ├── sl_device_init_hfrco.h │ │ │ │ ├── sl_device_init_hfxo.h │ │ │ │ ├── sl_device_init_lfrco.h │ │ │ │ └── sl_device_init_lfxo.h │ │ │ └── src │ │ │ │ ├── sl_device_init_dcdc_s1.c │ │ │ │ ├── sl_device_init_dcdc_s2.c │ │ │ │ ├── sl_device_init_dpll_s2.c │ │ │ │ ├── sl_device_init_emu_s0.c │ │ │ │ ├── sl_device_init_emu_s1.c │ │ │ │ ├── sl_device_init_emu_s2.c │ │ │ │ ├── sl_device_init_hfrco.c │ │ │ │ ├── sl_device_init_hfxo_s0.c │ │ │ │ ├── sl_device_init_hfxo_s1.c │ │ │ │ ├── sl_device_init_hfxo_s2.c │ │ │ │ ├── sl_device_init_lfrco.c │ │ │ │ ├── sl_device_init_lfxo_s0.c │ │ │ │ ├── sl_device_init_lfxo_s1.c │ │ │ │ └── sl_device_init_lfxo_s2.c │ │ │ ├── iostream │ │ │ ├── inc │ │ │ │ ├── sl_iostream.h │ │ │ │ ├── sl_iostream_eusart.h │ │ │ │ ├── sl_iostream_leuart.h │ │ │ │ ├── sl_iostream_rtt.h │ │ │ │ ├── sl_iostream_stdlib_config.h │ │ │ │ ├── sl_iostream_swo.h │ │ │ │ ├── sl_iostream_swo_itm_8.h │ │ │ │ ├── sl_iostream_uart.h │ │ │ │ ├── sl_iostream_usart.h │ │ │ │ ├── sl_iostream_vuart.h │ │ │ │ ├── sli_iostream_swo_itm_8.h │ │ │ │ └── sli_iostream_uart.h │ │ │ └── src │ │ │ │ ├── sl_iostream.c │ │ │ │ ├── sl_iostream_eusart.c │ │ │ │ ├── sl_iostream_leuart.c │ │ │ │ ├── sl_iostream_retarget_stdio.c │ │ │ │ ├── sl_iostream_rtt.c │ │ │ │ ├── sl_iostream_stdlib_config.c │ │ │ │ ├── sl_iostream_swo.c │ │ │ │ ├── sl_iostream_swo_itm_8.c │ │ │ │ ├── sl_iostream_uart.c │ │ │ │ ├── sl_iostream_usart.c │ │ │ │ └── sl_iostream_vuart.c │ │ │ ├── sleeptimer │ │ │ ├── inc │ │ │ │ ├── sl_sleeptimer.h │ │ │ │ └── sli_sleeptimer.h │ │ │ └── src │ │ │ │ ├── sl_sleeptimer.c │ │ │ │ ├── sl_sleeptimer_hal_rtcc.c │ │ │ │ └── sli_sleeptimer_hal.h │ │ │ ├── system │ │ │ ├── inc │ │ │ │ ├── sl_system_init.h │ │ │ │ └── sl_system_kernel.h │ │ │ └── src │ │ │ │ ├── sl_system_init.c │ │ │ │ └── sl_system_kernel.c │ │ │ └── udelay │ │ │ ├── inc │ │ │ └── sl_udelay.h │ │ │ └── src │ │ │ ├── sl_udelay.c │ │ │ ├── sl_udelay_armv6m_gcc.S │ │ │ └── sl_udelay_armv6m_iar.s │ ├── netx_driver │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── nx_sl_wfx_driver.c │ │ │ └── nx_sl_wfx_driver.h │ ├── netxduo │ │ └── nx_user.h │ └── threadx │ │ └── tx_user.h │ ├── media │ ├── Simplicity_Commander.PNG │ ├── azure-iot-central-device-about.png │ ├── azure-iot-central-device-telemetry.png │ ├── azure-iot-central-device-view-status.png │ ├── azure-iot-central-invoke-method.png │ ├── efr32mg12-dev-kit.PNG │ ├── iotcentralcreate-custom.png │ ├── iotcentralcreate-device.png │ ├── iotcentraldevice-connection-info.png │ ├── termite-settings.png │ └── tool_simplicity_studio.PNG │ ├── readme.md │ └── tools │ ├── rebuild.bat │ └── rebuild.sh ├── cmake ├── arm-gcc-cortex-m33.cmake ├── arm-gcc-cortex-m4.cmake ├── arm-gcc-cortex-m7.cmake ├── arm-gcc-cortex-toolchain.cmake ├── arm-iar-cortex-m33.cmake ├── arm-iar-cortex-m4.cmake ├── arm-iar-cortex-m7.cmake ├── arm-iar-cortex-toolchain.cmake ├── ninja.exe ├── renesas-rx-gcc-rx65n.cmake ├── renesas-rx-gcc-toolchain.cmake └── utilities.cmake ├── docs ├── debugging-codespaces.md ├── debugging-container.md ├── debugging-local.md ├── debugging.md ├── media │ ├── azure-iot-explorer-add-device-model.png │ ├── azure-iot-explorer-pnp-components.png │ ├── azure-iot-explorer-send-command.png │ ├── azure-iot-explorer-writable-property.png │ ├── docs-link-buttons │ │ ├── azure-documentation.svg │ │ ├── azure-how-to-guide.svg │ │ ├── azure-quickstart.svg │ │ └── azure-tutorial.svg │ ├── dps-add-individual-enrollment.png │ ├── dps-manage-enrollments.png │ ├── vs-configuration-m4.png │ ├── vs-configuration-m7.png │ ├── vs-debug-target-az3166.png │ ├── vs-debug-target-mimxrt1060evk.png │ ├── vs-debug-target-stm32l4.png │ ├── vs-preset-configuration-m4.png │ ├── vs-preset-configuration-m7.png │ ├── vscode-az3166-cmake-kit.png │ ├── vscode-az3166-configure-preset.png │ ├── vscode-az3166-launch-configuration.png │ ├── vscode-build-preset-m7.png │ ├── vscode-build-preset.png │ ├── vscode-mimxrt1060evk-cmake-kit.png │ ├── vscode-mimxrt1060evk-configure-preset.png │ ├── vscode-mimxrt1060evk-launch-configuration.png │ ├── vscode-recommended-extensions.png │ ├── vscode-stm32l4-cmake-kit.png │ ├── vscode-stm32l4-configure-preset.png │ └── vscode-stm32l4-launch-configuration.png ├── plugandplay.md ├── sources.md ├── using-azure-rtos.md └── using-self-signed-x509-certificates.md ├── mlc_config.json ├── shared ├── lib │ └── jsmn │ │ ├── CMakeLists.txt │ │ └── jsmn.c ├── model │ ├── deviceinformation-1.json │ ├── gsg-1.json │ ├── gsg-2.json │ ├── gsgmqtt-1.json │ ├── gsgmxchip-1.json │ ├── gsgmxchip-2.json │ ├── gsgrx65ncloud-1.json │ ├── gsgstml4s5-2.json │ └── readme.md └── src │ ├── CMakeLists.txt │ ├── azure_iot_cert.c │ ├── azure_iot_cert.h │ ├── azure_iot_ciphersuites.c │ ├── azure_iot_ciphersuites.h │ ├── azure_iot_connect.c │ ├── azure_iot_connect.h │ ├── azure_iot_mqtt │ ├── azure_iot_dps_mqtt.c │ ├── azure_iot_dps_mqtt.h │ ├── azure_iot_mqtt.c │ ├── azure_iot_mqtt.h │ ├── hmac_sha256.c │ ├── hmac_sha256.h │ ├── json_utils.c │ ├── json_utils.h │ ├── sas_token.c │ ├── sas_token.h │ ├── sha256.c │ └── sha256.h │ ├── azure_iot_nx_client.c │ ├── azure_iot_nx_client.h │ ├── cmsis_utils.h │ ├── networking.c │ ├── networking.h │ ├── newlib_nano.c │ ├── sntp_client.c │ └── sntp_client.h └── tools ├── generate-device-key.ps1 ├── get-toolchain-rx.bat ├── get-toolchain-rx.ps1 ├── get-toolchain.bat ├── get-toolchain.ps1 └── get-toolchain.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/.clang-format -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MXChip/AZ3166/.vs/launch.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/.vs/launch.vs.json -------------------------------------------------------------------------------- /MXChip/AZ3166/.vscode/cmake-kits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/.vscode/cmake-kits.json -------------------------------------------------------------------------------- /MXChip/AZ3166/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/.vscode/extensions.json -------------------------------------------------------------------------------- /MXChip/AZ3166/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/.vscode/launch.json -------------------------------------------------------------------------------- /MXChip/AZ3166/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/.vscode/settings.json -------------------------------------------------------------------------------- /MXChip/AZ3166/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/.vscode/tasks.json -------------------------------------------------------------------------------- /MXChip/AZ3166/AZ3166.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/AZ3166.code-workspace -------------------------------------------------------------------------------- /MXChip/AZ3166/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/CMakeLists.txt -------------------------------------------------------------------------------- /MXChip/AZ3166/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/CMakePresets.json -------------------------------------------------------------------------------- /MXChip/AZ3166/STM32F412.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/STM32F412.svd -------------------------------------------------------------------------------- /MXChip/AZ3166/VS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/VS.md -------------------------------------------------------------------------------- /MXChip/AZ3166/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/CMakeLists.txt -------------------------------------------------------------------------------- /MXChip/AZ3166/app/azure_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/azure_config.h -------------------------------------------------------------------------------- /MXChip/AZ3166/app/azure_device_x509_cert_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/azure_device_x509_cert_config.h -------------------------------------------------------------------------------- /MXChip/AZ3166/app/azure_pnp_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/azure_pnp_info.h -------------------------------------------------------------------------------- /MXChip/AZ3166/app/board_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/board_init.c -------------------------------------------------------------------------------- /MXChip/AZ3166/app/board_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/board_init.h -------------------------------------------------------------------------------- /MXChip/AZ3166/app/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/console.c -------------------------------------------------------------------------------- /MXChip/AZ3166/app/legacy/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/legacy/mqtt.c -------------------------------------------------------------------------------- /MXChip/AZ3166/app/legacy/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/legacy/mqtt.h -------------------------------------------------------------------------------- /MXChip/AZ3166/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/main.c -------------------------------------------------------------------------------- /MXChip/AZ3166/app/nx_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/nx_client.c -------------------------------------------------------------------------------- /MXChip/AZ3166/app/nx_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/nx_client.h -------------------------------------------------------------------------------- /MXChip/AZ3166/app/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/screen.c -------------------------------------------------------------------------------- /MXChip/AZ3166/app/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/screen.h -------------------------------------------------------------------------------- /MXChip/AZ3166/app/startup/MXChip_AZ3166.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/startup/MXChip_AZ3166.ld -------------------------------------------------------------------------------- /MXChip/AZ3166/app/startup/startup_stm32f412rx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/startup/startup_stm32f412rx.s -------------------------------------------------------------------------------- /MXChip/AZ3166/app/startup/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/startup/system_stm32f4xx.c -------------------------------------------------------------------------------- /MXChip/AZ3166/app/startup/tx_initialize_low_level.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/startup/tx_initialize_low_level.S -------------------------------------------------------------------------------- /MXChip/AZ3166/app/stm32cubef4/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/stm32cubef4/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /MXChip/AZ3166/app/wwd_networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/wwd_networking.c -------------------------------------------------------------------------------- /MXChip/AZ3166/app/wwd_networking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/app/wwd_networking.h -------------------------------------------------------------------------------- /MXChip/AZ3166/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/azure-pipelines.yml -------------------------------------------------------------------------------- /MXChip/AZ3166/cmake/FindCMSIS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/cmake/FindCMSIS.cmake -------------------------------------------------------------------------------- /MXChip/AZ3166/cmake/FindSTM32HAL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/cmake/FindSTM32HAL.cmake -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/CMakeLists.txt -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/mxchip_bsp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/mxchip_bsp/CMakeLists.txt -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/mxchip_bsp/ssd1306/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/mxchip_bsp/ssd1306/LICENSE -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/mxchip_bsp/ssd1306/ssd1306.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/mxchip_bsp/ssd1306/ssd1306.c -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/mxchip_bsp/ssd1306/ssd1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/mxchip_bsp/ssd1306/ssd1306.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/mxchip_bsp/ssd1306/ssd1306_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/mxchip_bsp/ssd1306/ssd1306_conf.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/mxchip_bsp/ssd1306/ssd1306_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/mxchip_bsp/ssd1306/ssd1306_fonts.c -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/mxchip_bsp/ssd1306/ssd1306_fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/mxchip_bsp/ssd1306/ssd1306_fonts.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Inc/hts221_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Inc/hts221_reg.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Inc/lis2mdl_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Inc/lis2mdl_reg.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Inc/lps22hb_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Inc/lps22hb_reg.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Inc/lsm6dsl_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Inc/lsm6dsl_reg.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Inc/sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Inc/sensor.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Src/hts221_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Src/hts221_reg.c -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Src/lis2mdl_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Src/lis2mdl_reg.c -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Src/lps22hb_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Src/lps22hb_reg.c -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Src/lsm6dsl_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/mxchip_bsp/stm_sensor/Src/lsm6dsl_reg.c -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/netxduo/nx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/netxduo/nx_user.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/CMakeLists.txt -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/LICENSE.txt -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/CMSIS/README.md -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/Drivers/STM32F4xx_HAL_Driver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/Drivers/STM32F4xx_HAL_Driver/README.md -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/License.md -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/README.md -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/stm32cubef4/config/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/stm32cubef4/config/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/threadx/tx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/threadx/tx_user.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/wiced_sdk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/wiced_sdk/CMakeLists.txt -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/wiced_sdk/binary_build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/wiced_sdk/binary_build/CMakeLists.txt -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/wiced_sdk/binary_build/inc/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/wiced_sdk/binary_build/inc/resources.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/wiced_sdk/binary_build/rebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/wiced_sdk/binary_build/rebuild.bat -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/wiced_sdk/binary_build/src/43362A2_bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/wiced_sdk/binary_build/src/43362A2_bin.c -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/wiced_sdk/inc/wiced_sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/wiced_sdk/inc/wiced_sdk.h -------------------------------------------------------------------------------- /MXChip/AZ3166/lib/wiced_sdk/lib/libwiced_sdk_bin.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/lib/wiced_sdk/lib/libwiced_sdk_bin.a -------------------------------------------------------------------------------- /MXChip/AZ3166/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/readme.md -------------------------------------------------------------------------------- /MXChip/AZ3166/tools/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/tools/flash.bat -------------------------------------------------------------------------------- /MXChip/AZ3166/tools/rebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/tools/rebuild.bat -------------------------------------------------------------------------------- /MXChip/AZ3166/tools/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/tools/rebuild.sh -------------------------------------------------------------------------------- /MXChip/AZ3166/vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/vcpkg-configuration.json -------------------------------------------------------------------------------- /MXChip/AZ3166/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/MXChip/AZ3166/vscode.md -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/.vscode/ATSAME54P20A.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/.vscode/ATSAME54P20A.svd -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/.vscode/cmake-kits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/.vscode/cmake-kits.json -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/.vscode/launch.json -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/ATSAME54-XPRO.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/ATSAME54-XPRO.code-workspace -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/CMakeLists.txt -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/app/CMakeLists.txt -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/app/azure_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/app/azure_config.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/app/azure_device_x509_cert_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/app/azure_device_x509_cert_config.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/app/azure_pnp_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/app/azure_pnp_info.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/app/board_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/app/board_init.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/app/board_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/app/board_init.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/app/legacy/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/app/legacy/mqtt.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/app/legacy/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/app/legacy/mqtt.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/app/main.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/app/nx_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/app/nx_client.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/app/nx_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/app/nx_client.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/app/startup/gnu/same54p20a_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/app/startup/gnu/same54p20a_flash.ld -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/app/startup/gnu/startup_same54.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/app/startup/gnu/startup_same54.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/app/startup/gnu/tx_initialize_low_level.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/app/startup/gnu/tx_initialize_low_level.S -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/app/startup/iar/same54x20_flash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/app/startup/iar/same54x20_flash.icf -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/app/startup/iar/startup_same54.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/app/startup/iar/startup_same54.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/app/startup/iar/tx_initialize_low_level.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/app/startup/iar/tx_initialize_low_level.s -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/azure-pipelines.yml -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/CMakeLists.txt -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/CMakeLists.txt -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/GettingStarted.atstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/GettingStarted.atstart -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/config/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/config/RTE_Components.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/config/hpl_cmcc_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/config/hpl_cmcc_config.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/config/hpl_dmac_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/config/hpl_dmac_config.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/config/hpl_gclk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/config/hpl_gclk_config.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/config/hpl_gmac_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/config/hpl_gmac_config.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/config/hpl_mclk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/config/hpl_mclk_config.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/config/hpl_oscctrl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/config/hpl_oscctrl_config.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/config/hpl_port_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/config/hpl_port_config.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/config/hpl_sercom_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/config/hpl_sercom_config.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/atmel_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/atmel_start.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/atmel_start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/atmel_start.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/atmel_start_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/atmel_start_pins.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/driver_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/driver_init.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/driver_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/driver_init.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/ethernet_phy_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/ethernet_phy_main.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/ethernet_phy_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/ethernet_phy_main.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hal_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hal_atomic.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hal_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hal_cache.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hal_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hal_delay.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hal_gpio.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hal_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hal_init.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hal_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hal_io.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hal_sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hal_sleep.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_cmcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_cmcc.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_core.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_delay.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_dma.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_gpio.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_init.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_irq.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_ramecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_ramecc.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_reset.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_sleep.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_spi.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/include/hpl_usart.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_atomic.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_cache.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_delay.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_gpio.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_i2c_m_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_i2c_m_sync.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_init.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_io.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_mac_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_mac_async.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_sleep.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_usart_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hal/src/hal_usart_sync.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/cmcc/hpl_cmcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/cmcc/hpl_cmcc.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/core/hpl_core_m4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/core/hpl_core_m4.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/core/hpl_core_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/core/hpl_core_port.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/core/hpl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/core/hpl_init.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/dmac/hpl_dmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/dmac/hpl_dmac.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/gclk/hpl_gclk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/gclk/hpl_gclk.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/gclk/hpl_gclk_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/gclk/hpl_gclk_base.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/gmac/hpl_gmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/gmac/hpl_gmac.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/mclk/hpl_mclk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/mclk/hpl_mclk.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/pm/hpl_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/pm/hpl_pm.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/pm/hpl_pm_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/pm/hpl_pm_base.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/port/hpl_gpio_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/port/hpl_gpio_base.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/ramecc/hpl_ramecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/ramecc/hpl_ramecc.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/sercom/hpl_sercom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hpl/sercom/hpl_sercom.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_ac_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_ac_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_adc_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_adc_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_aes_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_aes_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_can_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_can_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_ccl_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_ccl_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_cmcc_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_cmcc_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_dac_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_dac_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_dmac_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_dmac_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_dsu_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_dsu_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_eic_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_eic_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_evsys_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_evsys_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_freqm_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_freqm_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_gclk_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_gclk_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_gmac_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_gmac_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_hmatrixb_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_hmatrixb_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_i2s_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_i2s_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_icm_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_icm_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_mclk_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_mclk_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_nvmctrl_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_nvmctrl_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_osc32kctrl_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_osc32kctrl_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_oscctrl_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_oscctrl_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_pac_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_pac_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_pcc_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_pcc_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_pdec_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_pdec_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_pm_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_pm_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_port_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_port_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_qspi_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_qspi_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_ramecc_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_ramecc_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_rstc_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_rstc_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_rtc_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_rtc_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_sdhc_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_sdhc_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_sercom_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_sercom_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_supc_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_supc_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_tc_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_tc_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_tcc_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_tcc_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_trng_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_trng_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_usb_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_usb_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_wdt_e54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/hri/hri_wdt_e54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/ac.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/adc.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/aes.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/can.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/ccl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/ccl.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/cmcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/cmcc.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/dac.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/dmac.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/dsu.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/eic.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/gclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/gclk.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/gmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/gmac.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/i2s.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/icm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/icm.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/mclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/mclk.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/pac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/pac.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/pcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/pcc.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/pdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/pdec.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/pm.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/port.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/qspi.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/rstc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/rstc.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/rtc.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/sdhc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/sdhc.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/supc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/supc.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/tc.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/tcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/tcc.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/trng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/trng.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/usb.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/component/wdt.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/ac.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/adc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/adc0.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/adc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/adc1.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/aes.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/can0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/can0.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/can1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/can1.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/ccl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/ccl.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/cmcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/cmcc.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/dac.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/dmac.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/dsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/dsu.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/eic.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/instance/pm.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/sam.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/same54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/same54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/same54n19a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/same54n19a.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/same54n20a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/same54n20a.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/same54p19a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/same54p19a.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/same54p20a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/include/same54p20a.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/stdio_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/stdio_start.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/atmel_start/src/stdio_start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/atmel_start/src/stdio_start.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/bme280/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/bme280/CMakeLists.txt -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/bme280/src/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/bme280/src/LICENSE.txt -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/bme280/src/bme280.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/bme280/src/bme280.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/bme280/src/bme280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/bme280/src/bme280.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/bme280/src/bme280_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/bme280/src/bme280_defs.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/bme280/weather_click.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/bme280/weather_click.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/bme280/weather_click.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/bme280/weather_click.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/netx_driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/netx_driver/CMakeLists.txt -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/netx_driver/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/netx_driver/LICENSE.txt -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/netx_driver/LICENSED-HARDWARE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/netx_driver/LICENSED-HARDWARE.txt -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/netx_driver/src/nx_driver_same54.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/netx_driver/src/nx_driver_same54.c -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/netx_driver/src/nx_driver_same54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/netx_driver/src/nx_driver_same54.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/netxduo/nx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/netxduo/nx_user.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/lib/threadx/tx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/lib/threadx/tx_user.h -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/readme.md -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/tools/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/tools/flash.bat -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/tools/rebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/tools/rebuild.bat -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/tools/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/tools/rebuild.sh -------------------------------------------------------------------------------- /Microchip/ATSAME54-XPRO/tools/rebuild_iar.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Microchip/ATSAME54-XPRO/tools/rebuild_iar.bat -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/.vscode/cmake-kits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/.vscode/cmake-kits.json -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/.vscode/launch.json -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/CMakeLists.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/app/CMakeLists.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/app/azure_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/app/azure_config.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/app/azure_device_x509_cert_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/app/azure_device_x509_cert_config.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/app/azure_pnp_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/app/azure_pnp_info.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/app/board_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/app/board_init.c -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/app/board_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/app/board_init.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/app/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/app/console.c -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/app/legacy/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/app/legacy/mqtt.c -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/app/legacy/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/app/legacy/mqtt.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/app/main.c -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/app/nx_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/app/nx_client.c -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/app/nx_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/app/nx_client.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/app/startup/gnu/startup_MIMXRT1052.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/app/startup/gnu/startup_MIMXRT1052.S -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/app/startup/gnu/tx_initialize_low_level.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/app/startup/gnu/tx_initialize_low_level.S -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/app/startup/iar/startup_MIMXRT1052.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/app/startup/iar/startup_MIMXRT1052.s -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/app/startup/iar/tx_initialize_low_level.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/app/startup/iar/tx_initialize_low_level.s -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/CMakeLists.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/CMakeLists.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/config/board/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/config/board/board.c -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/config/board/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/config/board/board.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/config/board/dcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/config/board/dcd.c -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/config/board/dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/config/board/dcd.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/config/board/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/config/board/pin_mux.c -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/config/board/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/config/board/pin_mux.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/BSP.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/BSP.XML -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/CMSIS/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/CMSIS/LICENSE.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/COPYING-BSD-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/COPYING-BSD-3 -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/VendorSamples.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/VendorSamples.XML -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/components/crc/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/components/crc/crc.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/components/gpio/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/components/gpio/gpio.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/components/i2c/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/components/i2c/i2c.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/components/led/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/components/led/led.c -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/components/led/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/components/led/led.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/components/rng/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/components/rng/rng.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/components/uart/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/components/uart/uart.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/MIMXRT1050-evk/src/main.c -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/netx_driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/netx_driver/CMakeLists.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/netx_driver/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/netx_driver/LICENSE.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/netx_driver/LICENSED-HARDWARE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/netx_driver/LICENSED-HARDWARE.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/netx_driver/src/nx_driver_imxrt10xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/netx_driver/src/nx_driver_imxrt10xx.c -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/netx_driver/src/nx_driver_imxrt10xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/netx_driver/src/nx_driver_imxrt10xx.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/netxduo/nx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/netxduo/nx_user.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/lib/threadx/tx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/lib/threadx/tx_user.h -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/mimxrt1050.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/mimxrt1050.code-workspace -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/readme.md -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/tools/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/tools/flash.bat -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/tools/mimxrt1050-evkb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/tools/mimxrt1050-evkb.cfg -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/tools/rebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/tools/rebuild.bat -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/tools/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/tools/rebuild.sh -------------------------------------------------------------------------------- /NXP/MIMXRT1050-EVKB/tools/rebuild_iar.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1050-EVKB/tools/rebuild_iar.bat -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/.vs/launch.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/.vs/launch.vs.json -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/.vscode/cmake-kits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/.vscode/cmake-kits.json -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/.vscode/extensions.json -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/.vscode/flash.jlink: -------------------------------------------------------------------------------- 1 | loadfile build/app/mimxrt1060_azure_iot.hex 2 | r0 3 | q -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/.vscode/launch.json -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/.vscode/reset.gdb: -------------------------------------------------------------------------------- 1 | reset 2 | -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/.vscode/settings.json -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/.vscode/tasks.json -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/CMakeLists.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/CMakePresets.json -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/MIMXRT1062.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/MIMXRT1062.svd -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/VS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/VS.md -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/app/CMakeLists.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/app/azure_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/app/azure_config.h -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/app/azure_device_x509_cert_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/app/azure_device_x509_cert_config.h -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/app/azure_pnp_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/app/azure_pnp_info.h -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/app/board_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/app/board_init.c -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/app/board_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/app/board_init.h -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/app/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/app/console.c -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/app/legacy/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/app/legacy/mqtt.c -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/app/legacy/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/app/legacy/mqtt.h -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/app/main.c -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/app/nx_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/app/nx_client.c -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/app/nx_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/app/nx_client.h -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/app/startup/gnu/MIMXRT1062xxxxx_flexspi_nor.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/app/startup/gnu/MIMXRT1062xxxxx_flexspi_nor.ld -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/app/startup/gnu/startup_MIMXRT1062.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/app/startup/gnu/startup_MIMXRT1062.S -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/app/startup/gnu/tx_initialize_low_level.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/app/startup/gnu/tx_initialize_low_level.S -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/app/startup/iar/startup_MIMXRT1062.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/app/startup/iar/startup_MIMXRT1062.s -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/app/startup/iar/tx_initialize_low_level.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/app/startup/iar/tx_initialize_low_level.s -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/azure-pipelines.yml -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/CMakeLists.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/CMakeLists.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/board.c -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/board.h -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/clock_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/clock_config.c -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/clock_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/clock_config.h -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/dcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/dcd.c -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/dcd.h -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/pin_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/pin_mux.c -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/pin_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/pin_mux.h -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/config/board/readme.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/src/BSP.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/src/BSP.XML -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/src/CMSIS/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/src/CMSIS/LICENSE.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/src/COPYING-BSD-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/src/COPYING-BSD-3 -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/src/SW-Content-Register.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/MIMXRT1060-evk/src/SW-Content-Register.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/netx_driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/netx_driver/CMakeLists.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/netx_driver/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/netx_driver/LICENSE.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/netx_driver/LICENSED-HARDWARE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/netx_driver/LICENSED-HARDWARE.txt -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/netx_driver/src/nx_driver_imxrt1062.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/netx_driver/src/nx_driver_imxrt1062.c -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/netx_driver/src/nx_driver_imxrt1062.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/netx_driver/src/nx_driver_imxrt1062.h -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/netxduo/nx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/netxduo/nx_user.h -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/lib/threadx/tx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/lib/threadx/tx_user.h -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/mimxrt1060.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/mimxrt1060.code-workspace -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/readme.md -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/tools/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/tools/flash.bat -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/tools/mimxrt1060-evk.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/tools/mimxrt1060-evk.cfg -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/tools/rebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/tools/rebuild.bat -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/tools/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/tools/rebuild.sh -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/tools/rebuild_iar.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/tools/rebuild_iar.bat -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/vcpkg-configuration.json -------------------------------------------------------------------------------- /NXP/MIMXRT1060-EVK/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/NXP/MIMXRT1060-EVK/vscode.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/README.md -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/.vscode/cmake-kits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/.vscode/cmake-kits.json -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/CMakeLists.txt -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/app/.vscode/cmake-kits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/app/.vscode/cmake-kits.json -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/app/CMakeLists.txt -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/app/azure_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/app/azure_config.h -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/app/azure_device_x509_cert_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/app/azure_device_x509_cert_config.h -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/app/azure_pnp_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/app/azure_pnp_info.h -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/app/board_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/app/board_init.c -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/app/board_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/app/board_init.h -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/app/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/app/console.c -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/app/legacy/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/app/legacy/mqtt.c -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/app/legacy/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/app/legacy/mqtt.h -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/app/main.c -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/app/nx_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/app/nx_client.c -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/app/nx_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/app/nx_client.h -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/app/startup/gnu/linker_script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/app/startup/gnu/linker_script.ld -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/app/startup/gnu/linker_script_rvectors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/app/startup/gnu/linker_script_rvectors.inc -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/app/startup/gnu/tx_initialize_low_level.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/app/startup/gnu/tx_initialize_low_level.S -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/lib/CMakeLists.txt -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/lib/netx_driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/lib/netx_driver/CMakeLists.txt -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/lib/netx_driver/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/lib/netx_driver/LICENSE.txt -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/lib/netx_driver/LICENSED-HARDWARE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/lib/netx_driver/LICENSED-HARDWARE.txt -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/lib/netx_driver/src/nx_driver_rx_fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/lib/netx_driver/src/nx_driver_rx_fit.c -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/lib/netx_driver/src/nx_driver_rx_fit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/lib/netx_driver/src/nx_driver_rx_fit.h -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/lib/netxduo/nx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/lib/netxduo/nx_user.h -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/lib/rx_driver_package/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/lib/rx_driver_package/CMakeLists.txt -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/lib/rx_driver_package/RSK_RX65N_2MB.scfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/lib/rx_driver_package/RSK_RX65N_2MB.scfg -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/lib/threadx/tx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/lib/threadx/tx_user.h -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/projects/e2studio/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/projects/e2studio/.project -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/readme.md -------------------------------------------------------------------------------- /Renesas/RSK_RX65N_2MB/tools/rebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RSK_RX65N_2MB/tools/rebuild.bat -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/.vscode/cmake-kits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/.vscode/cmake-kits.json -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/CMakeLists.txt -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/RX65N_Cloud_Kit.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/RX65N_Cloud_Kit.code-workspace -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/.vscode/cmake-kits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/.vscode/cmake-kits.json -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/CMakeLists.txt -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/azure_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/azure_config.h -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/azure_device_x509_cert_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/azure_device_x509_cert_config.h -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/azure_pnp_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/azure_pnp_info.h -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/board_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/board_init.c -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/board_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/board_init.h -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/console.c -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/legacy/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/legacy/mqtt.c -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/legacy/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/legacy/mqtt.h -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/main.c -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/nx_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/nx_client.c -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/nx_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/nx_client.h -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/rx_networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/rx_networking.c -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/rx_networking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/rx_networking.h -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/startup/gnu/linker_script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/startup/gnu/linker_script.ld -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/startup/gnu/tx_initialize_low_level.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/startup/gnu/tx_initialize_low_level.S -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/startup/iar/linker_script.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/startup/iar/linker_script.icf -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/app/startup/iar/tx_initialize_low_level.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/app/startup/iar/tx_initialize_low_level.S -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/CMakeLists.txt -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/netx_driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/netx_driver/CMakeLists.txt -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/netxduo/nx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/netxduo/nx_user.h -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/rx_driver_package/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/rx_driver_package/CMakeLists.txt -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/sensorlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/sensorlib/CMakeLists.txt -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bme68x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bme68x/LICENSE -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bme68x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bme68x/README.md -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bme68x/bme68x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bme68x/bme68x.c -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bme68x/bme68x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bme68x/bme68x.h -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bme68x/bme68x_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bme68x/bme68x_defs.h -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bmi160/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bmi160/LICENSE -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bmi160/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bmi160/README.md -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bmi160/bmi160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bmi160/bmi160.c -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bmi160/bmi160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bmi160/bmi160.h -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bmi160/bmi160_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/bmi160/bmi160_defs.h -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/rx_i2c_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/rx_i2c_api.c -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/rx_i2c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/sensorlib/src/rx_i2c_api.h -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/lib/threadx/tx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/lib/threadx/tx_user.h -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/project/e2studio/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/project/e2studio/.cproject -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/project/e2studio/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/project/e2studio/.project -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/readme.md -------------------------------------------------------------------------------- /Renesas/RX65N_Cloud_Kit/tools/rebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/RX65N_Cloud_Kit/tools/rebuild.bat -------------------------------------------------------------------------------- /Renesas/Synergy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/Renesas/Synergy/readme.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SECURITY.md -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/.vs/launch.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/.vs/launch.vs.json -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/.vscode/cmake-kits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/.vscode/cmake-kits.json -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/.vscode/extensions.json -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/.vscode/launch.json -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/.vscode/settings.json -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/.vscode/tasks.json -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/CMakeLists.txt -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/CMakePresets.json -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/STM32L4x5.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/STM32L4x5.svd -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/VS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/VS.md -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/app/CMakeLists.txt -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/app/azure_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/app/azure_config.h -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/app/azure_pnp_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/app/azure_pnp_info.h -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/app/board_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/app/board_init.c -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/app/board_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/app/board_init.h -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/app/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/app/console.c -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/app/main.c -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/app/nx_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/app/nx_client.c -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/app/nx_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/app/nx_client.h -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/app/stm_networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/app/stm_networking.c -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/app/stm_networking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/app/stm_networking.h -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/azure-pipelines.yml -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/lib/CMakeLists.txt -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/lib/netx_driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/lib/netx_driver/CMakeLists.txt -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/lib/netx_driver/inventek/wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/lib/netx_driver/inventek/wifi.c -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/lib/netx_driver/inventek/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/lib/netx_driver/inventek/wifi.h -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/lib/netxduo/nx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/lib/netxduo/nx_user.h -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/lib/stm32cubel4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/lib/stm32cubel4/CMakeLists.txt -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/lib/stm32cubel4/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/lib/stm32cubel4/CONTRIBUTING.md -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/lib/stm32cubel4/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/lib/stm32cubel4/License.md -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/lib/stm32cubel4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/lib/stm32cubel4/README.md -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/lib/stm32cubel4/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/lib/stm32cubel4/package.xml -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/lib/threadx/tx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/lib/threadx/tx_user.h -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/readme.md -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/tools/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/tools/flash.bat -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/tools/rebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/tools/rebuild.bat -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/vcpkg-configuration.json -------------------------------------------------------------------------------- /STMicroelectronics/B-L475E-IOT01A/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L475E-IOT01A/vscode.md -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/.vs/launch.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/.vs/launch.vs.json -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/.vscode/cmake-kits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/.vscode/cmake-kits.json -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/.vscode/extensions.json -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/.vscode/launch.json -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/.vscode/settings.json -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/.vscode/tasks.json -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/CMakeLists.txt -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/CMakePresets.json -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/STM32L4S5.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/STM32L4S5.svd -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/VS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/VS.md -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/app/CMakeLists.txt -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/app/azure_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/app/azure_config.h -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/app/azure_pnp_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/app/azure_pnp_info.h -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/app/board_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/app/board_init.c -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/app/board_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/app/board_init.h -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/app/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/app/console.c -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/app/main.c -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/app/nx_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/app/nx_client.c -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/app/nx_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/app/nx_client.h -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/app/stm_networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/app/stm_networking.c -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/app/stm_networking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/app/stm_networking.h -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/azure-pipelines.yml -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/lib/CMakeLists.txt -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/lib/netx_driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/lib/netx_driver/CMakeLists.txt -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/lib/netx_driver/inventek/wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/lib/netx_driver/inventek/wifi.c -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/lib/netx_driver/inventek/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/lib/netx_driver/inventek/wifi.h -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/lib/netxduo/nx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/lib/netxduo/nx_user.h -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/lib/stm32cubel4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/lib/stm32cubel4/CMakeLists.txt -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/lib/stm32cubel4/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/lib/stm32cubel4/CONTRIBUTING.md -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/lib/stm32cubel4/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/lib/stm32cubel4/License.md -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/lib/stm32cubel4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/lib/stm32cubel4/README.md -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/lib/stm32cubel4/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/lib/stm32cubel4/package.xml -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/lib/threadx/tx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/lib/threadx/tx_user.h -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/readme.md -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/tools/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/tools/flash.bat -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/tools/rebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/tools/rebuild.bat -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/vcpkg-configuration.json -------------------------------------------------------------------------------- /STMicroelectronics/B-L4S5I-IOT01A/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-L4S5I-IOT01A/vscode.md -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/.vs/launch.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/.vs/launch.vs.json -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/.vscode/launch.json -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/.vscode/settings.json -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/.vscode/tasks.json -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/CMakeLists.txt -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/CMakePresets.json -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/README.md -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/STM32U5xx.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/STM32U5xx.svd -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/app/CMakeLists.txt -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/app/azure_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/app/azure_config.h -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/app/azure_pnp_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/app/azure_pnp_info.h -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/app/board_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/app/board_init.c -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/app/board_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/app/board_init.h -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/app/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/app/console.c -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/app/main.c -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/app/nx_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/app/nx_client.c -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/app/nx_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/app/nx_client.h -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/app/stm_networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/app/stm_networking.c -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/app/stm_networking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/app/stm_networking.h -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/lib/CMakeLists.txt -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/lib/netxduo/nx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/lib/netxduo/nx_user.h -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/lib/stm32cubeu5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/lib/stm32cubeu5/CMakeLists.txt -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/lib/stm32cubeu5/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/lib/stm32cubeu5/LICENSE.md -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/lib/stm32cubeu5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/lib/stm32cubeu5/README.md -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/lib/stm32cubeu5/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/lib/stm32cubeu5/package.xml -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/lib/threadx/tx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/lib/threadx/tx_user.h -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/tools/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/tools/flash.bat -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/tools/rebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/tools/rebuild.bat -------------------------------------------------------------------------------- /STMicroelectronics/B-U585I-IOT02A/vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/B-U585I-IOT02A/vcpkg-configuration.json -------------------------------------------------------------------------------- /STMicroelectronics/STM32L4_L4+/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/STMicroelectronics/STM32L4_L4+/readme.md -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/.vscode/EFR32MG12P332F1024GM48.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/.vscode/EFR32MG12P332F1024GM48.svd -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/.vscode/cmake-kits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/.vscode/cmake-kits.json -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/.vscode/flash.jlink: -------------------------------------------------------------------------------- 1 | loadfile build/app/efr32mg12_azure_iot.hex 2 | r0 3 | q -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/.vscode/launch.json -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/.vscode/tasks.json -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/CMakeLists.txt -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/CMakePresets.json -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/EFM32MG12.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/EFM32MG12.code-workspace -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/CMakeLists.txt -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/azure_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/azure_config.h -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/azure_device_x509_cert_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/azure_device_x509_cert_config.h -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/azure_pnp_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/azure_pnp_info.h -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/console.c -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/main.c -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/nx_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/nx_client.c -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/nx_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/nx_client.h -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/pds/brd4001a_pds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/pds/brd4001a_pds.h -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/pds/brd8022a_pds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/pds/brd8022a_pds.h -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/pds/brd8023a_pds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/pds/brd8023a_pds.h -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/sl_wfx_host/sl_wfx_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/sl_wfx_host/sl_wfx_host.c -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/sl_wfx_host/sl_wfx_host_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/sl_wfx_host/sl_wfx_host_bus.c -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/sl_wfx_host/sl_wfx_host_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/sl_wfx_host/sl_wfx_host_cfg.h -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/sl_wfx_host/sl_wfx_host_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/sl_wfx_host/sl_wfx_host_gpio.c -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/sl_wfx_host/sl_wfx_host_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/sl_wfx_host/sl_wfx_host_gpio.h -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/sl_wfx_host/sl_wfx_host_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/sl_wfx_host/sl_wfx_host_spi.c -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/sl_wfx_host/sl_wfx_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/sl_wfx_host/sl_wfx_task.c -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/sl_wfx_host/sl_wfx_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/sl_wfx_host/sl_wfx_task.h -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/startup/efr32mg12p.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/startup/efr32mg12p.ld -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/startup/startup_efr32mg12p.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/startup/startup_efr32mg12p.S -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/startup/system_efr32mg12p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/startup/system_efr32mg12p.c -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/app/startup/tx_initialize_low_level.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/app/startup/tx_initialize_low_level.S -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/lib/CMakeLists.txt -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/lib/netx_driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/lib/netx_driver/CMakeLists.txt -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/lib/netx_driver/src/nx_sl_wfx_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/lib/netx_driver/src/nx_sl_wfx_driver.c -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/lib/netx_driver/src/nx_sl_wfx_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/lib/netx_driver/src/nx_sl_wfx_driver.h -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/lib/netxduo/nx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/lib/netxduo/nx_user.h -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/lib/threadx/tx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/lib/threadx/tx_user.h -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/media/Simplicity_Commander.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/media/Simplicity_Commander.PNG -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/media/azure-iot-central-device-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/media/azure-iot-central-device-about.png -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/media/azure-iot-central-invoke-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/media/azure-iot-central-invoke-method.png -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/media/efr32mg12-dev-kit.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/media/efr32mg12-dev-kit.PNG -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/media/iotcentralcreate-custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/media/iotcentralcreate-custom.png -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/media/iotcentralcreate-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/media/iotcentralcreate-device.png -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/media/iotcentraldevice-connection-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/media/iotcentraldevice-connection-info.png -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/media/termite-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/media/termite-settings.png -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/media/tool_simplicity_studio.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/media/tool_simplicity_studio.PNG -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/readme.md -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/tools/rebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/tools/rebuild.bat -------------------------------------------------------------------------------- /SiliconLabs/EFR32MG12/tools/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/SiliconLabs/EFR32MG12/tools/rebuild.sh -------------------------------------------------------------------------------- /cmake/arm-gcc-cortex-m33.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/cmake/arm-gcc-cortex-m33.cmake -------------------------------------------------------------------------------- /cmake/arm-gcc-cortex-m4.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/cmake/arm-gcc-cortex-m4.cmake -------------------------------------------------------------------------------- /cmake/arm-gcc-cortex-m7.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/cmake/arm-gcc-cortex-m7.cmake -------------------------------------------------------------------------------- /cmake/arm-gcc-cortex-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/cmake/arm-gcc-cortex-toolchain.cmake -------------------------------------------------------------------------------- /cmake/arm-iar-cortex-m33.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/cmake/arm-iar-cortex-m33.cmake -------------------------------------------------------------------------------- /cmake/arm-iar-cortex-m4.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/cmake/arm-iar-cortex-m4.cmake -------------------------------------------------------------------------------- /cmake/arm-iar-cortex-m7.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/cmake/arm-iar-cortex-m7.cmake -------------------------------------------------------------------------------- /cmake/arm-iar-cortex-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/cmake/arm-iar-cortex-toolchain.cmake -------------------------------------------------------------------------------- /cmake/ninja.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/cmake/ninja.exe -------------------------------------------------------------------------------- /cmake/renesas-rx-gcc-rx65n.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/cmake/renesas-rx-gcc-rx65n.cmake -------------------------------------------------------------------------------- /cmake/renesas-rx-gcc-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/cmake/renesas-rx-gcc-toolchain.cmake -------------------------------------------------------------------------------- /cmake/utilities.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/cmake/utilities.cmake -------------------------------------------------------------------------------- /docs/debugging-codespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/debugging-codespaces.md -------------------------------------------------------------------------------- /docs/debugging-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/debugging-container.md -------------------------------------------------------------------------------- /docs/debugging-local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/debugging-local.md -------------------------------------------------------------------------------- /docs/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/debugging.md -------------------------------------------------------------------------------- /docs/media/azure-iot-explorer-add-device-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/azure-iot-explorer-add-device-model.png -------------------------------------------------------------------------------- /docs/media/azure-iot-explorer-pnp-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/azure-iot-explorer-pnp-components.png -------------------------------------------------------------------------------- /docs/media/azure-iot-explorer-send-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/azure-iot-explorer-send-command.png -------------------------------------------------------------------------------- /docs/media/azure-iot-explorer-writable-property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/azure-iot-explorer-writable-property.png -------------------------------------------------------------------------------- /docs/media/docs-link-buttons/azure-documentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/docs-link-buttons/azure-documentation.svg -------------------------------------------------------------------------------- /docs/media/docs-link-buttons/azure-how-to-guide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/docs-link-buttons/azure-how-to-guide.svg -------------------------------------------------------------------------------- /docs/media/docs-link-buttons/azure-quickstart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/docs-link-buttons/azure-quickstart.svg -------------------------------------------------------------------------------- /docs/media/docs-link-buttons/azure-tutorial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/docs-link-buttons/azure-tutorial.svg -------------------------------------------------------------------------------- /docs/media/dps-add-individual-enrollment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/dps-add-individual-enrollment.png -------------------------------------------------------------------------------- /docs/media/dps-manage-enrollments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/dps-manage-enrollments.png -------------------------------------------------------------------------------- /docs/media/vs-configuration-m4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vs-configuration-m4.png -------------------------------------------------------------------------------- /docs/media/vs-configuration-m7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vs-configuration-m7.png -------------------------------------------------------------------------------- /docs/media/vs-debug-target-az3166.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vs-debug-target-az3166.png -------------------------------------------------------------------------------- /docs/media/vs-debug-target-mimxrt1060evk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vs-debug-target-mimxrt1060evk.png -------------------------------------------------------------------------------- /docs/media/vs-debug-target-stm32l4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vs-debug-target-stm32l4.png -------------------------------------------------------------------------------- /docs/media/vs-preset-configuration-m4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vs-preset-configuration-m4.png -------------------------------------------------------------------------------- /docs/media/vs-preset-configuration-m7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vs-preset-configuration-m7.png -------------------------------------------------------------------------------- /docs/media/vscode-az3166-cmake-kit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vscode-az3166-cmake-kit.png -------------------------------------------------------------------------------- /docs/media/vscode-az3166-configure-preset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vscode-az3166-configure-preset.png -------------------------------------------------------------------------------- /docs/media/vscode-az3166-launch-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vscode-az3166-launch-configuration.png -------------------------------------------------------------------------------- /docs/media/vscode-build-preset-m7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vscode-build-preset-m7.png -------------------------------------------------------------------------------- /docs/media/vscode-build-preset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vscode-build-preset.png -------------------------------------------------------------------------------- /docs/media/vscode-mimxrt1060evk-cmake-kit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vscode-mimxrt1060evk-cmake-kit.png -------------------------------------------------------------------------------- /docs/media/vscode-mimxrt1060evk-configure-preset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vscode-mimxrt1060evk-configure-preset.png -------------------------------------------------------------------------------- /docs/media/vscode-mimxrt1060evk-launch-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vscode-mimxrt1060evk-launch-configuration.png -------------------------------------------------------------------------------- /docs/media/vscode-recommended-extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vscode-recommended-extensions.png -------------------------------------------------------------------------------- /docs/media/vscode-stm32l4-cmake-kit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vscode-stm32l4-cmake-kit.png -------------------------------------------------------------------------------- /docs/media/vscode-stm32l4-configure-preset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vscode-stm32l4-configure-preset.png -------------------------------------------------------------------------------- /docs/media/vscode-stm32l4-launch-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/media/vscode-stm32l4-launch-configuration.png -------------------------------------------------------------------------------- /docs/plugandplay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/plugandplay.md -------------------------------------------------------------------------------- /docs/sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/sources.md -------------------------------------------------------------------------------- /docs/using-azure-rtos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/using-azure-rtos.md -------------------------------------------------------------------------------- /docs/using-self-signed-x509-certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/docs/using-self-signed-x509-certificates.md -------------------------------------------------------------------------------- /mlc_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliveStatusCodes": [0, 200] 3 | } -------------------------------------------------------------------------------- /shared/lib/jsmn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/lib/jsmn/CMakeLists.txt -------------------------------------------------------------------------------- /shared/lib/jsmn/jsmn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/lib/jsmn/jsmn.c -------------------------------------------------------------------------------- /shared/model/deviceinformation-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/model/deviceinformation-1.json -------------------------------------------------------------------------------- /shared/model/gsg-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/model/gsg-1.json -------------------------------------------------------------------------------- /shared/model/gsg-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/model/gsg-2.json -------------------------------------------------------------------------------- /shared/model/gsgmqtt-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/model/gsgmqtt-1.json -------------------------------------------------------------------------------- /shared/model/gsgmxchip-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/model/gsgmxchip-1.json -------------------------------------------------------------------------------- /shared/model/gsgmxchip-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/model/gsgmxchip-2.json -------------------------------------------------------------------------------- /shared/model/gsgrx65ncloud-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/model/gsgrx65ncloud-1.json -------------------------------------------------------------------------------- /shared/model/gsgstml4s5-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/model/gsgstml4s5-2.json -------------------------------------------------------------------------------- /shared/model/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/model/readme.md -------------------------------------------------------------------------------- /shared/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/CMakeLists.txt -------------------------------------------------------------------------------- /shared/src/azure_iot_cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_cert.c -------------------------------------------------------------------------------- /shared/src/azure_iot_cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_cert.h -------------------------------------------------------------------------------- /shared/src/azure_iot_ciphersuites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_ciphersuites.c -------------------------------------------------------------------------------- /shared/src/azure_iot_ciphersuites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_ciphersuites.h -------------------------------------------------------------------------------- /shared/src/azure_iot_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_connect.c -------------------------------------------------------------------------------- /shared/src/azure_iot_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_connect.h -------------------------------------------------------------------------------- /shared/src/azure_iot_mqtt/azure_iot_dps_mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_mqtt/azure_iot_dps_mqtt.c -------------------------------------------------------------------------------- /shared/src/azure_iot_mqtt/azure_iot_dps_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_mqtt/azure_iot_dps_mqtt.h -------------------------------------------------------------------------------- /shared/src/azure_iot_mqtt/azure_iot_mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_mqtt/azure_iot_mqtt.c -------------------------------------------------------------------------------- /shared/src/azure_iot_mqtt/azure_iot_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_mqtt/azure_iot_mqtt.h -------------------------------------------------------------------------------- /shared/src/azure_iot_mqtt/hmac_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_mqtt/hmac_sha256.c -------------------------------------------------------------------------------- /shared/src/azure_iot_mqtt/hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_mqtt/hmac_sha256.h -------------------------------------------------------------------------------- /shared/src/azure_iot_mqtt/json_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_mqtt/json_utils.c -------------------------------------------------------------------------------- /shared/src/azure_iot_mqtt/json_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_mqtt/json_utils.h -------------------------------------------------------------------------------- /shared/src/azure_iot_mqtt/sas_token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_mqtt/sas_token.c -------------------------------------------------------------------------------- /shared/src/azure_iot_mqtt/sas_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_mqtt/sas_token.h -------------------------------------------------------------------------------- /shared/src/azure_iot_mqtt/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_mqtt/sha256.c -------------------------------------------------------------------------------- /shared/src/azure_iot_mqtt/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_mqtt/sha256.h -------------------------------------------------------------------------------- /shared/src/azure_iot_nx_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_nx_client.c -------------------------------------------------------------------------------- /shared/src/azure_iot_nx_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/azure_iot_nx_client.h -------------------------------------------------------------------------------- /shared/src/cmsis_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/cmsis_utils.h -------------------------------------------------------------------------------- /shared/src/networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/networking.c -------------------------------------------------------------------------------- /shared/src/networking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/networking.h -------------------------------------------------------------------------------- /shared/src/newlib_nano.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/newlib_nano.c -------------------------------------------------------------------------------- /shared/src/sntp_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/sntp_client.c -------------------------------------------------------------------------------- /shared/src/sntp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/shared/src/sntp_client.h -------------------------------------------------------------------------------- /tools/generate-device-key.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/tools/generate-device-key.ps1 -------------------------------------------------------------------------------- /tools/get-toolchain-rx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/tools/get-toolchain-rx.bat -------------------------------------------------------------------------------- /tools/get-toolchain-rx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/tools/get-toolchain-rx.ps1 -------------------------------------------------------------------------------- /tools/get-toolchain.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/tools/get-toolchain.bat -------------------------------------------------------------------------------- /tools/get-toolchain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/tools/get-toolchain.ps1 -------------------------------------------------------------------------------- /tools/get-toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-threadx/getting-started/HEAD/tools/get-toolchain.sh --------------------------------------------------------------------------------