├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── v7m └── ats-blinky │ ├── .gitignore │ ├── .gitlab-ci.yml │ ├── .gitlab │ ├── .gitkeep │ ├── ci │ │ └── pipeline │ │ │ ├── build-armclang.yml │ │ │ └── build-gcc.yml │ ├── issue_templates │ │ └── .gitkeep │ └── merge_request_templates │ │ └── .gitkeep │ ├── .gitmodules │ ├── .pre-commit-config.yaml │ ├── CMakeLists.txt │ ├── CODEOWNERS │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── DCO.txt │ ├── LICENSE-apache-2.0.txt │ ├── LICENSE.md │ ├── README.md │ ├── bsp │ ├── an386 │ │ ├── CMakeLists.txt │ │ ├── bsp.c │ │ ├── bsp.h │ │ ├── linker.ld │ │ ├── linker.sct │ │ └── startup_ARMCM4.c │ └── an552 │ │ ├── CMakeLists.txt │ │ ├── bsp.c │ │ ├── bsp.h │ │ ├── linker.ld │ │ ├── linker.sct │ │ └── startup_ARMCM55.c │ ├── freertos-config │ └── FreeRTOSConfig.h │ └── src │ └── main.c └── v8m ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CMakeLists.txt ├── CODEOWNERS ├── CONTRIBUTING.md ├── DCO.txt ├── LICENSE-apache-2.0.txt ├── LICENSE.md ├── README.md ├── ats.sh ├── bsp ├── CMakeLists.txt ├── an552_ns.sct ├── an555_ns.sct ├── aws_configs │ ├── CMakeLists.txt │ ├── FreeRTOSIPConfig.h │ ├── aws_demo.h │ ├── aws_demo_config.h │ ├── aws_iot_metrics.h │ ├── aws_iot_network_config.h │ ├── aws_mqtt_config.h │ ├── aws_ota_agent_config.h │ ├── aws_secure_sockets_config.h │ ├── aws_wifi_connect_task.h │ ├── core_http_config.h │ ├── core_mqtt_config.h │ ├── core_pkcs11_config.h │ ├── device_cfg.h │ ├── iot_ble_gatt_server_demo.h │ ├── iot_ble_numericComparison.h │ ├── iot_config.h │ ├── iot_config_common.h │ ├── iot_demo_logging.h │ ├── iot_demo_runner.h │ ├── iot_mqtt_agent_config.h │ ├── iot_mqtt_config.h │ ├── iot_secure_sockets_config.h │ ├── mqtt_agent_demo_config.h │ ├── mqtt_demo_mutual_auth_config.h │ ├── ota_config.h │ └── ota_demo_config.h ├── cmsis-config │ ├── RTE_Components.h │ ├── RTOS_config.h │ ├── basetypes.h │ └── heap-alloc.c ├── default_credentials │ ├── aws_clientcredential.h │ ├── aws_clientcredential_keys.h │ ├── azure_iot_credentials.h │ └── iothub_credentials.h ├── ethos-u55 │ ├── an552 │ │ └── ethos-u55.h │ └── an555 │ │ └── ethos-u55.h ├── freertos-config │ ├── FreeRTOSConfig.h │ └── portmacro.h ├── lwip-config │ └── user_lwipopts.h ├── mbedtls_config │ ├── CMakeLists.txt │ ├── README.md │ ├── aws_mbedtls_config.h │ └── threading_alt.h ├── netxduo-config │ ├── nx_azure_iot_cert.c │ ├── nx_azure_iot_cert.h │ ├── nx_azure_iot_ciphersuites.c │ ├── nx_azure_iot_ciphersuites.h │ ├── nx_user.h │ └── sample_azure_iot_embedded_sdk_connect.c ├── platform │ ├── application_helpers.c │ ├── bsp_serial.c │ ├── bsp_serial.h │ ├── print_log.c │ └── print_log.h ├── signing_layout_ns.c ├── signing_layout_ns_update.c ├── signing_layout_s.c ├── signing_layout_s_update.c ├── tf_m_targets │ └── arm │ │ └── mps3 │ │ ├── an552 │ │ ├── CMakeLists.txt │ │ ├── cmsis_drivers │ │ │ ├── Driver_AN552_MPC.c │ │ │ ├── Driver_Flash.c │ │ │ ├── Driver_SSE300_PPC.c │ │ │ ├── Driver_SSE300_PPC.h │ │ │ ├── Driver_USART.c │ │ │ └── config │ │ │ │ ├── RTE_Device.h │ │ │ │ └── cmsis_driver_config.h │ │ ├── config.cmake │ │ ├── device │ │ │ ├── config │ │ │ │ └── device_cfg.h │ │ │ ├── include │ │ │ │ ├── an552.h │ │ │ │ ├── cmsis.h │ │ │ │ ├── device_definition.h │ │ │ │ ├── platform_irq.h │ │ │ │ ├── platform_pins.h │ │ │ │ ├── platform_regs.h │ │ │ │ └── system_core_init.h │ │ │ └── source │ │ │ │ ├── an552_ns_init.c │ │ │ │ ├── device_definition.c │ │ │ │ ├── startup_an552.c │ │ │ │ └── system_core_init.c │ │ ├── faults.c │ │ ├── mmio_defs.h │ │ ├── native_drivers │ │ │ ├── emulated_flash_drv.c │ │ │ ├── emulated_flash_drv.h │ │ │ ├── mpc_sie_drv.c │ │ │ ├── mpc_sie_drv.h │ │ │ ├── mpu_armv8m_drv.c │ │ │ ├── mpu_armv8m_drv.h │ │ │ ├── ppc_sse300_drv.c │ │ │ ├── ppc_sse300_drv.h │ │ │ ├── syscounter_armv8-m_cntrl_drv.c │ │ │ ├── syscounter_armv8-m_cntrl_drv.h │ │ │ ├── systimer_armv8-m_drv.c │ │ │ ├── systimer_armv8-m_drv.h │ │ │ ├── uart_cmsdk_drv.c │ │ │ └── uart_cmsdk_drv.h │ │ ├── partition │ │ │ ├── flash_layout.h │ │ │ ├── platform_base_address.h │ │ │ └── region_defs.h │ │ ├── plat_test.c │ │ ├── preload.cmake │ │ ├── services │ │ │ └── src │ │ │ │ └── tfm_platform_system.c │ │ ├── target_cfg.c │ │ ├── target_cfg.h │ │ ├── tfm_hal_isolation.c │ │ ├── tfm_hal_platform.c │ │ ├── tfm_interrupts.c │ │ ├── tfm_peripherals_def.c │ │ └── tfm_peripherals_def.h │ │ └── corstone310 │ │ ├── common │ │ ├── check_config.cmake │ │ ├── cmsis_drivers │ │ │ ├── Driver_Flash.c │ │ │ ├── Driver_MPC.c │ │ │ ├── Driver_MPC_Common.h │ │ │ ├── Driver_PPC.c │ │ │ ├── Driver_PPC.h │ │ │ ├── Driver_PPC_Common.h │ │ │ ├── Driver_TGU.c │ │ │ ├── Driver_TGU_Common.h │ │ │ ├── Driver_USART.c │ │ │ └── config │ │ │ │ ├── non_secure │ │ │ │ ├── RTE_Device.h │ │ │ │ └── cmsis_driver_config.h │ │ │ │ └── secure │ │ │ │ ├── RTE_Device.h │ │ │ │ └── cmsis_driver_config.h │ │ ├── common.cmake │ │ ├── config.cmake │ │ ├── device │ │ │ ├── include │ │ │ │ ├── cmsis.h │ │ │ │ ├── corstone310.h │ │ │ │ ├── platform_description.h │ │ │ │ ├── platform_irq.h │ │ │ │ ├── platform_ns_device_definition.h │ │ │ │ ├── platform_pins.h │ │ │ │ ├── platform_regs.h │ │ │ │ ├── platform_s_device_definition.h │ │ │ │ ├── power_control.h │ │ │ │ └── system_core_init.h │ │ │ └── source │ │ │ │ ├── platform_ns_device_definition.c │ │ │ │ ├── platform_s_device_definition.c │ │ │ │ ├── startup_corstone310.c │ │ │ │ └── system_core_init.c │ │ ├── faults.c │ │ ├── mmio_defs.h │ │ ├── native_drivers │ │ │ ├── mpc_sie_drv.c │ │ │ ├── mpc_sie_drv.h │ │ │ ├── mpc_sie_reg_map.h │ │ │ ├── mpu_armv8m_drv.c │ │ │ ├── mpu_armv8m_drv.h │ │ │ ├── ppc_corstone310_drv.c │ │ │ ├── ppc_corstone310_drv.h │ │ │ ├── ppc_corstone310_reg_map.h │ │ │ ├── syscounter_armv8-m_cntrl_drv.c │ │ │ ├── syscounter_armv8-m_cntrl_drv.h │ │ │ ├── syscounter_armv8-m_cntrl_reg_map.h │ │ │ ├── systimer_armv8-m_drv.c │ │ │ ├── systimer_armv8-m_drv.h │ │ │ ├── systimer_armv8-m_reg_map.h │ │ │ ├── tgu_armv8_m_drv.c │ │ │ ├── tgu_armv8_m_drv.h │ │ │ ├── uart_cmsdk_drv.c │ │ │ ├── uart_cmsdk_drv.h │ │ │ └── uart_cmsdk_reg_map.h │ │ ├── partition │ │ │ ├── flash_layout.h │ │ │ ├── platform_base_address.h │ │ │ └── region_defs.h │ │ ├── plat_test.c │ │ ├── preload.cmake │ │ ├── services │ │ │ └── src │ │ │ │ └── tfm_platform_system.c │ │ ├── target_cfg.c │ │ ├── target_cfg.h │ │ ├── tfm_hal_isolation.c │ │ ├── tfm_hal_platform.c │ │ ├── tfm_interrupts.c │ │ └── tfm_peripherals_def.h │ │ └── fvp │ │ ├── CMakeLists.txt │ │ ├── check_config.cmake │ │ ├── config.cmake │ │ ├── device │ │ ├── config │ │ │ └── device_cfg.h │ │ └── source │ │ │ ├── dma350_address_remap.c │ │ │ └── dma350_checker_device_defs.c │ │ ├── dma_init.c │ │ ├── libraries │ │ ├── dma350_checker_layer.c │ │ ├── dma350_checker_layer.h │ │ ├── dma350_lib.c │ │ ├── dma350_lib.h │ │ └── dma350_privileged_config.h │ │ ├── native_drivers │ │ ├── dma350_ch_drv.c │ │ ├── dma350_ch_drv.h │ │ ├── dma350_drv.c │ │ ├── dma350_drv.h │ │ └── dma350_regdef.h │ │ ├── platform_svc_handler.c │ │ ├── platform_svc_numbers.h │ │ └── preload.cmake ├── tfm-config │ └── project_config.h ├── tfm_s.sct └── threadx-config │ └── tx_user.h ├── ci ├── avh.yml ├── aws_cleanup.py ├── build_examples.sh ├── cleanup_avh_instances.py └── generate_credentials.sh ├── compile_commands.json ├── conftest.py ├── examples ├── blinky │ ├── CMakeLists.txt │ ├── README.md │ ├── main.c │ └── tests │ │ └── test_blinky.py ├── keyword │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── include │ │ ├── azure_netx_config.h │ │ ├── blink_task.h │ │ └── ml_interface.h │ ├── source │ │ ├── aws_demo.c │ │ ├── azure_demo.c │ │ ├── azure_netxduo_demo.c │ │ ├── blink_task.c │ │ ├── ethosu_platform_adaptation.c │ │ ├── main_ns.c │ │ ├── ml_interface.cc │ │ ├── model_config.cc │ │ └── peripheral_memmap.h │ ├── test.wav │ └── tests │ │ ├── aws_test_util.py │ │ ├── conftest.py │ │ ├── test.wav │ │ ├── test_azure.py │ │ ├── test_ml.py │ │ └── test_ota.py └── speech │ ├── CMakeLists.txt │ ├── README.md │ ├── include │ ├── audio_config.h │ ├── azure_netx_config.h │ ├── blink_task.h │ ├── dsp │ │ ├── AppNodes.h │ │ ├── GenericNodes.h │ │ └── dsp_interfaces.h │ ├── dsp_task.h │ ├── ml_interface.h │ └── model_config.h │ ├── source │ ├── aws_demo.c │ ├── azure_demo.c │ ├── azure_netxduo_demo.c │ ├── blink_task.c │ ├── dsp │ │ ├── dsp_interfaces.cpp │ │ ├── dsp_task.cpp │ │ ├── scheduler.cpp │ │ └── scheduler.h │ ├── ethosu_platform_adaptation.c │ ├── main_ns.c │ ├── ml_interface.cc │ ├── model_config.cc │ └── peripheral_memmap.h │ ├── test.wav │ └── tests │ ├── aws_test_util.py │ ├── conftest.py │ ├── test.wav │ ├── test_azure.py │ ├── test_ml.py │ └── test_ota.py ├── lib ├── AVH │ └── audio │ │ └── arm_vsi0.py ├── AWS │ ├── CMakeLists.txt │ ├── PKCS11 │ │ └── CMakeLists.txt │ ├── aws_libraries │ │ ├── 3rdparty │ │ │ └── mbedtls_utils │ │ │ │ ├── mbedtls_error.c │ │ │ │ └── mbedtls_utils.c │ │ ├── abstractions │ │ │ ├── mqtt_agent │ │ │ │ ├── freertos_agent_message.c │ │ │ │ ├── freertos_command_pool.c │ │ │ │ └── include │ │ │ │ │ ├── freertos_agent_message.h │ │ │ │ │ └── freertos_command_pool.h │ │ │ ├── pkcs11 │ │ │ │ ├── corePKCS11 │ │ │ │ │ └── source │ │ │ │ │ │ └── dependency │ │ │ │ │ │ └── 3rdparty │ │ │ │ │ │ └── mbedtls_utils │ │ │ │ │ │ └── mbedtls_error.h │ │ │ │ └── psa │ │ │ │ │ ├── iot_pkcs11_psa.c │ │ │ │ │ ├── iot_pkcs11_psa_input_format.c │ │ │ │ │ ├── iot_pkcs11_psa_input_format.h │ │ │ │ │ ├── iot_pkcs11_psa_object_management.c │ │ │ │ │ └── iot_pkcs11_psa_object_management.h │ │ │ ├── platform │ │ │ │ ├── freertos │ │ │ │ │ ├── include │ │ │ │ │ │ └── platform │ │ │ │ │ │ │ ├── iot_network.h │ │ │ │ │ │ │ ├── iot_network_ble.h │ │ │ │ │ │ │ ├── iot_network_freertos.h │ │ │ │ │ │ │ └── iot_platform_types_freertos.h │ │ │ │ │ ├── iot_clock_freertos.c │ │ │ │ │ ├── iot_metrics.c │ │ │ │ │ ├── iot_network_freertos.c │ │ │ │ │ └── iot_threads_freertos.c │ │ │ │ └── include │ │ │ │ │ ├── platform │ │ │ │ │ ├── iot_clock.h │ │ │ │ │ ├── iot_metrics.h │ │ │ │ │ ├── iot_network.h │ │ │ │ │ └── iot_threads.h │ │ │ │ │ └── types │ │ │ │ │ ├── iot_network_types.h │ │ │ │ │ └── iot_platform_types.h │ │ │ ├── secure_sockets │ │ │ │ ├── include │ │ │ │ │ ├── iot_secure_sockets.h │ │ │ │ │ ├── iot_secure_sockets_config_defaults.h │ │ │ │ │ └── iot_secure_sockets_wrapper_metrics.h │ │ │ │ └── lwip │ │ │ │ │ └── iot_secure_sockets.c │ │ │ └── transport │ │ │ │ └── secure_sockets │ │ │ │ ├── transport_secure_sockets.c │ │ │ │ └── transport_secure_sockets.h │ │ ├── c_sdk │ │ │ └── standard │ │ │ │ ├── common │ │ │ │ ├── include │ │ │ │ │ ├── iot_atomic.h │ │ │ │ │ ├── iot_init.h │ │ │ │ │ ├── iot_linear_containers.h │ │ │ │ │ ├── iot_logging_setup.h │ │ │ │ │ ├── iot_taskpool.h │ │ │ │ │ ├── private │ │ │ │ │ │ ├── iot_default_root_certificates.h │ │ │ │ │ │ ├── iot_doubly_linked_list.h │ │ │ │ │ │ ├── iot_error.h │ │ │ │ │ │ ├── iot_logging.h │ │ │ │ │ │ ├── iot_static_memory.h │ │ │ │ │ │ └── iot_taskpool_internal.h │ │ │ │ │ └── types │ │ │ │ │ │ └── iot_taskpool_types.h │ │ │ │ ├── iot_device_metrics.c │ │ │ │ ├── iot_init.c │ │ │ │ ├── iot_static_memory_common.c │ │ │ │ └── taskpool │ │ │ │ │ ├── iot_taskpool.c │ │ │ │ │ └── iot_taskpool_static_memory.c │ │ │ │ ├── https │ │ │ │ ├── include │ │ │ │ │ ├── iot_https_client.h │ │ │ │ │ ├── iot_https_utils.h │ │ │ │ │ └── types │ │ │ │ │ │ └── iot_https_types.h │ │ │ │ └── src │ │ │ │ │ └── private │ │ │ │ │ └── iot_https_internal.h │ │ │ │ └── mqtt │ │ │ │ └── include │ │ │ │ ├── iot_mqtt.h │ │ │ │ ├── iot_mqtt_agent_config_defaults.h │ │ │ │ ├── iot_mqtt_config_defaults.h │ │ │ │ ├── iot_mqtt_lib.h │ │ │ │ └── types │ │ │ │ └── iot_mqtt_types.h │ │ ├── demos │ │ │ ├── common │ │ │ │ ├── http_demo_helpers │ │ │ │ │ ├── http_demo_utils.c │ │ │ │ │ └── http_demo_utils.h │ │ │ │ ├── mqtt_demo_helpers │ │ │ │ │ └── mqtt_demo_helpers.h │ │ │ │ ├── mqtt_subscription_manager │ │ │ │ │ ├── mqtt_subscription_manager.c │ │ │ │ │ └── mqtt_subscription_manager.h │ │ │ │ ├── ota_demo_helpers │ │ │ │ │ └── ota_application_version.c │ │ │ │ └── pkcs11_helpers │ │ │ │ │ ├── pkcs11_helpers.c │ │ │ │ │ └── pkcs11_helpers.h │ │ │ ├── coreMQTT_Agent │ │ │ │ └── subscription_manager.h │ │ │ ├── demo_runner │ │ │ │ ├── iot_demo_freertos.c │ │ │ │ └── iot_demo_runner.c │ │ │ ├── dev_mode_key_provisioning │ │ │ │ ├── include │ │ │ │ │ └── aws_dev_mode_key_provisioning.h │ │ │ │ └── src │ │ │ │ │ └── aws_dev_mode_key_provisioning.c │ │ │ └── network_manager │ │ │ │ ├── aws_iot_network_manager.c │ │ │ │ └── iot_network_manager_private.h │ │ ├── freertos_plus │ │ │ └── standard │ │ │ │ ├── crypto │ │ │ │ ├── include │ │ │ │ │ └── iot_crypto.h │ │ │ │ └── src │ │ │ │ │ └── iot_crypto.c │ │ │ │ └── tls │ │ │ │ ├── include │ │ │ │ └── iot_tls.h │ │ │ │ └── src │ │ │ │ └── iot_tls.c │ │ └── logging │ │ │ ├── include │ │ │ ├── iot_logging_task.h │ │ │ ├── logging_levels.h │ │ │ └── logging_stack.h │ │ │ ├── iot_logging.c │ │ │ └── iot_logging_task_dynamic_buffers.c │ ├── coreMQTT-Agent │ │ └── CMakeLists.txt │ ├── ota │ │ ├── ota_demo_core_mqtt.c │ │ ├── ota_pal_psa │ │ │ ├── License.md │ │ │ ├── README.md │ │ │ ├── ota_pal.c │ │ │ ├── ota_pal.h │ │ │ └── version │ │ │ │ ├── application_version.c │ │ │ │ └── application_version.h │ │ └── provision │ │ │ ├── ota_provision.c │ │ │ └── ota_provision.h │ ├── ota_for_aws │ │ ├── CMakeLists.txt │ │ ├── ota_os_cmsisrtos.c │ │ └── ota_os_cmsisrtos.h │ └── tinycbor │ │ └── CMakeLists.txt ├── SpeexDSP │ ├── CMakeLists.txt │ ├── config.h │ ├── os_support_custom.h │ └── speexdsp_config_types.h └── ml-kit │ ├── CMakeLists.txt │ └── ml-embedded-evaluation-kit.patch ├── mlia ├── README.md ├── mlia.sh └── tests │ └── test_ats_mlia.py ├── release-changes └── README.md ├── resources └── Keyword-detection-overview.png └── scripts ├── build.sh ├── run.sh └── vht_cli.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/README.md -------------------------------------------------------------------------------- /v7m/ats-blinky/.gitignore: -------------------------------------------------------------------------------- 1 | .gdb_history 2 | __build*/ 3 | -------------------------------------------------------------------------------- /v7m/ats-blinky/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/.gitlab-ci.yml -------------------------------------------------------------------------------- /v7m/ats-blinky/.gitlab/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v7m/ats-blinky/.gitlab/ci/pipeline/build-armclang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/.gitlab/ci/pipeline/build-armclang.yml -------------------------------------------------------------------------------- /v7m/ats-blinky/.gitlab/ci/pipeline/build-gcc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/.gitlab/ci/pipeline/build-gcc.yml -------------------------------------------------------------------------------- /v7m/ats-blinky/.gitlab/issue_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v7m/ats-blinky/.gitlab/merge_request_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v7m/ats-blinky/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/.gitmodules -------------------------------------------------------------------------------- /v7m/ats-blinky/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/.pre-commit-config.yaml -------------------------------------------------------------------------------- /v7m/ats-blinky/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/CMakeLists.txt -------------------------------------------------------------------------------- /v7m/ats-blinky/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Default codeowners for PRs 2 | * @Marcelo.Salazar 3 | * @Wilfried.Chauveau 4 | -------------------------------------------------------------------------------- /v7m/ats-blinky/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /v7m/ats-blinky/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/CONTRIBUTING.md -------------------------------------------------------------------------------- /v7m/ats-blinky/DCO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/DCO.txt -------------------------------------------------------------------------------- /v7m/ats-blinky/LICENSE-apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/LICENSE-apache-2.0.txt -------------------------------------------------------------------------------- /v7m/ats-blinky/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/LICENSE.md -------------------------------------------------------------------------------- /v7m/ats-blinky/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/README.md -------------------------------------------------------------------------------- /v7m/ats-blinky/bsp/an386/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/bsp/an386/CMakeLists.txt -------------------------------------------------------------------------------- /v7m/ats-blinky/bsp/an386/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/bsp/an386/bsp.c -------------------------------------------------------------------------------- /v7m/ats-blinky/bsp/an386/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/bsp/an386/bsp.h -------------------------------------------------------------------------------- /v7m/ats-blinky/bsp/an386/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/bsp/an386/linker.ld -------------------------------------------------------------------------------- /v7m/ats-blinky/bsp/an386/linker.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/bsp/an386/linker.sct -------------------------------------------------------------------------------- /v7m/ats-blinky/bsp/an386/startup_ARMCM4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/bsp/an386/startup_ARMCM4.c -------------------------------------------------------------------------------- /v7m/ats-blinky/bsp/an552/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/bsp/an552/CMakeLists.txt -------------------------------------------------------------------------------- /v7m/ats-blinky/bsp/an552/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/bsp/an552/bsp.c -------------------------------------------------------------------------------- /v7m/ats-blinky/bsp/an552/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/bsp/an552/bsp.h -------------------------------------------------------------------------------- /v7m/ats-blinky/bsp/an552/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/bsp/an552/linker.ld -------------------------------------------------------------------------------- /v7m/ats-blinky/bsp/an552/linker.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/bsp/an552/linker.sct -------------------------------------------------------------------------------- /v7m/ats-blinky/bsp/an552/startup_ARMCM55.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/bsp/an552/startup_ARMCM55.c -------------------------------------------------------------------------------- /v7m/ats-blinky/freertos-config/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/freertos-config/FreeRTOSConfig.h -------------------------------------------------------------------------------- /v7m/ats-blinky/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v7m/ats-blinky/src/main.c -------------------------------------------------------------------------------- /v8m/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/.gitignore -------------------------------------------------------------------------------- /v8m/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/.gitlab-ci.yml -------------------------------------------------------------------------------- /v8m/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/.gitmodules -------------------------------------------------------------------------------- /v8m/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/.pre-commit-config.yaml -------------------------------------------------------------------------------- /v8m/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/CHANGELOG.md -------------------------------------------------------------------------------- /v8m/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/CMakeLists.txt -------------------------------------------------------------------------------- /v8m/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/CODEOWNERS -------------------------------------------------------------------------------- /v8m/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/CONTRIBUTING.md -------------------------------------------------------------------------------- /v8m/DCO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/DCO.txt -------------------------------------------------------------------------------- /v8m/LICENSE-apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/LICENSE-apache-2.0.txt -------------------------------------------------------------------------------- /v8m/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/LICENSE.md -------------------------------------------------------------------------------- /v8m/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/README.md -------------------------------------------------------------------------------- /v8m/ats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/ats.sh -------------------------------------------------------------------------------- /v8m/bsp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/CMakeLists.txt -------------------------------------------------------------------------------- /v8m/bsp/an552_ns.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/an552_ns.sct -------------------------------------------------------------------------------- /v8m/bsp/an555_ns.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/an555_ns.sct -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/CMakeLists.txt -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/FreeRTOSIPConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/FreeRTOSIPConfig.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/aws_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/aws_demo.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/aws_demo_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/aws_demo_config.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/aws_iot_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/aws_iot_metrics.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/aws_iot_network_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/aws_iot_network_config.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/aws_mqtt_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/aws_mqtt_config.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/aws_ota_agent_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/aws_ota_agent_config.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/aws_secure_sockets_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/aws_secure_sockets_config.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/aws_wifi_connect_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/aws_wifi_connect_task.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/core_http_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/core_http_config.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/core_mqtt_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/core_mqtt_config.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/core_pkcs11_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/core_pkcs11_config.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/device_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/device_cfg.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/iot_ble_gatt_server_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/iot_ble_gatt_server_demo.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/iot_ble_numericComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/iot_ble_numericComparison.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/iot_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/iot_config.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/iot_config_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/iot_config_common.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/iot_demo_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/iot_demo_logging.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/iot_demo_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/iot_demo_runner.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/iot_mqtt_agent_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/iot_mqtt_agent_config.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/iot_mqtt_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/iot_mqtt_config.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/iot_secure_sockets_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/iot_secure_sockets_config.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/mqtt_agent_demo_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/mqtt_agent_demo_config.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/mqtt_demo_mutual_auth_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/mqtt_demo_mutual_auth_config.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/ota_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/ota_config.h -------------------------------------------------------------------------------- /v8m/bsp/aws_configs/ota_demo_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/aws_configs/ota_demo_config.h -------------------------------------------------------------------------------- /v8m/bsp/cmsis-config/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/cmsis-config/RTE_Components.h -------------------------------------------------------------------------------- /v8m/bsp/cmsis-config/RTOS_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/cmsis-config/RTOS_config.h -------------------------------------------------------------------------------- /v8m/bsp/cmsis-config/basetypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/cmsis-config/basetypes.h -------------------------------------------------------------------------------- /v8m/bsp/cmsis-config/heap-alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/cmsis-config/heap-alloc.c -------------------------------------------------------------------------------- /v8m/bsp/default_credentials/aws_clientcredential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/default_credentials/aws_clientcredential.h -------------------------------------------------------------------------------- /v8m/bsp/default_credentials/aws_clientcredential_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/default_credentials/aws_clientcredential_keys.h -------------------------------------------------------------------------------- /v8m/bsp/default_credentials/azure_iot_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/default_credentials/azure_iot_credentials.h -------------------------------------------------------------------------------- /v8m/bsp/default_credentials/iothub_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/default_credentials/iothub_credentials.h -------------------------------------------------------------------------------- /v8m/bsp/ethos-u55/an552/ethos-u55.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/ethos-u55/an552/ethos-u55.h -------------------------------------------------------------------------------- /v8m/bsp/ethos-u55/an555/ethos-u55.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/ethos-u55/an555/ethos-u55.h -------------------------------------------------------------------------------- /v8m/bsp/freertos-config/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/freertos-config/FreeRTOSConfig.h -------------------------------------------------------------------------------- /v8m/bsp/freertos-config/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/freertos-config/portmacro.h -------------------------------------------------------------------------------- /v8m/bsp/lwip-config/user_lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/lwip-config/user_lwipopts.h -------------------------------------------------------------------------------- /v8m/bsp/mbedtls_config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/mbedtls_config/CMakeLists.txt -------------------------------------------------------------------------------- /v8m/bsp/mbedtls_config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/mbedtls_config/README.md -------------------------------------------------------------------------------- /v8m/bsp/mbedtls_config/aws_mbedtls_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/mbedtls_config/aws_mbedtls_config.h -------------------------------------------------------------------------------- /v8m/bsp/mbedtls_config/threading_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/mbedtls_config/threading_alt.h -------------------------------------------------------------------------------- /v8m/bsp/netxduo-config/nx_azure_iot_cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/netxduo-config/nx_azure_iot_cert.c -------------------------------------------------------------------------------- /v8m/bsp/netxduo-config/nx_azure_iot_cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/netxduo-config/nx_azure_iot_cert.h -------------------------------------------------------------------------------- /v8m/bsp/netxduo-config/nx_azure_iot_ciphersuites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/netxduo-config/nx_azure_iot_ciphersuites.c -------------------------------------------------------------------------------- /v8m/bsp/netxduo-config/nx_azure_iot_ciphersuites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/netxduo-config/nx_azure_iot_ciphersuites.h -------------------------------------------------------------------------------- /v8m/bsp/netxduo-config/nx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/netxduo-config/nx_user.h -------------------------------------------------------------------------------- /v8m/bsp/netxduo-config/sample_azure_iot_embedded_sdk_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/netxduo-config/sample_azure_iot_embedded_sdk_connect.c -------------------------------------------------------------------------------- /v8m/bsp/platform/application_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/platform/application_helpers.c -------------------------------------------------------------------------------- /v8m/bsp/platform/bsp_serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/platform/bsp_serial.c -------------------------------------------------------------------------------- /v8m/bsp/platform/bsp_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/platform/bsp_serial.h -------------------------------------------------------------------------------- /v8m/bsp/platform/print_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/platform/print_log.c -------------------------------------------------------------------------------- /v8m/bsp/platform/print_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/platform/print_log.h -------------------------------------------------------------------------------- /v8m/bsp/signing_layout_ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/signing_layout_ns.c -------------------------------------------------------------------------------- /v8m/bsp/signing_layout_ns_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/signing_layout_ns_update.c -------------------------------------------------------------------------------- /v8m/bsp/signing_layout_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/signing_layout_s.c -------------------------------------------------------------------------------- /v8m/bsp/signing_layout_s_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/signing_layout_s_update.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/CMakeLists.txt -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/cmsis_drivers/Driver_AN552_MPC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/cmsis_drivers/Driver_AN552_MPC.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/cmsis_drivers/Driver_Flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/cmsis_drivers/Driver_Flash.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/cmsis_drivers/Driver_SSE300_PPC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/cmsis_drivers/Driver_SSE300_PPC.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/cmsis_drivers/Driver_SSE300_PPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/cmsis_drivers/Driver_SSE300_PPC.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/cmsis_drivers/Driver_USART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/cmsis_drivers/Driver_USART.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/cmsis_drivers/config/RTE_Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/cmsis_drivers/config/RTE_Device.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/cmsis_drivers/config/cmsis_driver_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/cmsis_drivers/config/cmsis_driver_config.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/config.cmake -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/device/config/device_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/device/config/device_cfg.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/device/include/an552.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/device/include/an552.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/device/include/cmsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/device/include/cmsis.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/device/include/device_definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/device/include/device_definition.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/device/include/platform_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/device/include/platform_irq.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/device/include/platform_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/device/include/platform_pins.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/device/include/platform_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/device/include/platform_regs.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/device/include/system_core_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/device/include/system_core_init.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/device/source/an552_ns_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/device/source/an552_ns_init.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/device/source/device_definition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/device/source/device_definition.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/device/source/startup_an552.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/device/source/startup_an552.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/device/source/system_core_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/device/source/system_core_init.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/faults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/faults.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/mmio_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/mmio_defs.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/emulated_flash_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/emulated_flash_drv.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/emulated_flash_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/emulated_flash_drv.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/mpc_sie_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/mpc_sie_drv.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/mpc_sie_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/mpc_sie_drv.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/mpu_armv8m_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/mpu_armv8m_drv.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/mpu_armv8m_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/mpu_armv8m_drv.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/ppc_sse300_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/ppc_sse300_drv.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/ppc_sse300_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/ppc_sse300_drv.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/syscounter_armv8-m_cntrl_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/syscounter_armv8-m_cntrl_drv.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/syscounter_armv8-m_cntrl_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/syscounter_armv8-m_cntrl_drv.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/systimer_armv8-m_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/systimer_armv8-m_drv.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/systimer_armv8-m_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/systimer_armv8-m_drv.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/uart_cmsdk_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/uart_cmsdk_drv.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/uart_cmsdk_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/native_drivers/uart_cmsdk_drv.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/partition/flash_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/partition/flash_layout.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/partition/platform_base_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/partition/platform_base_address.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/partition/region_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/partition/region_defs.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/plat_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/plat_test.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/preload.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/preload.cmake -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/services/src/tfm_platform_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/services/src/tfm_platform_system.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/target_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/target_cfg.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/target_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/target_cfg.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/tfm_hal_isolation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/tfm_hal_isolation.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/tfm_hal_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/tfm_hal_platform.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/tfm_interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/tfm_interrupts.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/tfm_peripherals_def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/tfm_peripherals_def.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/an552/tfm_peripherals_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/an552/tfm_peripherals_def.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/check_config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/check_config.cmake -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_Flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_Flash.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_MPC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_MPC.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_MPC_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_MPC_Common.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_PPC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_PPC.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_PPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_PPC.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_PPC_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_PPC_Common.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_TGU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_TGU.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_TGU_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_TGU_Common.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_USART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/Driver_USART.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/config/non_secure/RTE_Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/config/non_secure/RTE_Device.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/config/non_secure/cmsis_driver_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/config/non_secure/cmsis_driver_config.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/config/secure/RTE_Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/config/secure/RTE_Device.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/config/secure/cmsis_driver_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/cmsis_drivers/config/secure/cmsis_driver_config.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/common.cmake -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/config.cmake -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/cmsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/cmsis.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/corstone310.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/corstone310.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/platform_description.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/platform_description.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/platform_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/platform_irq.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/platform_ns_device_definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/platform_ns_device_definition.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/platform_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/platform_pins.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/platform_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/platform_regs.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/platform_s_device_definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/platform_s_device_definition.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/power_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/power_control.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/system_core_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/include/system_core_init.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/source/platform_ns_device_definition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/source/platform_ns_device_definition.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/source/platform_s_device_definition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/source/platform_s_device_definition.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/source/startup_corstone310.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/source/startup_corstone310.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/source/system_core_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/device/source/system_core_init.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/faults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/faults.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/mmio_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/mmio_defs.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/mpc_sie_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/mpc_sie_drv.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/mpc_sie_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/mpc_sie_drv.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/mpc_sie_reg_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/mpc_sie_reg_map.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/mpu_armv8m_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/mpu_armv8m_drv.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/mpu_armv8m_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/mpu_armv8m_drv.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/ppc_corstone310_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/ppc_corstone310_drv.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/ppc_corstone310_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/ppc_corstone310_drv.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/ppc_corstone310_reg_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/ppc_corstone310_reg_map.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/syscounter_armv8-m_cntrl_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/syscounter_armv8-m_cntrl_drv.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/syscounter_armv8-m_cntrl_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/syscounter_armv8-m_cntrl_drv.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/syscounter_armv8-m_cntrl_reg_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/syscounter_armv8-m_cntrl_reg_map.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/systimer_armv8-m_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/systimer_armv8-m_drv.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/systimer_armv8-m_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/systimer_armv8-m_drv.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/systimer_armv8-m_reg_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/systimer_armv8-m_reg_map.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/tgu_armv8_m_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/tgu_armv8_m_drv.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/tgu_armv8_m_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/tgu_armv8_m_drv.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/uart_cmsdk_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/uart_cmsdk_drv.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/uart_cmsdk_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/uart_cmsdk_drv.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/uart_cmsdk_reg_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/native_drivers/uart_cmsdk_reg_map.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/partition/flash_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/partition/flash_layout.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/partition/platform_base_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/partition/platform_base_address.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/partition/region_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/partition/region_defs.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/plat_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/plat_test.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/preload.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/preload.cmake -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/services/src/tfm_platform_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/services/src/tfm_platform_system.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/target_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/target_cfg.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/target_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/target_cfg.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/tfm_hal_isolation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/tfm_hal_isolation.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/tfm_hal_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/tfm_hal_platform.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/tfm_interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/tfm_interrupts.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/tfm_peripherals_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/common/tfm_peripherals_def.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/CMakeLists.txt -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/check_config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/check_config.cmake -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/config.cmake -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/device/config/device_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/device/config/device_cfg.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/device/source/dma350_address_remap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/device/source/dma350_address_remap.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/device/source/dma350_checker_device_defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/device/source/dma350_checker_device_defs.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/dma_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/dma_init.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/libraries/dma350_checker_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/libraries/dma350_checker_layer.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/libraries/dma350_checker_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/libraries/dma350_checker_layer.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/libraries/dma350_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/libraries/dma350_lib.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/libraries/dma350_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/libraries/dma350_lib.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/libraries/dma350_privileged_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/libraries/dma350_privileged_config.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/native_drivers/dma350_ch_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/native_drivers/dma350_ch_drv.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/native_drivers/dma350_ch_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/native_drivers/dma350_ch_drv.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/native_drivers/dma350_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/native_drivers/dma350_drv.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/native_drivers/dma350_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/native_drivers/dma350_drv.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/native_drivers/dma350_regdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/native_drivers/dma350_regdef.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/platform_svc_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/platform_svc_handler.c -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/platform_svc_numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/platform_svc_numbers.h -------------------------------------------------------------------------------- /v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/preload.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tf_m_targets/arm/mps3/corstone310/fvp/preload.cmake -------------------------------------------------------------------------------- /v8m/bsp/tfm-config/project_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tfm-config/project_config.h -------------------------------------------------------------------------------- /v8m/bsp/tfm_s.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/tfm_s.sct -------------------------------------------------------------------------------- /v8m/bsp/threadx-config/tx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/bsp/threadx-config/tx_user.h -------------------------------------------------------------------------------- /v8m/ci/avh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/ci/avh.yml -------------------------------------------------------------------------------- /v8m/ci/aws_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/ci/aws_cleanup.py -------------------------------------------------------------------------------- /v8m/ci/build_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/ci/build_examples.sh -------------------------------------------------------------------------------- /v8m/ci/cleanup_avh_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/ci/cleanup_avh_instances.py -------------------------------------------------------------------------------- /v8m/ci/generate_credentials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/ci/generate_credentials.sh -------------------------------------------------------------------------------- /v8m/compile_commands.json: -------------------------------------------------------------------------------- 1 | /Users/sahbab01/work/open-iot-sdk/release/github/open-iot-sdk/v8m/build/compile_commands.json -------------------------------------------------------------------------------- /v8m/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/conftest.py -------------------------------------------------------------------------------- /v8m/examples/blinky/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/blinky/CMakeLists.txt -------------------------------------------------------------------------------- /v8m/examples/blinky/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/blinky/README.md -------------------------------------------------------------------------------- /v8m/examples/blinky/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/blinky/main.c -------------------------------------------------------------------------------- /v8m/examples/blinky/tests/test_blinky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/blinky/tests/test_blinky.py -------------------------------------------------------------------------------- /v8m/examples/keyword/.gitignore: -------------------------------------------------------------------------------- 1 | generated/ 2 | -------------------------------------------------------------------------------- /v8m/examples/keyword/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/CMakeLists.txt -------------------------------------------------------------------------------- /v8m/examples/keyword/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/README.md -------------------------------------------------------------------------------- /v8m/examples/keyword/include/azure_netx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/include/azure_netx_config.h -------------------------------------------------------------------------------- /v8m/examples/keyword/include/blink_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/include/blink_task.h -------------------------------------------------------------------------------- /v8m/examples/keyword/include/ml_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/include/ml_interface.h -------------------------------------------------------------------------------- /v8m/examples/keyword/source/aws_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/source/aws_demo.c -------------------------------------------------------------------------------- /v8m/examples/keyword/source/azure_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/source/azure_demo.c -------------------------------------------------------------------------------- /v8m/examples/keyword/source/azure_netxduo_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/source/azure_netxduo_demo.c -------------------------------------------------------------------------------- /v8m/examples/keyword/source/blink_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/source/blink_task.c -------------------------------------------------------------------------------- /v8m/examples/keyword/source/ethosu_platform_adaptation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/source/ethosu_platform_adaptation.c -------------------------------------------------------------------------------- /v8m/examples/keyword/source/main_ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/source/main_ns.c -------------------------------------------------------------------------------- /v8m/examples/keyword/source/ml_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/source/ml_interface.cc -------------------------------------------------------------------------------- /v8m/examples/keyword/source/model_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/source/model_config.cc -------------------------------------------------------------------------------- /v8m/examples/keyword/source/peripheral_memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/source/peripheral_memmap.h -------------------------------------------------------------------------------- /v8m/examples/keyword/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/test.wav -------------------------------------------------------------------------------- /v8m/examples/keyword/tests/aws_test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/tests/aws_test_util.py -------------------------------------------------------------------------------- /v8m/examples/keyword/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/tests/conftest.py -------------------------------------------------------------------------------- /v8m/examples/keyword/tests/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/tests/test.wav -------------------------------------------------------------------------------- /v8m/examples/keyword/tests/test_azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/tests/test_azure.py -------------------------------------------------------------------------------- /v8m/examples/keyword/tests/test_ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/tests/test_ml.py -------------------------------------------------------------------------------- /v8m/examples/keyword/tests/test_ota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/keyword/tests/test_ota.py -------------------------------------------------------------------------------- /v8m/examples/speech/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/CMakeLists.txt -------------------------------------------------------------------------------- /v8m/examples/speech/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/README.md -------------------------------------------------------------------------------- /v8m/examples/speech/include/audio_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/include/audio_config.h -------------------------------------------------------------------------------- /v8m/examples/speech/include/azure_netx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/include/azure_netx_config.h -------------------------------------------------------------------------------- /v8m/examples/speech/include/blink_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/include/blink_task.h -------------------------------------------------------------------------------- /v8m/examples/speech/include/dsp/AppNodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/include/dsp/AppNodes.h -------------------------------------------------------------------------------- /v8m/examples/speech/include/dsp/GenericNodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/include/dsp/GenericNodes.h -------------------------------------------------------------------------------- /v8m/examples/speech/include/dsp/dsp_interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/include/dsp/dsp_interfaces.h -------------------------------------------------------------------------------- /v8m/examples/speech/include/dsp_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/include/dsp_task.h -------------------------------------------------------------------------------- /v8m/examples/speech/include/ml_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/include/ml_interface.h -------------------------------------------------------------------------------- /v8m/examples/speech/include/model_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/include/model_config.h -------------------------------------------------------------------------------- /v8m/examples/speech/source/aws_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/source/aws_demo.c -------------------------------------------------------------------------------- /v8m/examples/speech/source/azure_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/source/azure_demo.c -------------------------------------------------------------------------------- /v8m/examples/speech/source/azure_netxduo_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/source/azure_netxduo_demo.c -------------------------------------------------------------------------------- /v8m/examples/speech/source/blink_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/source/blink_task.c -------------------------------------------------------------------------------- /v8m/examples/speech/source/dsp/dsp_interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/source/dsp/dsp_interfaces.cpp -------------------------------------------------------------------------------- /v8m/examples/speech/source/dsp/dsp_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/source/dsp/dsp_task.cpp -------------------------------------------------------------------------------- /v8m/examples/speech/source/dsp/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/source/dsp/scheduler.cpp -------------------------------------------------------------------------------- /v8m/examples/speech/source/dsp/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/source/dsp/scheduler.h -------------------------------------------------------------------------------- /v8m/examples/speech/source/ethosu_platform_adaptation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/source/ethosu_platform_adaptation.c -------------------------------------------------------------------------------- /v8m/examples/speech/source/main_ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/source/main_ns.c -------------------------------------------------------------------------------- /v8m/examples/speech/source/ml_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/source/ml_interface.cc -------------------------------------------------------------------------------- /v8m/examples/speech/source/model_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/source/model_config.cc -------------------------------------------------------------------------------- /v8m/examples/speech/source/peripheral_memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/source/peripheral_memmap.h -------------------------------------------------------------------------------- /v8m/examples/speech/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/test.wav -------------------------------------------------------------------------------- /v8m/examples/speech/tests/aws_test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/tests/aws_test_util.py -------------------------------------------------------------------------------- /v8m/examples/speech/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/tests/conftest.py -------------------------------------------------------------------------------- /v8m/examples/speech/tests/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/tests/test.wav -------------------------------------------------------------------------------- /v8m/examples/speech/tests/test_azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/tests/test_azure.py -------------------------------------------------------------------------------- /v8m/examples/speech/tests/test_ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/tests/test_ml.py -------------------------------------------------------------------------------- /v8m/examples/speech/tests/test_ota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/examples/speech/tests/test_ota.py -------------------------------------------------------------------------------- /v8m/lib/AVH/audio/arm_vsi0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AVH/audio/arm_vsi0.py -------------------------------------------------------------------------------- /v8m/lib/AWS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/CMakeLists.txt -------------------------------------------------------------------------------- /v8m/lib/AWS/PKCS11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/PKCS11/CMakeLists.txt -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/3rdparty/mbedtls_utils/mbedtls_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/3rdparty/mbedtls_utils/mbedtls_error.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/3rdparty/mbedtls_utils/mbedtls_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/3rdparty/mbedtls_utils/mbedtls_utils.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/mqtt_agent/freertos_agent_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/mqtt_agent/freertos_agent_message.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/mqtt_agent/freertos_command_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/mqtt_agent/freertos_command_pool.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/mqtt_agent/include/freertos_agent_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/mqtt_agent/include/freertos_agent_message.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/mqtt_agent/include/freertos_command_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/mqtt_agent/include/freertos_command_pool.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/pkcs11/corePKCS11/source/dependency/3rdparty/mbedtls_utils/mbedtls_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/pkcs11/corePKCS11/source/dependency/3rdparty/mbedtls_utils/mbedtls_error.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/pkcs11/psa/iot_pkcs11_psa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/pkcs11/psa/iot_pkcs11_psa.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/pkcs11/psa/iot_pkcs11_psa_input_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/pkcs11/psa/iot_pkcs11_psa_input_format.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/pkcs11/psa/iot_pkcs11_psa_input_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/pkcs11/psa/iot_pkcs11_psa_input_format.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/pkcs11/psa/iot_pkcs11_psa_object_management.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/pkcs11/psa/iot_pkcs11_psa_object_management.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/pkcs11/psa/iot_pkcs11_psa_object_management.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/pkcs11/psa/iot_pkcs11_psa_object_management.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/platform/freertos/include/platform/iot_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/platform/freertos/include/platform/iot_network.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/platform/freertos/include/platform/iot_network_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/platform/freertos/include/platform/iot_network_ble.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/platform/freertos/include/platform/iot_network_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/platform/freertos/include/platform/iot_network_freertos.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/platform/freertos/include/platform/iot_platform_types_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/platform/freertos/include/platform/iot_platform_types_freertos.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/platform/freertos/iot_clock_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/platform/freertos/iot_clock_freertos.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/platform/freertos/iot_metrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/platform/freertos/iot_metrics.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/platform/freertos/iot_network_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/platform/freertos/iot_network_freertos.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/platform/freertos/iot_threads_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/platform/freertos/iot_threads_freertos.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/platform/include/platform/iot_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/platform/include/platform/iot_clock.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/platform/include/platform/iot_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/platform/include/platform/iot_metrics.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/platform/include/platform/iot_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/platform/include/platform/iot_network.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/platform/include/platform/iot_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/platform/include/platform/iot_threads.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/platform/include/types/iot_network_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/platform/include/types/iot_network_types.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/platform/include/types/iot_platform_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/platform/include/types/iot_platform_types.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/secure_sockets/include/iot_secure_sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/secure_sockets/include/iot_secure_sockets.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/secure_sockets/include/iot_secure_sockets_config_defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/secure_sockets/include/iot_secure_sockets_config_defaults.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/secure_sockets/include/iot_secure_sockets_wrapper_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/secure_sockets/include/iot_secure_sockets_wrapper_metrics.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/secure_sockets/lwip/iot_secure_sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/secure_sockets/lwip/iot_secure_sockets.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/transport/secure_sockets/transport_secure_sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/transport/secure_sockets/transport_secure_sockets.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/abstractions/transport/secure_sockets/transport_secure_sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/abstractions/transport/secure_sockets/transport_secure_sockets.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/iot_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/iot_atomic.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/iot_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/iot_init.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/iot_linear_containers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/iot_linear_containers.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/iot_logging_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/iot_logging_setup.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/iot_taskpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/iot_taskpool.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/private/iot_default_root_certificates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/private/iot_default_root_certificates.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/private/iot_doubly_linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/private/iot_doubly_linked_list.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/private/iot_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/private/iot_error.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/private/iot_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/private/iot_logging.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/private/iot_static_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/private/iot_static_memory.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/private/iot_taskpool_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/private/iot_taskpool_internal.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/types/iot_taskpool_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/common/include/types/iot_taskpool_types.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/common/iot_device_metrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/common/iot_device_metrics.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/common/iot_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/common/iot_init.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/common/iot_static_memory_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/common/iot_static_memory_common.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/common/taskpool/iot_taskpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/common/taskpool/iot_taskpool.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/common/taskpool/iot_taskpool_static_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/common/taskpool/iot_taskpool_static_memory.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/https/include/iot_https_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/https/include/iot_https_client.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/https/include/iot_https_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/https/include/iot_https_utils.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/https/include/types/iot_https_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/https/include/types/iot_https_types.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/https/src/private/iot_https_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/https/src/private/iot_https_internal.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/mqtt/include/iot_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/mqtt/include/iot_mqtt.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/mqtt/include/iot_mqtt_agent_config_defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/mqtt/include/iot_mqtt_agent_config_defaults.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/mqtt/include/iot_mqtt_config_defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/mqtt/include/iot_mqtt_config_defaults.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/mqtt/include/iot_mqtt_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/mqtt/include/iot_mqtt_lib.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/c_sdk/standard/mqtt/include/types/iot_mqtt_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/c_sdk/standard/mqtt/include/types/iot_mqtt_types.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/demos/common/http_demo_helpers/http_demo_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/demos/common/http_demo_helpers/http_demo_utils.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/demos/common/http_demo_helpers/http_demo_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/demos/common/http_demo_helpers/http_demo_utils.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/demos/common/mqtt_demo_helpers/mqtt_demo_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/demos/common/mqtt_demo_helpers/mqtt_demo_helpers.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/demos/common/mqtt_subscription_manager/mqtt_subscription_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/demos/common/mqtt_subscription_manager/mqtt_subscription_manager.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/demos/common/mqtt_subscription_manager/mqtt_subscription_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/demos/common/mqtt_subscription_manager/mqtt_subscription_manager.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/demos/common/ota_demo_helpers/ota_application_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/demos/common/ota_demo_helpers/ota_application_version.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/demos/common/pkcs11_helpers/pkcs11_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/demos/common/pkcs11_helpers/pkcs11_helpers.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/demos/common/pkcs11_helpers/pkcs11_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/demos/common/pkcs11_helpers/pkcs11_helpers.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/demos/coreMQTT_Agent/subscription_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/demos/coreMQTT_Agent/subscription_manager.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/demos/demo_runner/iot_demo_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/demos/demo_runner/iot_demo_freertos.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/demos/demo_runner/iot_demo_runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/demos/demo_runner/iot_demo_runner.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/demos/dev_mode_key_provisioning/include/aws_dev_mode_key_provisioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/demos/dev_mode_key_provisioning/include/aws_dev_mode_key_provisioning.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/demos/dev_mode_key_provisioning/src/aws_dev_mode_key_provisioning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/demos/dev_mode_key_provisioning/src/aws_dev_mode_key_provisioning.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/demos/network_manager/aws_iot_network_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/demos/network_manager/aws_iot_network_manager.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/demos/network_manager/iot_network_manager_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/demos/network_manager/iot_network_manager_private.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/freertos_plus/standard/crypto/include/iot_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/freertos_plus/standard/crypto/include/iot_crypto.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/freertos_plus/standard/crypto/src/iot_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/freertos_plus/standard/crypto/src/iot_crypto.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/freertos_plus/standard/tls/include/iot_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/freertos_plus/standard/tls/include/iot_tls.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/freertos_plus/standard/tls/src/iot_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/freertos_plus/standard/tls/src/iot_tls.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/logging/include/iot_logging_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/logging/include/iot_logging_task.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/logging/include/logging_levels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/logging/include/logging_levels.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/logging/include/logging_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/logging/include/logging_stack.h -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/logging/iot_logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/logging/iot_logging.c -------------------------------------------------------------------------------- /v8m/lib/AWS/aws_libraries/logging/iot_logging_task_dynamic_buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/aws_libraries/logging/iot_logging_task_dynamic_buffers.c -------------------------------------------------------------------------------- /v8m/lib/AWS/coreMQTT-Agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/coreMQTT-Agent/CMakeLists.txt -------------------------------------------------------------------------------- /v8m/lib/AWS/ota/ota_demo_core_mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/ota/ota_demo_core_mqtt.c -------------------------------------------------------------------------------- /v8m/lib/AWS/ota/ota_pal_psa/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/ota/ota_pal_psa/License.md -------------------------------------------------------------------------------- /v8m/lib/AWS/ota/ota_pal_psa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/ota/ota_pal_psa/README.md -------------------------------------------------------------------------------- /v8m/lib/AWS/ota/ota_pal_psa/ota_pal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/ota/ota_pal_psa/ota_pal.c -------------------------------------------------------------------------------- /v8m/lib/AWS/ota/ota_pal_psa/ota_pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/ota/ota_pal_psa/ota_pal.h -------------------------------------------------------------------------------- /v8m/lib/AWS/ota/ota_pal_psa/version/application_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/ota/ota_pal_psa/version/application_version.c -------------------------------------------------------------------------------- /v8m/lib/AWS/ota/ota_pal_psa/version/application_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/ota/ota_pal_psa/version/application_version.h -------------------------------------------------------------------------------- /v8m/lib/AWS/ota/provision/ota_provision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/ota/provision/ota_provision.c -------------------------------------------------------------------------------- /v8m/lib/AWS/ota/provision/ota_provision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/ota/provision/ota_provision.h -------------------------------------------------------------------------------- /v8m/lib/AWS/ota_for_aws/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/ota_for_aws/CMakeLists.txt -------------------------------------------------------------------------------- /v8m/lib/AWS/ota_for_aws/ota_os_cmsisrtos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/ota_for_aws/ota_os_cmsisrtos.c -------------------------------------------------------------------------------- /v8m/lib/AWS/ota_for_aws/ota_os_cmsisrtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/ota_for_aws/ota_os_cmsisrtos.h -------------------------------------------------------------------------------- /v8m/lib/AWS/tinycbor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/AWS/tinycbor/CMakeLists.txt -------------------------------------------------------------------------------- /v8m/lib/SpeexDSP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/SpeexDSP/CMakeLists.txt -------------------------------------------------------------------------------- /v8m/lib/SpeexDSP/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/SpeexDSP/config.h -------------------------------------------------------------------------------- /v8m/lib/SpeexDSP/os_support_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/SpeexDSP/os_support_custom.h -------------------------------------------------------------------------------- /v8m/lib/SpeexDSP/speexdsp_config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/SpeexDSP/speexdsp_config_types.h -------------------------------------------------------------------------------- /v8m/lib/ml-kit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/ml-kit/CMakeLists.txt -------------------------------------------------------------------------------- /v8m/lib/ml-kit/ml-embedded-evaluation-kit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/lib/ml-kit/ml-embedded-evaluation-kit.patch -------------------------------------------------------------------------------- /v8m/mlia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/mlia/README.md -------------------------------------------------------------------------------- /v8m/mlia/mlia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/mlia/mlia.sh -------------------------------------------------------------------------------- /v8m/mlia/tests/test_ats_mlia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/mlia/tests/test_ats_mlia.py -------------------------------------------------------------------------------- /v8m/release-changes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/release-changes/README.md -------------------------------------------------------------------------------- /v8m/resources/Keyword-detection-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/resources/Keyword-detection-overview.png -------------------------------------------------------------------------------- /v8m/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/scripts/build.sh -------------------------------------------------------------------------------- /v8m/scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/scripts/run.sh -------------------------------------------------------------------------------- /v8m/scripts/vht_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/open-iot-sdk/HEAD/v8m/scripts/vht_cli.py --------------------------------------------------------------------------------