├── .clang-format ├── .github ├── ISSUE_TEMPLATE │ ├── bug_issue.md │ ├── build_installation_issue.md │ ├── documentation_issue.md │ └── feature_request.md └── workflows │ ├── apps.yml │ ├── ci.yml │ ├── docs.yml │ └── python.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.rst ├── CMakeLists.txt ├── CODEOWNERS ├── Jenkinsfile ├── LICENSE.rst ├── README.md ├── doc ├── Doxyfile.inc ├── README.md ├── exclude_patterns.inc ├── programming_guide │ ├── diagrams │ │ ├── xcore-iot_component_diagram.drawio.png │ │ └── xcore_iot_component_diagram.drawio │ ├── faq.rst │ ├── index.rst │ ├── installation.rst │ └── tutorials │ │ ├── bare_metal │ │ ├── bare_metal.rst │ │ └── examples │ │ │ ├── examples.rst │ │ │ ├── explorer_board.rst │ │ │ └── visual_wake_word.rst │ │ ├── freertos │ │ ├── common_issues.rst │ │ ├── examples │ │ │ ├── audio_mux.rst │ │ │ ├── device_control.rst │ │ │ ├── dfu.rst │ │ │ ├── examples.rst │ │ │ ├── explorer_board.rst │ │ │ ├── getting_started.rst │ │ │ ├── images │ │ │ │ └── xscope_fileio_functional_diagram.png │ │ │ ├── iot.rst │ │ │ ├── l2_cache.rst │ │ │ ├── tracealyzer.rst │ │ │ ├── xlink.rst │ │ │ └── xscope_fileio.rst │ │ ├── faq.rst │ │ └── freertos.rst │ │ ├── platform.rst │ │ └── tutorials.rst ├── shared │ └── legal.rst ├── src_html │ └── .gitkeep └── substitutions.rst ├── examples ├── bare-metal │ ├── explorer_board │ │ ├── README.md │ │ ├── XCORE-AI-EXPLORER.xn │ │ ├── explorer_board.cmake │ │ └── src │ │ │ ├── app_conf.h │ │ │ ├── audio_pipeline │ │ │ ├── audio_pipeline.c │ │ │ └── audio_pipeline.h │ │ │ ├── config.xscope │ │ │ ├── demos │ │ │ ├── app_demos.h │ │ │ ├── flash_demo.c │ │ │ ├── gpio_server.c │ │ │ ├── spi_demo.c │ │ │ └── uart_demo.c │ │ │ ├── main.c │ │ │ ├── misc │ │ │ └── burn.h │ │ │ └── platform │ │ │ ├── aic3204.c │ │ │ ├── aic3204.h │ │ │ ├── app_pll_ctrl.c │ │ │ ├── app_pll_ctrl.h │ │ │ ├── mic_support.h │ │ │ ├── platform_init.h │ │ │ ├── platform_init_tile0.c │ │ │ ├── platform_init_tile1.c │ │ │ ├── tile_support.c │ │ │ └── tile_support.h │ └── visual_wake_words │ │ ├── README.md │ │ ├── XCORE-AI-EXPLORER.xn │ │ ├── model │ │ ├── vww_model_nibble_swapped.bin │ │ └── vww_quant.tflite │ │ ├── src │ │ ├── config.xscope │ │ ├── flash_server.c │ │ ├── main.cpp │ │ ├── main.xc │ │ ├── vww_model │ │ ├── vww_model.cpp │ │ └── vww_model.h │ │ ├── test_image.py │ │ └── visual_wake_words.cmake ├── examples.cmake └── freertos │ ├── audio_mux │ ├── README.md │ ├── XCORE-AI-EXPLORER.xn │ ├── audio_mux.cmake │ ├── bsp_config │ │ ├── XCORE-AI-EXPLORER │ │ │ ├── XCORE-AI-EXPLORER.cmake │ │ │ ├── XCORE-AI-EXPLORER.xn │ │ │ └── platform │ │ │ │ ├── app_pll_ctrl.c │ │ │ │ ├── app_pll_ctrl.h │ │ │ │ ├── dac_port.c │ │ │ │ ├── driver_instances.c │ │ │ │ ├── driver_instances.h │ │ │ │ ├── platform_conf.h │ │ │ │ ├── platform_init.c │ │ │ │ ├── platform_init.h │ │ │ │ └── platform_start.c │ │ ├── bsp_config.cmake │ │ └── dac │ │ │ ├── aic3204 │ │ │ ├── aic3204.c │ │ │ └── aic3204.h │ │ │ └── dac.cmake │ └── src │ │ ├── FreeRTOSConfig.h │ │ ├── app_conf.h │ │ ├── app_conf_check.h │ │ ├── audio_pipeline │ │ ├── audio_pipeline.c │ │ └── audio_pipeline.h │ │ ├── config.xscope │ │ ├── main.c │ │ └── usb │ │ ├── adaptive_rate_adjust.c │ │ ├── adaptive_rate_adjust.h │ │ ├── tusb_config.h │ │ ├── usb_audio.c │ │ ├── usb_audio.h │ │ ├── usb_descriptors.c │ │ └── usb_descriptors.h │ ├── device_control │ ├── README.md │ ├── XCORE-AI-EXPLORER.xn │ ├── device_control.cmake │ ├── host │ │ ├── CMakeLists.txt │ │ ├── argtable │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── argtable-v3.2.1.52f24e5-amalgamation.tar.gz │ │ │ ├── argtable3.c │ │ │ └── argtable3.h │ │ ├── commands.c │ │ ├── commands.h │ │ └── device_control_host.c │ └── src │ │ ├── FreeRTOSConfig.h │ │ ├── app_conf.h │ │ ├── app_control │ │ ├── app_control.c │ │ └── app_control.h │ │ ├── config.xscope │ │ ├── main.c │ │ ├── tusb_config.h │ │ └── usb_descriptors.c │ ├── dfu │ ├── README.md │ ├── XCORE-AI-EXPLORER.xn │ ├── bsp_config │ │ ├── CMakeLists.txt │ │ └── XCORE-AI-EXPLORER_2V0 │ │ │ └── platform │ │ │ ├── driver_instances.c │ │ │ ├── driver_instances.h │ │ │ ├── platform_conf.h │ │ │ ├── platform_init.c │ │ │ ├── platform_init.h │ │ │ └── platform_start.c │ ├── dfu.cmake │ ├── loader │ │ └── loader.c │ └── src │ │ ├── FreeRTOSConfig.h │ │ ├── app_conf.h │ │ ├── config.xscope │ │ ├── main.c │ │ ├── tusb_config.h │ │ └── usb │ │ ├── app_dfu.c │ │ └── usb_descriptors.c │ ├── explorer_board │ ├── README.md │ ├── XCORE-AI-EXPLORER.xn │ ├── explorer_board.cmake │ ├── filesystem_support │ │ └── demo.txt │ └── src │ │ ├── FreeRTOSConfig.h │ │ ├── app_conf.h │ │ ├── config.xscope │ │ ├── example_pipeline │ │ ├── example_pipeline.c │ │ └── example_pipeline.h │ │ ├── ff_appconf.h │ │ ├── filesystem │ │ ├── filesystem_demo.c │ │ └── filesystem_demo.h │ │ ├── gpio_ctrl │ │ ├── gpio_ctrl.c │ │ └── gpio_ctrl.h │ │ ├── main.c │ │ ├── mem_analysis │ │ ├── mem_analysis.c │ │ └── mem_analysis.h │ │ └── uart │ │ ├── uart_demo.c │ │ └── uart_demo.h │ ├── getting_started │ ├── README.md │ ├── XCORE-AI-EXPLORER.xn │ ├── getting_started.cmake │ └── src │ │ ├── FreeRTOSConfig.h │ │ ├── config.xscope │ │ └── main.c │ ├── iot │ ├── README.md │ ├── XCORE-AI-EXPLORER.xn │ ├── filesystem_support │ │ ├── .gitignore │ │ ├── make_certs.ps1 │ │ ├── make_certs.sh │ │ ├── wifi_profile.ps1 │ │ └── wifi_profile.py │ ├── iot.cmake │ ├── mosquitto │ │ └── mosquitto.conf │ └── src │ │ ├── FreeRTOSConfig.h │ │ ├── FreeRTOSIPConfig.h │ │ ├── app_conf.h │ │ ├── config.xscope │ │ ├── ff_appconf.h │ │ ├── main.c │ │ ├── mbedtls_sample_config.h │ │ ├── mem_analysis │ │ ├── mem_analysis.c │ │ └── mem_analysis.h │ │ ├── mqtt_demo │ │ ├── mqtt_demo_client.c │ │ └── mqtt_demo_client.h │ │ ├── network_demos │ │ ├── network_setup.c │ │ └── network_setup.h │ │ └── xcore_trace_config.h │ ├── l2_cache │ ├── README.md │ ├── XCORE-AI-EXPLORER.xn │ ├── l2_cache.cmake │ └── src │ │ ├── FreeRTOSConfig.h │ │ ├── app_common.h │ │ ├── config.xscope │ │ ├── example_code.c │ │ ├── example_code.h │ │ ├── main.c │ │ ├── print_info.c │ │ └── print_info.h │ ├── tracealyzer │ ├── README.md │ ├── XCORE-AI-EXPLORER.xn │ ├── host │ │ ├── CMakeLists.txt │ │ └── xscope2psf.c │ ├── src │ │ ├── FreeRTOSConfig.h │ │ ├── config.xscope │ │ ├── main.c │ │ ├── trcConfig.h │ │ ├── trcKernelPortConfig.h │ │ ├── trcKernelPortStreamingConfig.h │ │ ├── trcStreamPortConfig.h │ │ └── trcStreamingConfig.h │ └── tracealyzer.cmake │ ├── xlink │ ├── README.md │ ├── XCORE-AI-EXPLORER.xn │ ├── XCORE-AI-EXPLORER_tx.xn │ ├── bsp_config │ │ ├── CMakeLists.txt │ │ └── XCORE-AI-EXPLORER_2V0 │ │ │ └── platform │ │ │ ├── driver_instances.c │ │ │ ├── driver_instances.h │ │ │ ├── platform_conf.h │ │ │ ├── platform_init.c │ │ │ ├── platform_init.h │ │ │ └── platform_start.c │ ├── src │ │ ├── FreeRTOSConfig.h │ │ ├── app_conf.h │ │ ├── link │ │ │ ├── link_helpers.c │ │ │ └── link_helpers.h │ │ ├── main.c │ │ ├── xlink_rx │ │ │ ├── xlink_rx.c │ │ │ └── xlink_rx.h │ │ └── xlink_tx │ │ │ ├── xlink_tx.c │ │ │ └── xlink_tx.h │ └── xlink.cmake │ └── xscope_fileio │ ├── README.md │ ├── XCORE-AI-EXPLORER.xn │ ├── diagrams │ └── functional_diagram.drawio │ ├── in.wav │ ├── src │ ├── FreeRTOSConfig.h │ ├── app_conf.h │ ├── config.xscope │ ├── data_pipeline │ │ ├── api │ │ │ └── data_pipeline.h │ │ └── src │ │ │ ├── data_pipeline_tile0.c │ │ │ └── data_pipeline_tile1.c │ ├── fileio │ │ ├── xscope_fileio_task.c │ │ └── xscope_fileio_task.h │ ├── main.c │ └── wav │ │ ├── wav_utils.c │ │ └── wav_utils.h │ └── xscope_fileio.cmake ├── index.rst ├── modules ├── CMakeLists.txt ├── inferencing │ └── CMakeLists.txt ├── sample_rate_conversion │ └── CMakeLists.txt └── xscope_fileio │ └── CMakeLists.txt ├── projects └── eclipse │ ├── .cproject │ ├── .project │ └── .settings │ └── language.settings.xml ├── settings.json ├── test ├── examples │ ├── README.rst │ ├── run_freertos_explorer_board_tests.sh │ ├── run_freertos_getting_started_tests.sh │ ├── run_freertos_l2_cache_tests.sh │ └── run_freertos_tracealyzer_tests.sh ├── requirements.txt ├── tests.cmake ├── usb │ ├── README.rst │ ├── XCORE-AI-EXPLORER.xn │ ├── dfu.sh │ ├── src │ │ ├── FreeRTOSConfig.h │ │ ├── app_conf.h │ │ ├── config.xscope │ │ ├── dfu_demo_support.c │ │ └── main.c │ ├── tinyusb_demos │ │ ├── audio_test │ │ │ └── src │ │ │ │ ├── demo_main.c │ │ │ │ ├── demo_main.h │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── cdc_dual_ports │ │ │ └── src │ │ │ │ ├── demo_main.c │ │ │ │ ├── demo_main.h │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── cdc_msc │ │ │ └── src │ │ │ │ ├── demo_main.c │ │ │ │ ├── demo_main.h │ │ │ │ ├── msc_disk.c │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── dfu │ │ │ └── src │ │ │ │ ├── demo_main.c │ │ │ │ ├── demo_main.h │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── dfu_runtime │ │ │ └── src │ │ │ │ ├── demo_main.c │ │ │ │ ├── demo_main.h │ │ │ │ ├── flash_boot_image.c │ │ │ │ ├── flash_boot_image.h │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── hid_boot_interface │ │ │ └── src │ │ │ │ ├── demo_main.c │ │ │ │ ├── demo_main.h │ │ │ │ ├── tusb_config.h │ │ │ │ ├── usb_descriptors.c │ │ │ │ └── usb_descriptors.h │ │ ├── hid_composite │ │ │ └── src │ │ │ │ ├── demo_main.c │ │ │ │ ├── demo_main.h │ │ │ │ ├── tusb_config.h │ │ │ │ ├── usb_descriptors.c │ │ │ │ └── usb_descriptors.h │ │ ├── hid_generic_inout │ │ │ ├── hid_test.py │ │ │ └── src │ │ │ │ ├── demo_main.c │ │ │ │ ├── demo_main.h │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── hid_multiple_interface │ │ │ └── src │ │ │ │ ├── demo_main.c │ │ │ │ ├── demo_main.h │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── midi_test │ │ │ └── src │ │ │ │ ├── demo_main.c │ │ │ │ ├── demo_main.h │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── msc_dual_lun │ │ │ └── src │ │ │ │ ├── demo_main.c │ │ │ │ ├── demo_main.h │ │ │ │ ├── msc_disk_dual.c │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── uac2_headset │ │ │ └── src │ │ │ │ ├── demo_main.c │ │ │ │ ├── demo_main.h │ │ │ │ ├── tusb_config.h │ │ │ │ ├── usb_descriptors.c │ │ │ │ └── usb_descriptors.h │ │ ├── usbtmc │ │ │ ├── demo.py │ │ │ └── src │ │ │ │ ├── demo_main.c │ │ │ │ ├── demo_main.h │ │ │ │ ├── tusb_config.h │ │ │ │ ├── usb_descriptors.c │ │ │ │ ├── usbtmc_app.c │ │ │ │ └── usbtmc_app.h │ │ ├── video_capture │ │ │ └── src │ │ │ │ ├── demo_main.c │ │ │ │ ├── demo_main.h │ │ │ │ ├── images.h │ │ │ │ ├── tusb_config.h │ │ │ │ ├── usb_descriptors.c │ │ │ │ └── usb_descriptors.h │ │ └── webusb_serial │ │ │ └── src │ │ │ ├── demo_main.c │ │ │ ├── demo_main.h │ │ │ ├── tusb_config.h │ │ │ ├── usb_descriptors.c │ │ │ └── usb_descriptors.h │ └── usb.cmake └── verify_python_install.py └── tools ├── ci ├── .xmos_ignore_source_check ├── build_host_apps.sh ├── build_metal_examples.sh ├── build_pdfs.sh ├── build_rtos_aiot_examples.sh ├── build_rtos_core_examples.sh ├── build_rtos_usb_tests.sh ├── build_xmath_walkthrough_pdf.sh ├── build_xmath_walkthrough_zip.sh ├── clean_xmath_walkthrough.sh ├── fetch_xmath_walkthrough.sh ├── helper_functions.sh └── run_submodule_report.sh └── install └── requirements.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/.github/ISSUE_TEMPLATE/bug_issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/build_installation_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/.github/ISSUE_TEMPLATE/build_installation_issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/.github/ISSUE_TEMPLATE/documentation_issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/apps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/.github/workflows/apps.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/.github/workflows/python.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/README.md -------------------------------------------------------------------------------- /doc/Doxyfile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/Doxyfile.inc -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/exclude_patterns.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/exclude_patterns.inc -------------------------------------------------------------------------------- /doc/programming_guide/diagrams/xcore-iot_component_diagram.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/diagrams/xcore-iot_component_diagram.drawio.png -------------------------------------------------------------------------------- /doc/programming_guide/diagrams/xcore_iot_component_diagram.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/diagrams/xcore_iot_component_diagram.drawio -------------------------------------------------------------------------------- /doc/programming_guide/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/faq.rst -------------------------------------------------------------------------------- /doc/programming_guide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/index.rst -------------------------------------------------------------------------------- /doc/programming_guide/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/installation.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/bare_metal/bare_metal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/bare_metal/bare_metal.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/bare_metal/examples/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/bare_metal/examples/examples.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/bare_metal/examples/explorer_board.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/bare_metal/examples/explorer_board.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/bare_metal/examples/visual_wake_word.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/bare_metal/examples/visual_wake_word.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/freertos/common_issues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/freertos/common_issues.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/freertos/examples/audio_mux.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/freertos/examples/audio_mux.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/freertos/examples/device_control.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/freertos/examples/device_control.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/freertos/examples/dfu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/freertos/examples/dfu.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/freertos/examples/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/freertos/examples/examples.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/freertos/examples/explorer_board.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/freertos/examples/explorer_board.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/freertos/examples/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/freertos/examples/getting_started.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/freertos/examples/images/xscope_fileio_functional_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/freertos/examples/images/xscope_fileio_functional_diagram.png -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/freertos/examples/iot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/freertos/examples/iot.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/freertos/examples/l2_cache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/freertos/examples/l2_cache.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/freertos/examples/tracealyzer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/freertos/examples/tracealyzer.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/freertos/examples/xlink.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/freertos/examples/xlink.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/freertos/examples/xscope_fileio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/freertos/examples/xscope_fileio.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/freertos/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/freertos/faq.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/freertos/freertos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/freertos/freertos.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/platform.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/platform.rst -------------------------------------------------------------------------------- /doc/programming_guide/tutorials/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/programming_guide/tutorials/tutorials.rst -------------------------------------------------------------------------------- /doc/shared/legal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/shared/legal.rst -------------------------------------------------------------------------------- /doc/src_html/.gitkeep: -------------------------------------------------------------------------------- 1 | # This directory needs to exist for the doc builder -------------------------------------------------------------------------------- /doc/substitutions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/doc/substitutions.rst -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/README.md -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/XCORE-AI-EXPLORER.xn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/XCORE-AI-EXPLORER.xn -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/explorer_board.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/explorer_board.cmake -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/app_conf.h -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/audio_pipeline/audio_pipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/audio_pipeline/audio_pipeline.c -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/audio_pipeline/audio_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/audio_pipeline/audio_pipeline.h -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/config.xscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/config.xscope -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/demos/app_demos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/demos/app_demos.h -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/demos/flash_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/demos/flash_demo.c -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/demos/gpio_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/demos/gpio_server.c -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/demos/spi_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/demos/spi_demo.c -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/demos/uart_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/demos/uart_demo.c -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/main.c -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/misc/burn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/misc/burn.h -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/platform/aic3204.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/platform/aic3204.c -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/platform/aic3204.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/platform/aic3204.h -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/platform/app_pll_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/platform/app_pll_ctrl.c -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/platform/app_pll_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/platform/app_pll_ctrl.h -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/platform/mic_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/platform/mic_support.h -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/platform/platform_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/platform/platform_init.h -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/platform/platform_init_tile0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/platform/platform_init_tile0.c -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/platform/platform_init_tile1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/platform/platform_init_tile1.c -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/platform/tile_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/platform/tile_support.c -------------------------------------------------------------------------------- /examples/bare-metal/explorer_board/src/platform/tile_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/explorer_board/src/platform/tile_support.h -------------------------------------------------------------------------------- /examples/bare-metal/visual_wake_words/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/visual_wake_words/README.md -------------------------------------------------------------------------------- /examples/bare-metal/visual_wake_words/XCORE-AI-EXPLORER.xn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/visual_wake_words/XCORE-AI-EXPLORER.xn -------------------------------------------------------------------------------- /examples/bare-metal/visual_wake_words/model/vww_model_nibble_swapped.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/visual_wake_words/model/vww_model_nibble_swapped.bin -------------------------------------------------------------------------------- /examples/bare-metal/visual_wake_words/model/vww_quant.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/visual_wake_words/model/vww_quant.tflite -------------------------------------------------------------------------------- /examples/bare-metal/visual_wake_words/src/config.xscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/visual_wake_words/src/config.xscope -------------------------------------------------------------------------------- /examples/bare-metal/visual_wake_words/src/flash_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/visual_wake_words/src/flash_server.c -------------------------------------------------------------------------------- /examples/bare-metal/visual_wake_words/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/visual_wake_words/src/main.cpp -------------------------------------------------------------------------------- /examples/bare-metal/visual_wake_words/src/main.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/visual_wake_words/src/main.xc -------------------------------------------------------------------------------- /examples/bare-metal/visual_wake_words/src/vww_model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/visual_wake_words/src/vww_model -------------------------------------------------------------------------------- /examples/bare-metal/visual_wake_words/src/vww_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/visual_wake_words/src/vww_model.cpp -------------------------------------------------------------------------------- /examples/bare-metal/visual_wake_words/src/vww_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/visual_wake_words/src/vww_model.h -------------------------------------------------------------------------------- /examples/bare-metal/visual_wake_words/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/visual_wake_words/test_image.py -------------------------------------------------------------------------------- /examples/bare-metal/visual_wake_words/visual_wake_words.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/bare-metal/visual_wake_words/visual_wake_words.cmake -------------------------------------------------------------------------------- /examples/examples.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/examples.cmake -------------------------------------------------------------------------------- /examples/freertos/audio_mux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/README.md -------------------------------------------------------------------------------- /examples/freertos/audio_mux/XCORE-AI-EXPLORER.xn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/XCORE-AI-EXPLORER.xn -------------------------------------------------------------------------------- /examples/freertos/audio_mux/audio_mux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/audio_mux.cmake -------------------------------------------------------------------------------- /examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/XCORE-AI-EXPLORER.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/XCORE-AI-EXPLORER.cmake -------------------------------------------------------------------------------- /examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/XCORE-AI-EXPLORER.xn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/XCORE-AI-EXPLORER.xn -------------------------------------------------------------------------------- /examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/app_pll_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/app_pll_ctrl.c -------------------------------------------------------------------------------- /examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/app_pll_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/app_pll_ctrl.h -------------------------------------------------------------------------------- /examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/dac_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/dac_port.c -------------------------------------------------------------------------------- /examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/driver_instances.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/driver_instances.c -------------------------------------------------------------------------------- /examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/driver_instances.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/driver_instances.h -------------------------------------------------------------------------------- /examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/platform_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/platform_conf.h -------------------------------------------------------------------------------- /examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/platform_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/platform_init.c -------------------------------------------------------------------------------- /examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/platform_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/platform_init.h -------------------------------------------------------------------------------- /examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/platform_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/bsp_config/XCORE-AI-EXPLORER/platform/platform_start.c -------------------------------------------------------------------------------- /examples/freertos/audio_mux/bsp_config/bsp_config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/bsp_config/bsp_config.cmake -------------------------------------------------------------------------------- /examples/freertos/audio_mux/bsp_config/dac/aic3204/aic3204.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/bsp_config/dac/aic3204/aic3204.c -------------------------------------------------------------------------------- /examples/freertos/audio_mux/bsp_config/dac/aic3204/aic3204.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/bsp_config/dac/aic3204/aic3204.h -------------------------------------------------------------------------------- /examples/freertos/audio_mux/bsp_config/dac/dac.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/bsp_config/dac/dac.cmake -------------------------------------------------------------------------------- /examples/freertos/audio_mux/src/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/src/FreeRTOSConfig.h -------------------------------------------------------------------------------- /examples/freertos/audio_mux/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/src/app_conf.h -------------------------------------------------------------------------------- /examples/freertos/audio_mux/src/app_conf_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/src/app_conf_check.h -------------------------------------------------------------------------------- /examples/freertos/audio_mux/src/audio_pipeline/audio_pipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/src/audio_pipeline/audio_pipeline.c -------------------------------------------------------------------------------- /examples/freertos/audio_mux/src/audio_pipeline/audio_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/src/audio_pipeline/audio_pipeline.h -------------------------------------------------------------------------------- /examples/freertos/audio_mux/src/config.xscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/src/config.xscope -------------------------------------------------------------------------------- /examples/freertos/audio_mux/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/src/main.c -------------------------------------------------------------------------------- /examples/freertos/audio_mux/src/usb/adaptive_rate_adjust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/src/usb/adaptive_rate_adjust.c -------------------------------------------------------------------------------- /examples/freertos/audio_mux/src/usb/adaptive_rate_adjust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/src/usb/adaptive_rate_adjust.h -------------------------------------------------------------------------------- /examples/freertos/audio_mux/src/usb/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/src/usb/tusb_config.h -------------------------------------------------------------------------------- /examples/freertos/audio_mux/src/usb/usb_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/src/usb/usb_audio.c -------------------------------------------------------------------------------- /examples/freertos/audio_mux/src/usb/usb_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/src/usb/usb_audio.h -------------------------------------------------------------------------------- /examples/freertos/audio_mux/src/usb/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/src/usb/usb_descriptors.c -------------------------------------------------------------------------------- /examples/freertos/audio_mux/src/usb/usb_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/audio_mux/src/usb/usb_descriptors.h -------------------------------------------------------------------------------- /examples/freertos/device_control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/README.md -------------------------------------------------------------------------------- /examples/freertos/device_control/XCORE-AI-EXPLORER.xn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/XCORE-AI-EXPLORER.xn -------------------------------------------------------------------------------- /examples/freertos/device_control/device_control.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/device_control.cmake -------------------------------------------------------------------------------- /examples/freertos/device_control/host/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/host/CMakeLists.txt -------------------------------------------------------------------------------- /examples/freertos/device_control/host/argtable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/host/argtable/LICENSE -------------------------------------------------------------------------------- /examples/freertos/device_control/host/argtable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/host/argtable/README.md -------------------------------------------------------------------------------- /examples/freertos/device_control/host/argtable/argtable-v3.2.1.52f24e5-amalgamation.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/host/argtable/argtable-v3.2.1.52f24e5-amalgamation.tar.gz -------------------------------------------------------------------------------- /examples/freertos/device_control/host/argtable/argtable3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/host/argtable/argtable3.c -------------------------------------------------------------------------------- /examples/freertos/device_control/host/argtable/argtable3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/host/argtable/argtable3.h -------------------------------------------------------------------------------- /examples/freertos/device_control/host/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/host/commands.c -------------------------------------------------------------------------------- /examples/freertos/device_control/host/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/host/commands.h -------------------------------------------------------------------------------- /examples/freertos/device_control/host/device_control_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/host/device_control_host.c -------------------------------------------------------------------------------- /examples/freertos/device_control/src/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/src/FreeRTOSConfig.h -------------------------------------------------------------------------------- /examples/freertos/device_control/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/src/app_conf.h -------------------------------------------------------------------------------- /examples/freertos/device_control/src/app_control/app_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/src/app_control/app_control.c -------------------------------------------------------------------------------- /examples/freertos/device_control/src/app_control/app_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/src/app_control/app_control.h -------------------------------------------------------------------------------- /examples/freertos/device_control/src/config.xscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/src/config.xscope -------------------------------------------------------------------------------- /examples/freertos/device_control/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/src/main.c -------------------------------------------------------------------------------- /examples/freertos/device_control/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/src/tusb_config.h -------------------------------------------------------------------------------- /examples/freertos/device_control/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/device_control/src/usb_descriptors.c -------------------------------------------------------------------------------- /examples/freertos/dfu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/README.md -------------------------------------------------------------------------------- /examples/freertos/dfu/XCORE-AI-EXPLORER.xn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/XCORE-AI-EXPLORER.xn -------------------------------------------------------------------------------- /examples/freertos/dfu/bsp_config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/bsp_config/CMakeLists.txt -------------------------------------------------------------------------------- /examples/freertos/dfu/bsp_config/XCORE-AI-EXPLORER_2V0/platform/driver_instances.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/bsp_config/XCORE-AI-EXPLORER_2V0/platform/driver_instances.c -------------------------------------------------------------------------------- /examples/freertos/dfu/bsp_config/XCORE-AI-EXPLORER_2V0/platform/driver_instances.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/bsp_config/XCORE-AI-EXPLORER_2V0/platform/driver_instances.h -------------------------------------------------------------------------------- /examples/freertos/dfu/bsp_config/XCORE-AI-EXPLORER_2V0/platform/platform_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/bsp_config/XCORE-AI-EXPLORER_2V0/platform/platform_conf.h -------------------------------------------------------------------------------- /examples/freertos/dfu/bsp_config/XCORE-AI-EXPLORER_2V0/platform/platform_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/bsp_config/XCORE-AI-EXPLORER_2V0/platform/platform_init.c -------------------------------------------------------------------------------- /examples/freertos/dfu/bsp_config/XCORE-AI-EXPLORER_2V0/platform/platform_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/bsp_config/XCORE-AI-EXPLORER_2V0/platform/platform_init.h -------------------------------------------------------------------------------- /examples/freertos/dfu/bsp_config/XCORE-AI-EXPLORER_2V0/platform/platform_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/bsp_config/XCORE-AI-EXPLORER_2V0/platform/platform_start.c -------------------------------------------------------------------------------- /examples/freertos/dfu/dfu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/dfu.cmake -------------------------------------------------------------------------------- /examples/freertos/dfu/loader/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/loader/loader.c -------------------------------------------------------------------------------- /examples/freertos/dfu/src/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/src/FreeRTOSConfig.h -------------------------------------------------------------------------------- /examples/freertos/dfu/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/src/app_conf.h -------------------------------------------------------------------------------- /examples/freertos/dfu/src/config.xscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/src/config.xscope -------------------------------------------------------------------------------- /examples/freertos/dfu/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/src/main.c -------------------------------------------------------------------------------- /examples/freertos/dfu/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/src/tusb_config.h -------------------------------------------------------------------------------- /examples/freertos/dfu/src/usb/app_dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/src/usb/app_dfu.c -------------------------------------------------------------------------------- /examples/freertos/dfu/src/usb/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/dfu/src/usb/usb_descriptors.c -------------------------------------------------------------------------------- /examples/freertos/explorer_board/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/README.md -------------------------------------------------------------------------------- /examples/freertos/explorer_board/XCORE-AI-EXPLORER.xn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/XCORE-AI-EXPLORER.xn -------------------------------------------------------------------------------- /examples/freertos/explorer_board/explorer_board.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/explorer_board.cmake -------------------------------------------------------------------------------- /examples/freertos/explorer_board/filesystem_support/demo.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /examples/freertos/explorer_board/src/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/src/FreeRTOSConfig.h -------------------------------------------------------------------------------- /examples/freertos/explorer_board/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/src/app_conf.h -------------------------------------------------------------------------------- /examples/freertos/explorer_board/src/config.xscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/src/config.xscope -------------------------------------------------------------------------------- /examples/freertos/explorer_board/src/example_pipeline/example_pipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/src/example_pipeline/example_pipeline.c -------------------------------------------------------------------------------- /examples/freertos/explorer_board/src/example_pipeline/example_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/src/example_pipeline/example_pipeline.h -------------------------------------------------------------------------------- /examples/freertos/explorer_board/src/ff_appconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/src/ff_appconf.h -------------------------------------------------------------------------------- /examples/freertos/explorer_board/src/filesystem/filesystem_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/src/filesystem/filesystem_demo.c -------------------------------------------------------------------------------- /examples/freertos/explorer_board/src/filesystem/filesystem_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/src/filesystem/filesystem_demo.h -------------------------------------------------------------------------------- /examples/freertos/explorer_board/src/gpio_ctrl/gpio_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/src/gpio_ctrl/gpio_ctrl.c -------------------------------------------------------------------------------- /examples/freertos/explorer_board/src/gpio_ctrl/gpio_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/src/gpio_ctrl/gpio_ctrl.h -------------------------------------------------------------------------------- /examples/freertos/explorer_board/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/src/main.c -------------------------------------------------------------------------------- /examples/freertos/explorer_board/src/mem_analysis/mem_analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/src/mem_analysis/mem_analysis.c -------------------------------------------------------------------------------- /examples/freertos/explorer_board/src/mem_analysis/mem_analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/src/mem_analysis/mem_analysis.h -------------------------------------------------------------------------------- /examples/freertos/explorer_board/src/uart/uart_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/src/uart/uart_demo.c -------------------------------------------------------------------------------- /examples/freertos/explorer_board/src/uart/uart_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/explorer_board/src/uart/uart_demo.h -------------------------------------------------------------------------------- /examples/freertos/getting_started/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/getting_started/README.md -------------------------------------------------------------------------------- /examples/freertos/getting_started/XCORE-AI-EXPLORER.xn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/getting_started/XCORE-AI-EXPLORER.xn -------------------------------------------------------------------------------- /examples/freertos/getting_started/getting_started.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/getting_started/getting_started.cmake -------------------------------------------------------------------------------- /examples/freertos/getting_started/src/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/getting_started/src/FreeRTOSConfig.h -------------------------------------------------------------------------------- /examples/freertos/getting_started/src/config.xscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/getting_started/src/config.xscope -------------------------------------------------------------------------------- /examples/freertos/getting_started/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/getting_started/src/main.c -------------------------------------------------------------------------------- /examples/freertos/iot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/README.md -------------------------------------------------------------------------------- /examples/freertos/iot/XCORE-AI-EXPLORER.xn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/XCORE-AI-EXPLORER.xn -------------------------------------------------------------------------------- /examples/freertos/iot/filesystem_support/.gitignore: -------------------------------------------------------------------------------- 1 | # filesystem cruft 2 | mqtt_broker_certs/* -------------------------------------------------------------------------------- /examples/freertos/iot/filesystem_support/make_certs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/filesystem_support/make_certs.ps1 -------------------------------------------------------------------------------- /examples/freertos/iot/filesystem_support/make_certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/filesystem_support/make_certs.sh -------------------------------------------------------------------------------- /examples/freertos/iot/filesystem_support/wifi_profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/filesystem_support/wifi_profile.ps1 -------------------------------------------------------------------------------- /examples/freertos/iot/filesystem_support/wifi_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/filesystem_support/wifi_profile.py -------------------------------------------------------------------------------- /examples/freertos/iot/iot.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/iot.cmake -------------------------------------------------------------------------------- /examples/freertos/iot/mosquitto/mosquitto.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/mosquitto/mosquitto.conf -------------------------------------------------------------------------------- /examples/freertos/iot/src/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/src/FreeRTOSConfig.h -------------------------------------------------------------------------------- /examples/freertos/iot/src/FreeRTOSIPConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/src/FreeRTOSIPConfig.h -------------------------------------------------------------------------------- /examples/freertos/iot/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/src/app_conf.h -------------------------------------------------------------------------------- /examples/freertos/iot/src/config.xscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/src/config.xscope -------------------------------------------------------------------------------- /examples/freertos/iot/src/ff_appconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/src/ff_appconf.h -------------------------------------------------------------------------------- /examples/freertos/iot/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/src/main.c -------------------------------------------------------------------------------- /examples/freertos/iot/src/mbedtls_sample_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/src/mbedtls_sample_config.h -------------------------------------------------------------------------------- /examples/freertos/iot/src/mem_analysis/mem_analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/src/mem_analysis/mem_analysis.c -------------------------------------------------------------------------------- /examples/freertos/iot/src/mem_analysis/mem_analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/src/mem_analysis/mem_analysis.h -------------------------------------------------------------------------------- /examples/freertos/iot/src/mqtt_demo/mqtt_demo_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/src/mqtt_demo/mqtt_demo_client.c -------------------------------------------------------------------------------- /examples/freertos/iot/src/mqtt_demo/mqtt_demo_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/src/mqtt_demo/mqtt_demo_client.h -------------------------------------------------------------------------------- /examples/freertos/iot/src/network_demos/network_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/src/network_demos/network_setup.c -------------------------------------------------------------------------------- /examples/freertos/iot/src/network_demos/network_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/src/network_demos/network_setup.h -------------------------------------------------------------------------------- /examples/freertos/iot/src/xcore_trace_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/iot/src/xcore_trace_config.h -------------------------------------------------------------------------------- /examples/freertos/l2_cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/l2_cache/README.md -------------------------------------------------------------------------------- /examples/freertos/l2_cache/XCORE-AI-EXPLORER.xn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/l2_cache/XCORE-AI-EXPLORER.xn -------------------------------------------------------------------------------- /examples/freertos/l2_cache/l2_cache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/l2_cache/l2_cache.cmake -------------------------------------------------------------------------------- /examples/freertos/l2_cache/src/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/l2_cache/src/FreeRTOSConfig.h -------------------------------------------------------------------------------- /examples/freertos/l2_cache/src/app_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/l2_cache/src/app_common.h -------------------------------------------------------------------------------- /examples/freertos/l2_cache/src/config.xscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/l2_cache/src/config.xscope -------------------------------------------------------------------------------- /examples/freertos/l2_cache/src/example_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/l2_cache/src/example_code.c -------------------------------------------------------------------------------- /examples/freertos/l2_cache/src/example_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/l2_cache/src/example_code.h -------------------------------------------------------------------------------- /examples/freertos/l2_cache/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/l2_cache/src/main.c -------------------------------------------------------------------------------- /examples/freertos/l2_cache/src/print_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/l2_cache/src/print_info.c -------------------------------------------------------------------------------- /examples/freertos/l2_cache/src/print_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/l2_cache/src/print_info.h -------------------------------------------------------------------------------- /examples/freertos/tracealyzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/tracealyzer/README.md -------------------------------------------------------------------------------- /examples/freertos/tracealyzer/XCORE-AI-EXPLORER.xn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/tracealyzer/XCORE-AI-EXPLORER.xn -------------------------------------------------------------------------------- /examples/freertos/tracealyzer/host/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/tracealyzer/host/CMakeLists.txt -------------------------------------------------------------------------------- /examples/freertos/tracealyzer/host/xscope2psf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/tracealyzer/host/xscope2psf.c -------------------------------------------------------------------------------- /examples/freertos/tracealyzer/src/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/tracealyzer/src/FreeRTOSConfig.h -------------------------------------------------------------------------------- /examples/freertos/tracealyzer/src/config.xscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/tracealyzer/src/config.xscope -------------------------------------------------------------------------------- /examples/freertos/tracealyzer/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/tracealyzer/src/main.c -------------------------------------------------------------------------------- /examples/freertos/tracealyzer/src/trcConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/tracealyzer/src/trcConfig.h -------------------------------------------------------------------------------- /examples/freertos/tracealyzer/src/trcKernelPortConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/tracealyzer/src/trcKernelPortConfig.h -------------------------------------------------------------------------------- /examples/freertos/tracealyzer/src/trcKernelPortStreamingConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/tracealyzer/src/trcKernelPortStreamingConfig.h -------------------------------------------------------------------------------- /examples/freertos/tracealyzer/src/trcStreamPortConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/tracealyzer/src/trcStreamPortConfig.h -------------------------------------------------------------------------------- /examples/freertos/tracealyzer/src/trcStreamingConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/tracealyzer/src/trcStreamingConfig.h -------------------------------------------------------------------------------- /examples/freertos/tracealyzer/tracealyzer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/tracealyzer/tracealyzer.cmake -------------------------------------------------------------------------------- /examples/freertos/xlink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/README.md -------------------------------------------------------------------------------- /examples/freertos/xlink/XCORE-AI-EXPLORER.xn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/XCORE-AI-EXPLORER.xn -------------------------------------------------------------------------------- /examples/freertos/xlink/XCORE-AI-EXPLORER_tx.xn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/XCORE-AI-EXPLORER_tx.xn -------------------------------------------------------------------------------- /examples/freertos/xlink/bsp_config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/bsp_config/CMakeLists.txt -------------------------------------------------------------------------------- /examples/freertos/xlink/bsp_config/XCORE-AI-EXPLORER_2V0/platform/driver_instances.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/bsp_config/XCORE-AI-EXPLORER_2V0/platform/driver_instances.c -------------------------------------------------------------------------------- /examples/freertos/xlink/bsp_config/XCORE-AI-EXPLORER_2V0/platform/driver_instances.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/bsp_config/XCORE-AI-EXPLORER_2V0/platform/driver_instances.h -------------------------------------------------------------------------------- /examples/freertos/xlink/bsp_config/XCORE-AI-EXPLORER_2V0/platform/platform_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/bsp_config/XCORE-AI-EXPLORER_2V0/platform/platform_conf.h -------------------------------------------------------------------------------- /examples/freertos/xlink/bsp_config/XCORE-AI-EXPLORER_2V0/platform/platform_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/bsp_config/XCORE-AI-EXPLORER_2V0/platform/platform_init.c -------------------------------------------------------------------------------- /examples/freertos/xlink/bsp_config/XCORE-AI-EXPLORER_2V0/platform/platform_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/bsp_config/XCORE-AI-EXPLORER_2V0/platform/platform_init.h -------------------------------------------------------------------------------- /examples/freertos/xlink/bsp_config/XCORE-AI-EXPLORER_2V0/platform/platform_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/bsp_config/XCORE-AI-EXPLORER_2V0/platform/platform_start.c -------------------------------------------------------------------------------- /examples/freertos/xlink/src/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/src/FreeRTOSConfig.h -------------------------------------------------------------------------------- /examples/freertos/xlink/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/src/app_conf.h -------------------------------------------------------------------------------- /examples/freertos/xlink/src/link/link_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/src/link/link_helpers.c -------------------------------------------------------------------------------- /examples/freertos/xlink/src/link/link_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/src/link/link_helpers.h -------------------------------------------------------------------------------- /examples/freertos/xlink/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/src/main.c -------------------------------------------------------------------------------- /examples/freertos/xlink/src/xlink_rx/xlink_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/src/xlink_rx/xlink_rx.c -------------------------------------------------------------------------------- /examples/freertos/xlink/src/xlink_rx/xlink_rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/src/xlink_rx/xlink_rx.h -------------------------------------------------------------------------------- /examples/freertos/xlink/src/xlink_tx/xlink_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/src/xlink_tx/xlink_tx.c -------------------------------------------------------------------------------- /examples/freertos/xlink/src/xlink_tx/xlink_tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/src/xlink_tx/xlink_tx.h -------------------------------------------------------------------------------- /examples/freertos/xlink/xlink.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xlink/xlink.cmake -------------------------------------------------------------------------------- /examples/freertos/xscope_fileio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xscope_fileio/README.md -------------------------------------------------------------------------------- /examples/freertos/xscope_fileio/XCORE-AI-EXPLORER.xn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xscope_fileio/XCORE-AI-EXPLORER.xn -------------------------------------------------------------------------------- /examples/freertos/xscope_fileio/diagrams/functional_diagram.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xscope_fileio/diagrams/functional_diagram.drawio -------------------------------------------------------------------------------- /examples/freertos/xscope_fileio/in.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xscope_fileio/in.wav -------------------------------------------------------------------------------- /examples/freertos/xscope_fileio/src/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xscope_fileio/src/FreeRTOSConfig.h -------------------------------------------------------------------------------- /examples/freertos/xscope_fileio/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xscope_fileio/src/app_conf.h -------------------------------------------------------------------------------- /examples/freertos/xscope_fileio/src/config.xscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xscope_fileio/src/config.xscope -------------------------------------------------------------------------------- /examples/freertos/xscope_fileio/src/data_pipeline/api/data_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xscope_fileio/src/data_pipeline/api/data_pipeline.h -------------------------------------------------------------------------------- /examples/freertos/xscope_fileio/src/data_pipeline/src/data_pipeline_tile0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xscope_fileio/src/data_pipeline/src/data_pipeline_tile0.c -------------------------------------------------------------------------------- /examples/freertos/xscope_fileio/src/data_pipeline/src/data_pipeline_tile1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xscope_fileio/src/data_pipeline/src/data_pipeline_tile1.c -------------------------------------------------------------------------------- /examples/freertos/xscope_fileio/src/fileio/xscope_fileio_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xscope_fileio/src/fileio/xscope_fileio_task.c -------------------------------------------------------------------------------- /examples/freertos/xscope_fileio/src/fileio/xscope_fileio_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xscope_fileio/src/fileio/xscope_fileio_task.h -------------------------------------------------------------------------------- /examples/freertos/xscope_fileio/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xscope_fileio/src/main.c -------------------------------------------------------------------------------- /examples/freertos/xscope_fileio/src/wav/wav_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xscope_fileio/src/wav/wav_utils.c -------------------------------------------------------------------------------- /examples/freertos/xscope_fileio/src/wav/wav_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xscope_fileio/src/wav/wav_utils.h -------------------------------------------------------------------------------- /examples/freertos/xscope_fileio/xscope_fileio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/examples/freertos/xscope_fileio/xscope_fileio.cmake -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/index.rst -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/inferencing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/modules/inferencing/CMakeLists.txt -------------------------------------------------------------------------------- /modules/sample_rate_conversion/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/modules/sample_rate_conversion/CMakeLists.txt -------------------------------------------------------------------------------- /modules/xscope_fileio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/modules/xscope_fileio/CMakeLists.txt -------------------------------------------------------------------------------- /projects/eclipse/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/projects/eclipse/.cproject -------------------------------------------------------------------------------- /projects/eclipse/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/projects/eclipse/.project -------------------------------------------------------------------------------- /projects/eclipse/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/projects/eclipse/.settings/language.settings.xml -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/settings.json -------------------------------------------------------------------------------- /test/examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/examples/README.rst -------------------------------------------------------------------------------- /test/examples/run_freertos_explorer_board_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/examples/run_freertos_explorer_board_tests.sh -------------------------------------------------------------------------------- /test/examples/run_freertos_getting_started_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/examples/run_freertos_getting_started_tests.sh -------------------------------------------------------------------------------- /test/examples/run_freertos_l2_cache_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/examples/run_freertos_l2_cache_tests.sh -------------------------------------------------------------------------------- /test/examples/run_freertos_tracealyzer_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/examples/run_freertos_tracealyzer_tests.sh -------------------------------------------------------------------------------- /test/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/requirements.txt -------------------------------------------------------------------------------- /test/tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/tests.cmake -------------------------------------------------------------------------------- /test/usb/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/README.rst -------------------------------------------------------------------------------- /test/usb/XCORE-AI-EXPLORER.xn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/XCORE-AI-EXPLORER.xn -------------------------------------------------------------------------------- /test/usb/dfu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/dfu.sh -------------------------------------------------------------------------------- /test/usb/src/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/src/FreeRTOSConfig.h -------------------------------------------------------------------------------- /test/usb/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/src/app_conf.h -------------------------------------------------------------------------------- /test/usb/src/config.xscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/src/config.xscope -------------------------------------------------------------------------------- /test/usb/src/dfu_demo_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/src/dfu_demo_support.c -------------------------------------------------------------------------------- /test/usb/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/src/main.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/audio_test/src/demo_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/audio_test/src/demo_main.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/audio_test/src/demo_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/audio_test/src/demo_main.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/audio_test/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/audio_test/src/tusb_config.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/audio_test/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/audio_test/src/usb_descriptors.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/cdc_dual_ports/src/demo_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/cdc_dual_ports/src/demo_main.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/cdc_dual_ports/src/demo_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/cdc_dual_ports/src/demo_main.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/cdc_dual_ports/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/cdc_dual_ports/src/tusb_config.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/cdc_dual_ports/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/cdc_dual_ports/src/usb_descriptors.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/cdc_msc/src/demo_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/cdc_msc/src/demo_main.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/cdc_msc/src/demo_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/cdc_msc/src/demo_main.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/cdc_msc/src/msc_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/cdc_msc/src/msc_disk.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/cdc_msc/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/cdc_msc/src/tusb_config.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/cdc_msc/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/cdc_msc/src/usb_descriptors.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/dfu/src/demo_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/dfu/src/demo_main.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/dfu/src/demo_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/dfu/src/demo_main.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/dfu/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/dfu/src/tusb_config.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/dfu/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/dfu/src/usb_descriptors.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/dfu_runtime/src/demo_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/dfu_runtime/src/demo_main.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/dfu_runtime/src/demo_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/dfu_runtime/src/demo_main.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/dfu_runtime/src/flash_boot_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/dfu_runtime/src/flash_boot_image.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/dfu_runtime/src/flash_boot_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/dfu_runtime/src/flash_boot_image.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/dfu_runtime/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/dfu_runtime/src/tusb_config.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/dfu_runtime/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/dfu_runtime/src/usb_descriptors.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_boot_interface/src/demo_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_boot_interface/src/demo_main.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_boot_interface/src/demo_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_boot_interface/src/demo_main.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_boot_interface/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_boot_interface/src/tusb_config.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_boot_interface/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_boot_interface/src/usb_descriptors.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_boot_interface/src/usb_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_boot_interface/src/usb_descriptors.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_composite/src/demo_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_composite/src/demo_main.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_composite/src/demo_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_composite/src/demo_main.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_composite/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_composite/src/tusb_config.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_composite/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_composite/src/usb_descriptors.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_composite/src/usb_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_composite/src/usb_descriptors.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_generic_inout/hid_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_generic_inout/hid_test.py -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_generic_inout/src/demo_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_generic_inout/src/demo_main.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_generic_inout/src/demo_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_generic_inout/src/demo_main.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_generic_inout/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_generic_inout/src/tusb_config.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_generic_inout/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_generic_inout/src/usb_descriptors.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_multiple_interface/src/demo_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_multiple_interface/src/demo_main.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_multiple_interface/src/demo_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_multiple_interface/src/demo_main.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_multiple_interface/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_multiple_interface/src/tusb_config.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/hid_multiple_interface/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/hid_multiple_interface/src/usb_descriptors.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/midi_test/src/demo_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/midi_test/src/demo_main.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/midi_test/src/demo_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/midi_test/src/demo_main.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/midi_test/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/midi_test/src/tusb_config.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/midi_test/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/midi_test/src/usb_descriptors.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/msc_dual_lun/src/demo_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/msc_dual_lun/src/demo_main.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/msc_dual_lun/src/demo_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/msc_dual_lun/src/demo_main.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/msc_dual_lun/src/msc_disk_dual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/msc_dual_lun/src/msc_disk_dual.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/msc_dual_lun/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/msc_dual_lun/src/tusb_config.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/msc_dual_lun/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/msc_dual_lun/src/usb_descriptors.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/uac2_headset/src/demo_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/uac2_headset/src/demo_main.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/uac2_headset/src/demo_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/uac2_headset/src/demo_main.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/uac2_headset/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/uac2_headset/src/tusb_config.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/uac2_headset/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/uac2_headset/src/usb_descriptors.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/uac2_headset/src/usb_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/uac2_headset/src/usb_descriptors.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/usbtmc/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/usbtmc/demo.py -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/usbtmc/src/demo_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/usbtmc/src/demo_main.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/usbtmc/src/demo_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/usbtmc/src/demo_main.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/usbtmc/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/usbtmc/src/tusb_config.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/usbtmc/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/usbtmc/src/usb_descriptors.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/usbtmc/src/usbtmc_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/usbtmc/src/usbtmc_app.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/usbtmc/src/usbtmc_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/usbtmc/src/usbtmc_app.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/video_capture/src/demo_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/video_capture/src/demo_main.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/video_capture/src/demo_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/video_capture/src/demo_main.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/video_capture/src/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/video_capture/src/images.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/video_capture/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/video_capture/src/tusb_config.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/video_capture/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/video_capture/src/usb_descriptors.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/video_capture/src/usb_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/video_capture/src/usb_descriptors.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/webusb_serial/src/demo_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/webusb_serial/src/demo_main.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/webusb_serial/src/demo_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/webusb_serial/src/demo_main.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/webusb_serial/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/webusb_serial/src/tusb_config.h -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/webusb_serial/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/webusb_serial/src/usb_descriptors.c -------------------------------------------------------------------------------- /test/usb/tinyusb_demos/webusb_serial/src/usb_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/tinyusb_demos/webusb_serial/src/usb_descriptors.h -------------------------------------------------------------------------------- /test/usb/usb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/usb/usb.cmake -------------------------------------------------------------------------------- /test/verify_python_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/test/verify_python_install.py -------------------------------------------------------------------------------- /tools/ci/.xmos_ignore_source_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/tools/ci/.xmos_ignore_source_check -------------------------------------------------------------------------------- /tools/ci/build_host_apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/tools/ci/build_host_apps.sh -------------------------------------------------------------------------------- /tools/ci/build_metal_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/tools/ci/build_metal_examples.sh -------------------------------------------------------------------------------- /tools/ci/build_pdfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/tools/ci/build_pdfs.sh -------------------------------------------------------------------------------- /tools/ci/build_rtos_aiot_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/tools/ci/build_rtos_aiot_examples.sh -------------------------------------------------------------------------------- /tools/ci/build_rtos_core_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/tools/ci/build_rtos_core_examples.sh -------------------------------------------------------------------------------- /tools/ci/build_rtos_usb_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/tools/ci/build_rtos_usb_tests.sh -------------------------------------------------------------------------------- /tools/ci/build_xmath_walkthrough_pdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/tools/ci/build_xmath_walkthrough_pdf.sh -------------------------------------------------------------------------------- /tools/ci/build_xmath_walkthrough_zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/tools/ci/build_xmath_walkthrough_zip.sh -------------------------------------------------------------------------------- /tools/ci/clean_xmath_walkthrough.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/tools/ci/clean_xmath_walkthrough.sh -------------------------------------------------------------------------------- /tools/ci/fetch_xmath_walkthrough.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/tools/ci/fetch_xmath_walkthrough.sh -------------------------------------------------------------------------------- /tools/ci/helper_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/tools/ci/helper_functions.sh -------------------------------------------------------------------------------- /tools/ci/run_submodule_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmos/xcore_iot/HEAD/tools/ci/run_submodule_report.sh -------------------------------------------------------------------------------- /tools/install/requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | numpy 3 | Pillow 4 | --------------------------------------------------------------------------------