├── .editorconfig ├── .github └── workflows │ ├── sync-jira.yml │ └── upload_component.yml ├── .gitignore ├── .gitlab-ci-override-idf-component.yml ├── .gitlab-ci.yml ├── .gitlab └── ci │ ├── regression_pipeline_jobs.yml │ ├── rules.yml │ ├── sanity_pipeline_jobs.yml │ └── templates.yml ├── .gitmodules ├── .idf_build_apps.toml ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CMakeLists.txt ├── Kconfig ├── LICENSE ├── README.md ├── common ├── esp_hosted_header.h ├── esp_hosted_interface.h ├── esp_hosted_lwip_src_port_hook.h ├── log │ └── esp_hosted_log.h ├── proto │ ├── README.md │ ├── esp_hosted_rpc.pb-c.c │ ├── esp_hosted_rpc.pb-c.h │ └── esp_hosted_rpc.proto ├── rpc │ ├── esp_hosted_bitmasks.h │ └── esp_hosted_rpc.h ├── transport │ ├── esp_hosted_transport.h │ ├── esp_hosted_transport_init.h │ └── esp_hosted_transport_spi_hd.h └── utils │ ├── esp_hosted_cli.c │ └── esp_hosted_cli.h ├── docs ├── bluetooth_design.md ├── design_consideration.md ├── esp32_p4_function_ev_board.md ├── feature_host_power_save.md ├── feature_network_split.md ├── features.md ├── images │ ├── ESP-Hosted-FG-MCU_design.svg │ ├── PerformanceSetup-ShieldBox.png │ ├── esp32-p4-esp-prog.jpg │ ├── esp32-p4-function-ev-board-esp-prog.jpg │ ├── esp32-p4-function-ev-board.jpg │ ├── hosted_diagram-ditaa.svg │ ├── hosted_diagram-ditaa.txt │ ├── hosted_wifi_call.svg │ ├── hosted_wifi_call.txt │ ├── native_wifi_call.svg │ ├── native_wifi_call.txt │ ├── spi_hd_sequence_init.svg │ ├── spi_hd_sequence_init.txt │ ├── spi_hd_sequence_read.svg │ ├── spi_hd_sequence_read.txt │ ├── spi_hd_sequence_write.svg │ ├── spi_hd_sequence_write.txt │ ├── spi_hd_timing_2_lines.svg │ ├── spi_hd_timing_2_lines.txt │ ├── spi_hd_timing_4_lines.svg │ └── spi_hd_timing_4_lines.txt ├── implemented_rpcs.md ├── migration_guide.md ├── performance_optimization.md ├── sdio.md ├── setup_esp_idf__latest_stable__linux_macos.fish ├── setup_esp_idf__latest_stable__linux_macos.sh ├── shield-box-test-setup.md ├── spi_full_duplex.md ├── spi_half_duplex.md ├── troubleshooting.md ├── uart.md └── wifi_design.md ├── examples ├── host_bluedroid_ble_compatibility_test │ ├── CMakeLists.txt │ ├── README.md │ ├── ble_compatibility_test_case.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── ble_compatibility_test.c │ │ ├── ble_compatibility_test.h │ │ └── idf_component.yml │ └── sdkconfig.defaults ├── host_bluedroid_bt_hid_mouse_device │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── Kconfig.projbuild │ │ ├── idf_component.yml │ │ └── main.c │ ├── sdkconfig.defaults │ ├── sdkconfig.defaults.esp32h2 │ └── sdkconfig.defaults.esp32p4 ├── host_bluedroid_host_only │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── idf_component.yml │ │ └── main.c │ ├── sdkconfig.defaults │ ├── sdkconfig.defaults.esp32h2 │ └── sdkconfig.defaults.esp32p4 ├── host_bt_controller_mac_addr │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── Kconfig.projbuild │ │ ├── idf_component.yml │ │ └── main.c │ └── sdkconfig.defaults ├── host_network_split__power_save │ ├── CMakeLists.txt │ ├── README.md │ ├── README_iperf.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── idf_component.yml │ │ └── iperf_example_main.c │ ├── sdkconfig.ci.sdio │ ├── sdkconfig.ci.spi │ ├── sdkconfig.ci.spi_hd │ ├── sdkconfig.ci.uart │ ├── sdkconfig.defaults │ ├── sdkconfig.defaults.esp32 │ ├── sdkconfig.defaults.esp32c2 │ ├── sdkconfig.defaults.esp32c3 │ ├── sdkconfig.defaults.esp32c5 │ ├── sdkconfig.defaults.esp32c6 │ ├── sdkconfig.defaults.esp32c61 │ ├── sdkconfig.defaults.esp32p4 │ ├── sdkconfig.defaults.esp32s2 │ └── sdkconfig.defaults.esp32s3 ├── host_nimble_bleprph_host_only_uart_hci │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── Kconfig.projbuild │ │ ├── bleprph.h │ │ ├── gatt_svr.c │ │ ├── idf_component.yml │ │ ├── main.c │ │ ├── uart_driver.c │ │ └── uart_driver.h │ ├── sdkconfig.defaults │ └── tutorial │ │ ├── bleprph_host_only_walkthrough.md │ │ └── hardware_setup.jpg ├── host_nimble_bleprph_host_only_vhci │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── Kconfig.projbuild │ │ ├── bleprph.h │ │ ├── gatt_svr.c │ │ ├── idf_component.yml │ │ └── main.c │ └── sdkconfig.defaults ├── host_performs_slave_ota │ ├── CMakeLists.txt │ ├── README.md │ ├── components │ │ ├── common_ota_scripts │ │ │ ├── find_newest_firmware.cmake │ │ │ └── flash_selected_firmware.cmake │ │ ├── ota_https │ │ │ ├── CMakeLists.txt │ │ │ ├── ota_https.c │ │ │ ├── ota_https.h │ │ │ ├── ota_https_wifi.c │ │ │ └── test_server │ │ │ │ ├── README.md │ │ │ │ ├── create_https_server.py │ │ │ │ └── create_self_signed_certs.sh │ │ ├── ota_littlefs │ │ │ ├── CMakeLists.txt │ │ │ ├── ota_littlefs.c │ │ │ └── ota_littlefs.h │ │ └── ota_partition │ │ │ ├── CMakeLists.txt │ │ │ ├── ota_partition.c │ │ │ └── ota_partition.h │ ├── main │ │ ├── CMakeLists.txt │ │ ├── Kconfig.projbuild │ │ ├── idf_component.yml │ │ └── main.c │ ├── partitions.csv │ └── sdkconfig.defaults ├── host_sdcard_with_hosted │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── Kconfig.projbuild │ │ ├── esp_hosted_wifi.c │ │ ├── esp_hosted_wifi.h │ │ ├── idf_component.yml │ │ ├── sd_card_example_common.h │ │ ├── sd_card_example_main.c │ │ ├── sd_card_functions.c │ │ └── sd_card_functions.h │ ├── pytest_sdmmc_card_example.py │ ├── sdkconfig.ci │ ├── sdkconfig.defaults │ └── sdkconfig.defaults.esp32p4 ├── host_transport_config │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── idf_component.yml │ │ └── transport_config_main.c │ └── sdkconfig.defaults ├── host_wifi_easy_connect_dpp_enrollee │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── Kconfig.projbuild │ │ ├── dpp_enrollee_main.c │ │ └── idf_component.yml │ ├── sdkconfig.defaults │ └── sdkconfig.defaults.esp32p4 └── host_wifi_itwt │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ ├── CMakeLists.txt │ ├── Kconfig.projbuild │ ├── idf_component.yml │ ├── itwt_main.c │ ├── wifi_cmd.h │ ├── wifi_itwt_cmd.c │ └── wifi_stats_cmd.c │ ├── sdkconfig.defaults │ └── sdkconfig.defaults.esp32p4 ├── host ├── api │ ├── include │ │ ├── esp_hosted_api_types.h │ │ ├── esp_hosted_ota.h │ │ ├── esp_hosted_power_save.h │ │ ├── esp_hosted_transport_config.h │ │ └── esp_hosted_wifi_remote_glue.h │ ├── priv │ │ └── esp_hosted_api_priv.h │ └── src │ │ ├── esp_hosted_api.c │ │ ├── esp_hosted_ota_api.c │ │ ├── esp_hosted_transport_config.c │ │ └── esp_wifi_weak.c ├── drivers │ ├── bt │ │ ├── hci_drv.h │ │ ├── hci_stub_drv.c │ │ └── vhci_drv.c │ ├── mempool │ │ ├── CMakeLists.txt │ │ ├── mempool.c │ │ └── mempool.h │ ├── power_save │ │ ├── power_save_drv.c │ │ └── power_save_drv.h │ ├── rpc │ │ ├── core │ │ │ ├── rpc_core.c │ │ │ ├── rpc_core.h │ │ │ ├── rpc_evt.c │ │ │ ├── rpc_req.c │ │ │ ├── rpc_rsp.c │ │ │ ├── rpc_utils.c │ │ │ └── rpc_utils.h │ │ ├── slaveif │ │ │ ├── rpc_slave_if.c │ │ │ └── rpc_slave_if.h │ │ └── wrap │ │ │ ├── rpc_wrap.c │ │ │ └── rpc_wrap.h │ ├── serial │ │ ├── serial_drv.c │ │ ├── serial_drv.h │ │ ├── serial_ll_if.c │ │ └── serial_ll_if.h │ ├── transport │ │ ├── sdio │ │ │ ├── sdio_drv.c │ │ │ ├── sdio_drv.h │ │ │ └── sdio_reg.h │ │ ├── spi │ │ │ ├── spi_drv.c │ │ │ └── spi_drv.h │ │ ├── spi_hd │ │ │ ├── spi_hd_drv.c │ │ │ └── spi_hd_drv.h │ │ ├── transport_drv.c │ │ ├── transport_drv.h │ │ └── uart │ │ │ └── uart_drv.c │ └── virtual_serial_if │ │ ├── serial_if.c │ │ └── serial_if.h ├── esp_hosted.h ├── esp_hosted_bluedroid.h ├── esp_hosted_bt.h ├── esp_hosted_host_fw_ver.h ├── esp_hosted_misc.h ├── esp_hosted_os_abstraction.h ├── port │ └── esp │ │ └── freertos │ │ ├── include │ │ ├── port_esp_hosted_host_bt_config.h │ │ ├── port_esp_hosted_host_config.h │ │ ├── port_esp_hosted_host_log.h │ │ ├── port_esp_hosted_host_os.h │ │ ├── port_esp_hosted_host_sdio.h │ │ ├── port_esp_hosted_host_spi.h │ │ ├── port_esp_hosted_host_spi_hd.h │ │ ├── port_esp_hosted_host_uart.h │ │ └── port_esp_hosted_host_wifi_config.h │ │ └── src │ │ ├── port_esp_hosted_host_init.c │ │ ├── port_esp_hosted_host_os.c │ │ ├── port_esp_hosted_host_sdio.c │ │ ├── port_esp_hosted_host_spi.c │ │ ├── port_esp_hosted_host_spi_hd.c │ │ ├── port_esp_hosted_host_transport_defaults.c │ │ └── port_esp_hosted_host_uart.c └── utils │ ├── stats.c │ └── stats.h ├── idf_component.yml ├── sdkconfig.ci.all_features_enabled ├── sdkconfig.rename ├── slave ├── CMakeLists.txt ├── README.md ├── main │ ├── CMakeLists.txt │ ├── Kconfig.projbuild │ ├── esp_hosted_coprocessor.c │ ├── esp_hosted_coprocessor.h │ ├── esp_hosted_coprocessor_fw_ver.h │ ├── host_power_save.c │ ├── host_power_save.h │ ├── http_req.c │ ├── idf_component.yml │ ├── interface.h │ ├── lwip_filter.c │ ├── lwip_filter.h │ ├── mempool.c │ ├── mempool.h │ ├── mempool_ll.c │ ├── mempool_ll.h │ ├── mqtt_example.c │ ├── mqtt_example.h │ ├── protocomm_pserial.c │ ├── protocomm_pserial.h │ ├── sdio_slave_api.c │ ├── sdio_slave_api.h │ ├── slave_bt.c │ ├── slave_bt.h │ ├── slave_bt_uart.h │ ├── slave_bt_uart_esp32.c │ ├── slave_bt_uart_esp32c3_s3.c │ ├── slave_bt_uart_esp32xx.c │ ├── slave_config.h │ ├── slave_control.c │ ├── slave_control.h │ ├── slave_wifi_config.h │ ├── spi_hd_slave_api.c │ ├── spi_slave_api.c │ ├── stats.c │ ├── stats.h │ └── uart_slave_api.c ├── partitions.esp32.csv ├── partitions.esp32c2.csv ├── partitions.esp32c3.csv ├── partitions.esp32c5.csv ├── partitions.esp32c6.csv ├── partitions.esp32c61.csv ├── partitions.esp32s2.csv ├── partitions.esp32s3.csv ├── sdkconfig.ci.all_features ├── sdkconfig.ci.dpp ├── sdkconfig.ci.sdio ├── sdkconfig.ci.spi ├── sdkconfig.ci.spi_hd ├── sdkconfig.ci.uart ├── sdkconfig.ci.wifi_enterprise ├── sdkconfig.defaults ├── sdkconfig.defaults.esp32 ├── sdkconfig.defaults.esp32c2 ├── sdkconfig.defaults.esp32c3 ├── sdkconfig.defaults.esp32c5 ├── sdkconfig.defaults.esp32c6 ├── sdkconfig.defaults.esp32c61 └── sdkconfig.defaults.esp32s3 └── tools ├── check_changelog.py ├── check_copyright_config.yaml ├── check_fw_versions.py └── check_rpc_calls.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/sync-jira.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/.github/workflows/sync-jira.yml -------------------------------------------------------------------------------- /.github/workflows/upload_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/.github/workflows/upload_component.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci-override-idf-component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/.gitlab-ci-override-idf-component.yml -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/ci/regression_pipeline_jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/.gitlab/ci/regression_pipeline_jobs.yml -------------------------------------------------------------------------------- /.gitlab/ci/rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/.gitlab/ci/rules.yml -------------------------------------------------------------------------------- /.gitlab/ci/sanity_pipeline_jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/.gitlab/ci/sanity_pipeline_jobs.yml -------------------------------------------------------------------------------- /.gitlab/ci/templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/.gitlab/ci/templates.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idf_build_apps.toml: -------------------------------------------------------------------------------- 1 | build_log_filename = "" 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/Kconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/README.md -------------------------------------------------------------------------------- /common/esp_hosted_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/common/esp_hosted_header.h -------------------------------------------------------------------------------- /common/esp_hosted_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/common/esp_hosted_interface.h -------------------------------------------------------------------------------- /common/esp_hosted_lwip_src_port_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/common/esp_hosted_lwip_src_port_hook.h -------------------------------------------------------------------------------- /common/log/esp_hosted_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/common/log/esp_hosted_log.h -------------------------------------------------------------------------------- /common/proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/common/proto/README.md -------------------------------------------------------------------------------- /common/proto/esp_hosted_rpc.pb-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/common/proto/esp_hosted_rpc.pb-c.c -------------------------------------------------------------------------------- /common/proto/esp_hosted_rpc.pb-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/common/proto/esp_hosted_rpc.pb-c.h -------------------------------------------------------------------------------- /common/proto/esp_hosted_rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/common/proto/esp_hosted_rpc.proto -------------------------------------------------------------------------------- /common/rpc/esp_hosted_bitmasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/common/rpc/esp_hosted_bitmasks.h -------------------------------------------------------------------------------- /common/rpc/esp_hosted_rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/common/rpc/esp_hosted_rpc.h -------------------------------------------------------------------------------- /common/transport/esp_hosted_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/common/transport/esp_hosted_transport.h -------------------------------------------------------------------------------- /common/transport/esp_hosted_transport_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/common/transport/esp_hosted_transport_init.h -------------------------------------------------------------------------------- /common/transport/esp_hosted_transport_spi_hd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/common/transport/esp_hosted_transport_spi_hd.h -------------------------------------------------------------------------------- /common/utils/esp_hosted_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/common/utils/esp_hosted_cli.c -------------------------------------------------------------------------------- /common/utils/esp_hosted_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/common/utils/esp_hosted_cli.h -------------------------------------------------------------------------------- /docs/bluetooth_design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/bluetooth_design.md -------------------------------------------------------------------------------- /docs/design_consideration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/design_consideration.md -------------------------------------------------------------------------------- /docs/esp32_p4_function_ev_board.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/esp32_p4_function_ev_board.md -------------------------------------------------------------------------------- /docs/feature_host_power_save.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/feature_host_power_save.md -------------------------------------------------------------------------------- /docs/feature_network_split.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/feature_network_split.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/images/ESP-Hosted-FG-MCU_design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/ESP-Hosted-FG-MCU_design.svg -------------------------------------------------------------------------------- /docs/images/PerformanceSetup-ShieldBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/PerformanceSetup-ShieldBox.png -------------------------------------------------------------------------------- /docs/images/esp32-p4-esp-prog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/esp32-p4-esp-prog.jpg -------------------------------------------------------------------------------- /docs/images/esp32-p4-function-ev-board-esp-prog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/esp32-p4-function-ev-board-esp-prog.jpg -------------------------------------------------------------------------------- /docs/images/esp32-p4-function-ev-board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/esp32-p4-function-ev-board.jpg -------------------------------------------------------------------------------- /docs/images/hosted_diagram-ditaa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/hosted_diagram-ditaa.svg -------------------------------------------------------------------------------- /docs/images/hosted_diagram-ditaa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/hosted_diagram-ditaa.txt -------------------------------------------------------------------------------- /docs/images/hosted_wifi_call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/hosted_wifi_call.svg -------------------------------------------------------------------------------- /docs/images/hosted_wifi_call.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/hosted_wifi_call.txt -------------------------------------------------------------------------------- /docs/images/native_wifi_call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/native_wifi_call.svg -------------------------------------------------------------------------------- /docs/images/native_wifi_call.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/native_wifi_call.txt -------------------------------------------------------------------------------- /docs/images/spi_hd_sequence_init.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/spi_hd_sequence_init.svg -------------------------------------------------------------------------------- /docs/images/spi_hd_sequence_init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/spi_hd_sequence_init.txt -------------------------------------------------------------------------------- /docs/images/spi_hd_sequence_read.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/spi_hd_sequence_read.svg -------------------------------------------------------------------------------- /docs/images/spi_hd_sequence_read.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/spi_hd_sequence_read.txt -------------------------------------------------------------------------------- /docs/images/spi_hd_sequence_write.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/spi_hd_sequence_write.svg -------------------------------------------------------------------------------- /docs/images/spi_hd_sequence_write.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/spi_hd_sequence_write.txt -------------------------------------------------------------------------------- /docs/images/spi_hd_timing_2_lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/spi_hd_timing_2_lines.svg -------------------------------------------------------------------------------- /docs/images/spi_hd_timing_2_lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/spi_hd_timing_2_lines.txt -------------------------------------------------------------------------------- /docs/images/spi_hd_timing_4_lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/spi_hd_timing_4_lines.svg -------------------------------------------------------------------------------- /docs/images/spi_hd_timing_4_lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/images/spi_hd_timing_4_lines.txt -------------------------------------------------------------------------------- /docs/implemented_rpcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/implemented_rpcs.md -------------------------------------------------------------------------------- /docs/migration_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/migration_guide.md -------------------------------------------------------------------------------- /docs/performance_optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/performance_optimization.md -------------------------------------------------------------------------------- /docs/sdio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/sdio.md -------------------------------------------------------------------------------- /docs/setup_esp_idf__latest_stable__linux_macos.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/setup_esp_idf__latest_stable__linux_macos.fish -------------------------------------------------------------------------------- /docs/setup_esp_idf__latest_stable__linux_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/setup_esp_idf__latest_stable__linux_macos.sh -------------------------------------------------------------------------------- /docs/shield-box-test-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/shield-box-test-setup.md -------------------------------------------------------------------------------- /docs/spi_full_duplex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/spi_full_duplex.md -------------------------------------------------------------------------------- /docs/spi_half_duplex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/spi_half_duplex.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/uart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/uart.md -------------------------------------------------------------------------------- /docs/wifi_design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/docs/wifi_design.md -------------------------------------------------------------------------------- /examples/host_bluedroid_ble_compatibility_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_ble_compatibility_test/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_bluedroid_ble_compatibility_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_ble_compatibility_test/README.md -------------------------------------------------------------------------------- /examples/host_bluedroid_ble_compatibility_test/ble_compatibility_test_case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_ble_compatibility_test/ble_compatibility_test_case.md -------------------------------------------------------------------------------- /examples/host_bluedroid_ble_compatibility_test/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_ble_compatibility_test/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_bluedroid_ble_compatibility_test/main/ble_compatibility_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_ble_compatibility_test/main/ble_compatibility_test.c -------------------------------------------------------------------------------- /examples/host_bluedroid_ble_compatibility_test/main/ble_compatibility_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_ble_compatibility_test/main/ble_compatibility_test.h -------------------------------------------------------------------------------- /examples/host_bluedroid_ble_compatibility_test/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_ble_compatibility_test/main/idf_component.yml -------------------------------------------------------------------------------- /examples/host_bluedroid_ble_compatibility_test/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_ble_compatibility_test/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/host_bluedroid_bt_hid_mouse_device/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_bt_hid_mouse_device/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_bluedroid_bt_hid_mouse_device/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_bt_hid_mouse_device/README.md -------------------------------------------------------------------------------- /examples/host_bluedroid_bt_hid_mouse_device/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_bt_hid_mouse_device/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_bluedroid_bt_hid_mouse_device/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_bt_hid_mouse_device/main/Kconfig.projbuild -------------------------------------------------------------------------------- /examples/host_bluedroid_bt_hid_mouse_device/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_bt_hid_mouse_device/main/idf_component.yml -------------------------------------------------------------------------------- /examples/host_bluedroid_bt_hid_mouse_device/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_bt_hid_mouse_device/main/main.c -------------------------------------------------------------------------------- /examples/host_bluedroid_bt_hid_mouse_device/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_bt_hid_mouse_device/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/host_bluedroid_bt_hid_mouse_device/sdkconfig.defaults.esp32h2: -------------------------------------------------------------------------------- 1 | CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y 2 | -------------------------------------------------------------------------------- /examples/host_bluedroid_bt_hid_mouse_device/sdkconfig.defaults.esp32p4: -------------------------------------------------------------------------------- 1 | CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y 2 | -------------------------------------------------------------------------------- /examples/host_bluedroid_host_only/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_host_only/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_bluedroid_host_only/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_host_only/README.md -------------------------------------------------------------------------------- /examples/host_bluedroid_host_only/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_host_only/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_bluedroid_host_only/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_host_only/main/idf_component.yml -------------------------------------------------------------------------------- /examples/host_bluedroid_host_only/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_host_only/main/main.c -------------------------------------------------------------------------------- /examples/host_bluedroid_host_only/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bluedroid_host_only/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/host_bluedroid_host_only/sdkconfig.defaults.esp32h2: -------------------------------------------------------------------------------- 1 | CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y 2 | -------------------------------------------------------------------------------- /examples/host_bluedroid_host_only/sdkconfig.defaults.esp32p4: -------------------------------------------------------------------------------- 1 | CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y 2 | -------------------------------------------------------------------------------- /examples/host_bt_controller_mac_addr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bt_controller_mac_addr/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_bt_controller_mac_addr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bt_controller_mac_addr/README.md -------------------------------------------------------------------------------- /examples/host_bt_controller_mac_addr/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bt_controller_mac_addr/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_bt_controller_mac_addr/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bt_controller_mac_addr/main/Kconfig.projbuild -------------------------------------------------------------------------------- /examples/host_bt_controller_mac_addr/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bt_controller_mac_addr/main/idf_component.yml -------------------------------------------------------------------------------- /examples/host_bt_controller_mac_addr/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bt_controller_mac_addr/main/main.c -------------------------------------------------------------------------------- /examples/host_bt_controller_mac_addr/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_bt_controller_mac_addr/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/host_network_split__power_save/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_network_split__power_save/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/README.md -------------------------------------------------------------------------------- /examples/host_network_split__power_save/README_iperf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/README_iperf.md -------------------------------------------------------------------------------- /examples/host_network_split__power_save/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_network_split__power_save/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/main/idf_component.yml -------------------------------------------------------------------------------- /examples/host_network_split__power_save/main/iperf_example_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/main/iperf_example_main.c -------------------------------------------------------------------------------- /examples/host_network_split__power_save/sdkconfig.ci.sdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/sdkconfig.ci.sdio -------------------------------------------------------------------------------- /examples/host_network_split__power_save/sdkconfig.ci.spi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/sdkconfig.ci.spi -------------------------------------------------------------------------------- /examples/host_network_split__power_save/sdkconfig.ci.spi_hd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/sdkconfig.ci.spi_hd -------------------------------------------------------------------------------- /examples/host_network_split__power_save/sdkconfig.ci.uart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/sdkconfig.ci.uart -------------------------------------------------------------------------------- /examples/host_network_split__power_save/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/host_network_split__power_save/sdkconfig.defaults.esp32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/sdkconfig.defaults.esp32 -------------------------------------------------------------------------------- /examples/host_network_split__power_save/sdkconfig.defaults.esp32c2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/sdkconfig.defaults.esp32c2 -------------------------------------------------------------------------------- /examples/host_network_split__power_save/sdkconfig.defaults.esp32c3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/sdkconfig.defaults.esp32c3 -------------------------------------------------------------------------------- /examples/host_network_split__power_save/sdkconfig.defaults.esp32c5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/sdkconfig.defaults.esp32c5 -------------------------------------------------------------------------------- /examples/host_network_split__power_save/sdkconfig.defaults.esp32c6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/sdkconfig.defaults.esp32c6 -------------------------------------------------------------------------------- /examples/host_network_split__power_save/sdkconfig.defaults.esp32c61: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/sdkconfig.defaults.esp32c61 -------------------------------------------------------------------------------- /examples/host_network_split__power_save/sdkconfig.defaults.esp32p4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/sdkconfig.defaults.esp32p4 -------------------------------------------------------------------------------- /examples/host_network_split__power_save/sdkconfig.defaults.esp32s2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/sdkconfig.defaults.esp32s2 -------------------------------------------------------------------------------- /examples/host_network_split__power_save/sdkconfig.defaults.esp32s3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_network_split__power_save/sdkconfig.defaults.esp32s3 -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_uart_hci/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_uart_hci/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_uart_hci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_uart_hci/README.md -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_uart_hci/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_uart_hci/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_uart_hci/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_uart_hci/main/Kconfig.projbuild -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_uart_hci/main/bleprph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_uart_hci/main/bleprph.h -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_uart_hci/main/gatt_svr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_uart_hci/main/gatt_svr.c -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_uart_hci/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_uart_hci/main/idf_component.yml -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_uart_hci/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_uart_hci/main/main.c -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_uart_hci/main/uart_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_uart_hci/main/uart_driver.c -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_uart_hci/main/uart_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_uart_hci/main/uart_driver.h -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_uart_hci/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_uart_hci/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_uart_hci/tutorial/bleprph_host_only_walkthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_uart_hci/tutorial/bleprph_host_only_walkthrough.md -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_uart_hci/tutorial/hardware_setup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_uart_hci/tutorial/hardware_setup.jpg -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_vhci/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_vhci/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_vhci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_vhci/README.md -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_vhci/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_vhci/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_vhci/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_vhci/main/Kconfig.projbuild -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_vhci/main/bleprph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_vhci/main/bleprph.h -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_vhci/main/gatt_svr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_vhci/main/gatt_svr.c -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_vhci/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_vhci/main/idf_component.yml -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_vhci/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_vhci/main/main.c -------------------------------------------------------------------------------- /examples/host_nimble_bleprph_host_only_vhci/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_nimble_bleprph_host_only_vhci/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/README.md -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/components/common_ota_scripts/find_newest_firmware.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/components/common_ota_scripts/find_newest_firmware.cmake -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/components/common_ota_scripts/flash_selected_firmware.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/components/common_ota_scripts/flash_selected_firmware.cmake -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/components/ota_https/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/components/ota_https/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/components/ota_https/ota_https.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/components/ota_https/ota_https.c -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/components/ota_https/ota_https.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/components/ota_https/ota_https.h -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/components/ota_https/ota_https_wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/components/ota_https/ota_https_wifi.c -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/components/ota_https/test_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/components/ota_https/test_server/README.md -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/components/ota_https/test_server/create_https_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/components/ota_https/test_server/create_https_server.py -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/components/ota_https/test_server/create_self_signed_certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/components/ota_https/test_server/create_self_signed_certs.sh -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/components/ota_littlefs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/components/ota_littlefs/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/components/ota_littlefs/ota_littlefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/components/ota_littlefs/ota_littlefs.c -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/components/ota_littlefs/ota_littlefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/components/ota_littlefs/ota_littlefs.h -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/components/ota_partition/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/components/ota_partition/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/components/ota_partition/ota_partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/components/ota_partition/ota_partition.c -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/components/ota_partition/ota_partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/components/ota_partition/ota_partition.h -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/main/Kconfig.projbuild -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/main/idf_component.yml -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/main/main.c -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/partitions.csv -------------------------------------------------------------------------------- /examples/host_performs_slave_ota/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_performs_slave_ota/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/host_sdcard_with_hosted/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_sdcard_with_hosted/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_sdcard_with_hosted/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_sdcard_with_hosted/README.md -------------------------------------------------------------------------------- /examples/host_sdcard_with_hosted/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_sdcard_with_hosted/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_sdcard_with_hosted/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_sdcard_with_hosted/main/Kconfig.projbuild -------------------------------------------------------------------------------- /examples/host_sdcard_with_hosted/main/esp_hosted_wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_sdcard_with_hosted/main/esp_hosted_wifi.c -------------------------------------------------------------------------------- /examples/host_sdcard_with_hosted/main/esp_hosted_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_sdcard_with_hosted/main/esp_hosted_wifi.h -------------------------------------------------------------------------------- /examples/host_sdcard_with_hosted/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_sdcard_with_hosted/main/idf_component.yml -------------------------------------------------------------------------------- /examples/host_sdcard_with_hosted/main/sd_card_example_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_sdcard_with_hosted/main/sd_card_example_common.h -------------------------------------------------------------------------------- /examples/host_sdcard_with_hosted/main/sd_card_example_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_sdcard_with_hosted/main/sd_card_example_main.c -------------------------------------------------------------------------------- /examples/host_sdcard_with_hosted/main/sd_card_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_sdcard_with_hosted/main/sd_card_functions.c -------------------------------------------------------------------------------- /examples/host_sdcard_with_hosted/main/sd_card_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_sdcard_with_hosted/main/sd_card_functions.h -------------------------------------------------------------------------------- /examples/host_sdcard_with_hosted/pytest_sdmmc_card_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_sdcard_with_hosted/pytest_sdmmc_card_example.py -------------------------------------------------------------------------------- /examples/host_sdcard_with_hosted/sdkconfig.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_sdcard_with_hosted/sdkconfig.ci -------------------------------------------------------------------------------- /examples/host_sdcard_with_hosted/sdkconfig.defaults: -------------------------------------------------------------------------------- 1 | CONFIG_FATFS_VFS_FSTAT_BLKSIZE=4096 2 | -------------------------------------------------------------------------------- /examples/host_sdcard_with_hosted/sdkconfig.defaults.esp32p4: -------------------------------------------------------------------------------- 1 | CONFIG_WIFI_RMT_NVS_ENABLED=n 2 | -------------------------------------------------------------------------------- /examples/host_transport_config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_transport_config/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_transport_config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_transport_config/README.md -------------------------------------------------------------------------------- /examples/host_transport_config/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_transport_config/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_transport_config/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_transport_config/main/idf_component.yml -------------------------------------------------------------------------------- /examples/host_transport_config/main/transport_config_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_transport_config/main/transport_config_main.c -------------------------------------------------------------------------------- /examples/host_transport_config/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_transport_config/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/host_wifi_easy_connect_dpp_enrollee/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_easy_connect_dpp_enrollee/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_wifi_easy_connect_dpp_enrollee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_easy_connect_dpp_enrollee/README.md -------------------------------------------------------------------------------- /examples/host_wifi_easy_connect_dpp_enrollee/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_easy_connect_dpp_enrollee/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_wifi_easy_connect_dpp_enrollee/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_easy_connect_dpp_enrollee/main/Kconfig.projbuild -------------------------------------------------------------------------------- /examples/host_wifi_easy_connect_dpp_enrollee/main/dpp_enrollee_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_easy_connect_dpp_enrollee/main/dpp_enrollee_main.c -------------------------------------------------------------------------------- /examples/host_wifi_easy_connect_dpp_enrollee/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_easy_connect_dpp_enrollee/main/idf_component.yml -------------------------------------------------------------------------------- /examples/host_wifi_easy_connect_dpp_enrollee/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_easy_connect_dpp_enrollee/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/host_wifi_easy_connect_dpp_enrollee/sdkconfig.defaults.esp32p4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_easy_connect_dpp_enrollee/sdkconfig.defaults.esp32p4 -------------------------------------------------------------------------------- /examples/host_wifi_itwt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_itwt/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_wifi_itwt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_itwt/README.md -------------------------------------------------------------------------------- /examples/host_wifi_itwt/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_itwt/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/host_wifi_itwt/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_itwt/main/Kconfig.projbuild -------------------------------------------------------------------------------- /examples/host_wifi_itwt/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_itwt/main/idf_component.yml -------------------------------------------------------------------------------- /examples/host_wifi_itwt/main/itwt_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_itwt/main/itwt_main.c -------------------------------------------------------------------------------- /examples/host_wifi_itwt/main/wifi_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_itwt/main/wifi_cmd.h -------------------------------------------------------------------------------- /examples/host_wifi_itwt/main/wifi_itwt_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_itwt/main/wifi_itwt_cmd.c -------------------------------------------------------------------------------- /examples/host_wifi_itwt/main/wifi_stats_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_itwt/main/wifi_stats_cmd.c -------------------------------------------------------------------------------- /examples/host_wifi_itwt/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/examples/host_wifi_itwt/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/host_wifi_itwt/sdkconfig.defaults.esp32p4: -------------------------------------------------------------------------------- 1 | CONFIG_EXAMPLE_MAX_CPU_FREQ_90=y 2 | -------------------------------------------------------------------------------- /host/api/include/esp_hosted_api_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/api/include/esp_hosted_api_types.h -------------------------------------------------------------------------------- /host/api/include/esp_hosted_ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/api/include/esp_hosted_ota.h -------------------------------------------------------------------------------- /host/api/include/esp_hosted_power_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/api/include/esp_hosted_power_save.h -------------------------------------------------------------------------------- /host/api/include/esp_hosted_transport_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/api/include/esp_hosted_transport_config.h -------------------------------------------------------------------------------- /host/api/include/esp_hosted_wifi_remote_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/api/include/esp_hosted_wifi_remote_glue.h -------------------------------------------------------------------------------- /host/api/priv/esp_hosted_api_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/api/priv/esp_hosted_api_priv.h -------------------------------------------------------------------------------- /host/api/src/esp_hosted_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/api/src/esp_hosted_api.c -------------------------------------------------------------------------------- /host/api/src/esp_hosted_ota_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/api/src/esp_hosted_ota_api.c -------------------------------------------------------------------------------- /host/api/src/esp_hosted_transport_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/api/src/esp_hosted_transport_config.c -------------------------------------------------------------------------------- /host/api/src/esp_wifi_weak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/api/src/esp_wifi_weak.c -------------------------------------------------------------------------------- /host/drivers/bt/hci_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/bt/hci_drv.h -------------------------------------------------------------------------------- /host/drivers/bt/hci_stub_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/bt/hci_stub_drv.c -------------------------------------------------------------------------------- /host/drivers/bt/vhci_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/bt/vhci_drv.c -------------------------------------------------------------------------------- /host/drivers/mempool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/mempool/CMakeLists.txt -------------------------------------------------------------------------------- /host/drivers/mempool/mempool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/mempool/mempool.c -------------------------------------------------------------------------------- /host/drivers/mempool/mempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/mempool/mempool.h -------------------------------------------------------------------------------- /host/drivers/power_save/power_save_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/power_save/power_save_drv.c -------------------------------------------------------------------------------- /host/drivers/power_save/power_save_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/power_save/power_save_drv.h -------------------------------------------------------------------------------- /host/drivers/rpc/core/rpc_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/rpc/core/rpc_core.c -------------------------------------------------------------------------------- /host/drivers/rpc/core/rpc_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/rpc/core/rpc_core.h -------------------------------------------------------------------------------- /host/drivers/rpc/core/rpc_evt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/rpc/core/rpc_evt.c -------------------------------------------------------------------------------- /host/drivers/rpc/core/rpc_req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/rpc/core/rpc_req.c -------------------------------------------------------------------------------- /host/drivers/rpc/core/rpc_rsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/rpc/core/rpc_rsp.c -------------------------------------------------------------------------------- /host/drivers/rpc/core/rpc_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/rpc/core/rpc_utils.c -------------------------------------------------------------------------------- /host/drivers/rpc/core/rpc_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/rpc/core/rpc_utils.h -------------------------------------------------------------------------------- /host/drivers/rpc/slaveif/rpc_slave_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/rpc/slaveif/rpc_slave_if.c -------------------------------------------------------------------------------- /host/drivers/rpc/slaveif/rpc_slave_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/rpc/slaveif/rpc_slave_if.h -------------------------------------------------------------------------------- /host/drivers/rpc/wrap/rpc_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/rpc/wrap/rpc_wrap.c -------------------------------------------------------------------------------- /host/drivers/rpc/wrap/rpc_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/rpc/wrap/rpc_wrap.h -------------------------------------------------------------------------------- /host/drivers/serial/serial_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/serial/serial_drv.c -------------------------------------------------------------------------------- /host/drivers/serial/serial_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/serial/serial_drv.h -------------------------------------------------------------------------------- /host/drivers/serial/serial_ll_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/serial/serial_ll_if.c -------------------------------------------------------------------------------- /host/drivers/serial/serial_ll_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/serial/serial_ll_if.h -------------------------------------------------------------------------------- /host/drivers/transport/sdio/sdio_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/transport/sdio/sdio_drv.c -------------------------------------------------------------------------------- /host/drivers/transport/sdio/sdio_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/transport/sdio/sdio_drv.h -------------------------------------------------------------------------------- /host/drivers/transport/sdio/sdio_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/transport/sdio/sdio_reg.h -------------------------------------------------------------------------------- /host/drivers/transport/spi/spi_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/transport/spi/spi_drv.c -------------------------------------------------------------------------------- /host/drivers/transport/spi/spi_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/transport/spi/spi_drv.h -------------------------------------------------------------------------------- /host/drivers/transport/spi_hd/spi_hd_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/transport/spi_hd/spi_hd_drv.c -------------------------------------------------------------------------------- /host/drivers/transport/spi_hd/spi_hd_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/transport/spi_hd/spi_hd_drv.h -------------------------------------------------------------------------------- /host/drivers/transport/transport_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/transport/transport_drv.c -------------------------------------------------------------------------------- /host/drivers/transport/transport_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/transport/transport_drv.h -------------------------------------------------------------------------------- /host/drivers/transport/uart/uart_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/transport/uart/uart_drv.c -------------------------------------------------------------------------------- /host/drivers/virtual_serial_if/serial_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/virtual_serial_if/serial_if.c -------------------------------------------------------------------------------- /host/drivers/virtual_serial_if/serial_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/drivers/virtual_serial_if/serial_if.h -------------------------------------------------------------------------------- /host/esp_hosted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/esp_hosted.h -------------------------------------------------------------------------------- /host/esp_hosted_bluedroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/esp_hosted_bluedroid.h -------------------------------------------------------------------------------- /host/esp_hosted_bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/esp_hosted_bt.h -------------------------------------------------------------------------------- /host/esp_hosted_host_fw_ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/esp_hosted_host_fw_ver.h -------------------------------------------------------------------------------- /host/esp_hosted_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/esp_hosted_misc.h -------------------------------------------------------------------------------- /host/esp_hosted_os_abstraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/esp_hosted_os_abstraction.h -------------------------------------------------------------------------------- /host/port/esp/freertos/include/port_esp_hosted_host_bt_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/port/esp/freertos/include/port_esp_hosted_host_bt_config.h -------------------------------------------------------------------------------- /host/port/esp/freertos/include/port_esp_hosted_host_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/port/esp/freertos/include/port_esp_hosted_host_config.h -------------------------------------------------------------------------------- /host/port/esp/freertos/include/port_esp_hosted_host_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/port/esp/freertos/include/port_esp_hosted_host_log.h -------------------------------------------------------------------------------- /host/port/esp/freertos/include/port_esp_hosted_host_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/port/esp/freertos/include/port_esp_hosted_host_os.h -------------------------------------------------------------------------------- /host/port/esp/freertos/include/port_esp_hosted_host_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/port/esp/freertos/include/port_esp_hosted_host_sdio.h -------------------------------------------------------------------------------- /host/port/esp/freertos/include/port_esp_hosted_host_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/port/esp/freertos/include/port_esp_hosted_host_spi.h -------------------------------------------------------------------------------- /host/port/esp/freertos/include/port_esp_hosted_host_spi_hd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/port/esp/freertos/include/port_esp_hosted_host_spi_hd.h -------------------------------------------------------------------------------- /host/port/esp/freertos/include/port_esp_hosted_host_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/port/esp/freertos/include/port_esp_hosted_host_uart.h -------------------------------------------------------------------------------- /host/port/esp/freertos/include/port_esp_hosted_host_wifi_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/port/esp/freertos/include/port_esp_hosted_host_wifi_config.h -------------------------------------------------------------------------------- /host/port/esp/freertos/src/port_esp_hosted_host_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/port/esp/freertos/src/port_esp_hosted_host_init.c -------------------------------------------------------------------------------- /host/port/esp/freertos/src/port_esp_hosted_host_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/port/esp/freertos/src/port_esp_hosted_host_os.c -------------------------------------------------------------------------------- /host/port/esp/freertos/src/port_esp_hosted_host_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/port/esp/freertos/src/port_esp_hosted_host_sdio.c -------------------------------------------------------------------------------- /host/port/esp/freertos/src/port_esp_hosted_host_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/port/esp/freertos/src/port_esp_hosted_host_spi.c -------------------------------------------------------------------------------- /host/port/esp/freertos/src/port_esp_hosted_host_spi_hd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/port/esp/freertos/src/port_esp_hosted_host_spi_hd.c -------------------------------------------------------------------------------- /host/port/esp/freertos/src/port_esp_hosted_host_transport_defaults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/port/esp/freertos/src/port_esp_hosted_host_transport_defaults.c -------------------------------------------------------------------------------- /host/port/esp/freertos/src/port_esp_hosted_host_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/port/esp/freertos/src/port_esp_hosted_host_uart.c -------------------------------------------------------------------------------- /host/utils/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/utils/stats.c -------------------------------------------------------------------------------- /host/utils/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/host/utils/stats.h -------------------------------------------------------------------------------- /idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/idf_component.yml -------------------------------------------------------------------------------- /sdkconfig.ci.all_features_enabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/sdkconfig.ci.all_features_enabled -------------------------------------------------------------------------------- /sdkconfig.rename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/sdkconfig.rename -------------------------------------------------------------------------------- /slave/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/CMakeLists.txt -------------------------------------------------------------------------------- /slave/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/README.md -------------------------------------------------------------------------------- /slave/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/CMakeLists.txt -------------------------------------------------------------------------------- /slave/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/Kconfig.projbuild -------------------------------------------------------------------------------- /slave/main/esp_hosted_coprocessor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/esp_hosted_coprocessor.c -------------------------------------------------------------------------------- /slave/main/esp_hosted_coprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/esp_hosted_coprocessor.h -------------------------------------------------------------------------------- /slave/main/esp_hosted_coprocessor_fw_ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/esp_hosted_coprocessor_fw_ver.h -------------------------------------------------------------------------------- /slave/main/host_power_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/host_power_save.c -------------------------------------------------------------------------------- /slave/main/host_power_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/host_power_save.h -------------------------------------------------------------------------------- /slave/main/http_req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/http_req.c -------------------------------------------------------------------------------- /slave/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/idf_component.yml -------------------------------------------------------------------------------- /slave/main/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/interface.h -------------------------------------------------------------------------------- /slave/main/lwip_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/lwip_filter.c -------------------------------------------------------------------------------- /slave/main/lwip_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/lwip_filter.h -------------------------------------------------------------------------------- /slave/main/mempool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/mempool.c -------------------------------------------------------------------------------- /slave/main/mempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/mempool.h -------------------------------------------------------------------------------- /slave/main/mempool_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/mempool_ll.c -------------------------------------------------------------------------------- /slave/main/mempool_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/mempool_ll.h -------------------------------------------------------------------------------- /slave/main/mqtt_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/mqtt_example.c -------------------------------------------------------------------------------- /slave/main/mqtt_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/mqtt_example.h -------------------------------------------------------------------------------- /slave/main/protocomm_pserial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/protocomm_pserial.c -------------------------------------------------------------------------------- /slave/main/protocomm_pserial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/protocomm_pserial.h -------------------------------------------------------------------------------- /slave/main/sdio_slave_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/sdio_slave_api.c -------------------------------------------------------------------------------- /slave/main/sdio_slave_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/sdio_slave_api.h -------------------------------------------------------------------------------- /slave/main/slave_bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/slave_bt.c -------------------------------------------------------------------------------- /slave/main/slave_bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/slave_bt.h -------------------------------------------------------------------------------- /slave/main/slave_bt_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/slave_bt_uart.h -------------------------------------------------------------------------------- /slave/main/slave_bt_uart_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/slave_bt_uart_esp32.c -------------------------------------------------------------------------------- /slave/main/slave_bt_uart_esp32c3_s3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/slave_bt_uart_esp32c3_s3.c -------------------------------------------------------------------------------- /slave/main/slave_bt_uart_esp32xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/slave_bt_uart_esp32xx.c -------------------------------------------------------------------------------- /slave/main/slave_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/slave_config.h -------------------------------------------------------------------------------- /slave/main/slave_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/slave_control.c -------------------------------------------------------------------------------- /slave/main/slave_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/slave_control.h -------------------------------------------------------------------------------- /slave/main/slave_wifi_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/slave_wifi_config.h -------------------------------------------------------------------------------- /slave/main/spi_hd_slave_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/spi_hd_slave_api.c -------------------------------------------------------------------------------- /slave/main/spi_slave_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/spi_slave_api.c -------------------------------------------------------------------------------- /slave/main/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/stats.c -------------------------------------------------------------------------------- /slave/main/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/stats.h -------------------------------------------------------------------------------- /slave/main/uart_slave_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/main/uart_slave_api.c -------------------------------------------------------------------------------- /slave/partitions.esp32.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/partitions.esp32.csv -------------------------------------------------------------------------------- /slave/partitions.esp32c2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/partitions.esp32c2.csv -------------------------------------------------------------------------------- /slave/partitions.esp32c3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/partitions.esp32c3.csv -------------------------------------------------------------------------------- /slave/partitions.esp32c5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/partitions.esp32c5.csv -------------------------------------------------------------------------------- /slave/partitions.esp32c6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/partitions.esp32c6.csv -------------------------------------------------------------------------------- /slave/partitions.esp32c61.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/partitions.esp32c61.csv -------------------------------------------------------------------------------- /slave/partitions.esp32s2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/partitions.esp32s2.csv -------------------------------------------------------------------------------- /slave/partitions.esp32s3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/partitions.esp32s3.csv -------------------------------------------------------------------------------- /slave/sdkconfig.ci.all_features: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/sdkconfig.ci.all_features -------------------------------------------------------------------------------- /slave/sdkconfig.ci.dpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/sdkconfig.ci.dpp -------------------------------------------------------------------------------- /slave/sdkconfig.ci.sdio: -------------------------------------------------------------------------------- 1 | CONFIG_ESP_SDIO_HOST_INTERFACE=y 2 | -------------------------------------------------------------------------------- /slave/sdkconfig.ci.spi: -------------------------------------------------------------------------------- 1 | CONFIG_ESP_SPI_HOST_INTERFACE=y 2 | -------------------------------------------------------------------------------- /slave/sdkconfig.ci.spi_hd: -------------------------------------------------------------------------------- 1 | CONFIG_ESP_SPI_HD_HOST_INTERFACE=y 2 | -------------------------------------------------------------------------------- /slave/sdkconfig.ci.uart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/sdkconfig.ci.uart -------------------------------------------------------------------------------- /slave/sdkconfig.ci.wifi_enterprise: -------------------------------------------------------------------------------- 1 | CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT=y 2 | -------------------------------------------------------------------------------- /slave/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/sdkconfig.defaults -------------------------------------------------------------------------------- /slave/sdkconfig.defaults.esp32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/sdkconfig.defaults.esp32 -------------------------------------------------------------------------------- /slave/sdkconfig.defaults.esp32c2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/sdkconfig.defaults.esp32c2 -------------------------------------------------------------------------------- /slave/sdkconfig.defaults.esp32c3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/sdkconfig.defaults.esp32c3 -------------------------------------------------------------------------------- /slave/sdkconfig.defaults.esp32c5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/sdkconfig.defaults.esp32c5 -------------------------------------------------------------------------------- /slave/sdkconfig.defaults.esp32c6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/sdkconfig.defaults.esp32c6 -------------------------------------------------------------------------------- /slave/sdkconfig.defaults.esp32c61: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/sdkconfig.defaults.esp32c61 -------------------------------------------------------------------------------- /slave/sdkconfig.defaults.esp32s3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/slave/sdkconfig.defaults.esp32s3 -------------------------------------------------------------------------------- /tools/check_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/tools/check_changelog.py -------------------------------------------------------------------------------- /tools/check_copyright_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/tools/check_copyright_config.yaml -------------------------------------------------------------------------------- /tools/check_fw_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/tools/check_fw_versions.py -------------------------------------------------------------------------------- /tools/check_rpc_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-hosted-mcu/HEAD/tools/check_rpc_calls.py --------------------------------------------------------------------------------