├── .codespellrc ├── .github └── ISSUE_TEMPLATE │ └── ask_issue.md ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab ├── ci │ ├── auto_trans.yml │ ├── build_docs.yml │ ├── deploy.yml │ ├── pre_check.yml │ ├── pre_commit.yml │ ├── publish_docs_to_cdp.yml │ ├── push_to_github.sh │ ├── rules.yml │ └── utils.sh └── tools │ ├── detect_inconsistent_line_num.py │ ├── post-mr-note.py │ ├── print_rst_file_path.py │ └── script_user_guide.txt ├── .lbcf.yml ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── README_CN.md ├── docs ├── _static │ ├── application-solution.png │ ├── baidu_analytics.js │ ├── chip-marking.png │ ├── development-environment.png │ ├── docs_version.js │ ├── espressif-logo.svg │ ├── hardware-related.png │ ├── instruction.png │ ├── js │ │ ├── chatbot_widget.css │ │ ├── chatbot_widget_cn.js │ │ └── chatbot_widget_en.js │ ├── no-component.png │ ├── software-framework.png │ ├── test-verification.png │ └── theme_overrides.css ├── build_example.sh ├── check_lang_folder_sync.sh ├── conf_common.py ├── en │ ├── Makefile │ ├── _static │ │ ├── application-solution │ │ │ ├── android-application │ │ │ │ └── _static.txt │ │ │ ├── arduino-application │ │ │ │ └── _static.txt │ │ │ ├── artificial-intelligence │ │ │ │ └── _static.txt │ │ │ ├── at-application │ │ │ │ ├── AT_BLESCAN_Return_LOG.png │ │ │ │ └── _static.txt │ │ │ ├── audio-development-framework │ │ │ │ └── _static.txt │ │ │ ├── cloud-service │ │ │ │ └── _static.txt │ │ │ └── ios -application │ │ │ │ └── _static.txt │ │ ├── development-environment │ │ │ ├── IDE-plugins │ │ │ │ └── _static.txt │ │ │ ├── debugging │ │ │ │ └── _static.txt │ │ │ ├── environment-setup │ │ │ │ └── _static.txt │ │ │ └── firmware_update │ │ │ │ └── _static.txt │ │ ├── get-started │ │ │ ├── document-contribution │ │ │ │ └── _static.txt │ │ │ ├── question-feedback │ │ │ │ └── _static.txt │ │ │ └── question-search │ │ │ │ └── _static.txt │ │ ├── hardware-related │ │ │ ├── chip-comparison │ │ │ │ └── _static.txt │ │ │ ├── development-board │ │ │ │ └── _static.txt │ │ │ └── hardware-design │ │ │ │ └── _static.txt │ │ ├── software-framework │ │ │ ├── ble-bt │ │ │ │ └── _static.txt │ │ │ ├── ethernet │ │ │ │ └── _static.txt │ │ │ ├── mesh │ │ │ │ └── _static.txt │ │ │ ├── peripherals │ │ │ │ └── _static.txt │ │ │ ├── protocols │ │ │ │ └── _static.txt │ │ │ ├── provisioning │ │ │ │ └── _static.txt │ │ │ ├── security │ │ │ │ └── _static.txt │ │ │ ├── storage │ │ │ │ └── _static.txt │ │ │ ├── system │ │ │ │ └── _static.txt │ │ │ └── wifi │ │ │ │ └── _static.txt │ │ └── test-verification │ │ │ └── power-consumption-verification │ │ │ └── _static.txt │ ├── _templates │ │ └── layout.html │ ├── application-solution │ │ ├── artificial-intelligence.rst │ │ ├── at-application.rst │ │ ├── audio-development-framework.rst │ │ ├── ble-mesh-development-framework.rst │ │ ├── camera-application.rst │ │ ├── esp-matter.rst │ │ ├── esp-now.rst │ │ ├── esp-rainmaker-cloud-service.rst │ │ ├── index.rst │ │ ├── third-party-cloud-service.rst │ │ └── wifi-mesh-development-framework.rst │ ├── commercial-faq │ │ └── index.rst │ ├── conf.py │ ├── development-environment │ │ ├── IDE-plugins.rst │ │ ├── debugging.rst │ │ ├── environment-setup.rst │ │ ├── firmware-update.rst │ │ └── index.rst │ ├── hardware-related │ │ ├── RF-related.rst │ │ ├── chip-comparison.rst │ │ ├── development-board.rst │ │ ├── hardware-design.rst │ │ ├── index.rst │ │ ├── process-and-ESD.rst │ │ └── production-test.rst │ ├── index.rst │ ├── instruction │ │ ├── document-contribution.rst │ │ ├── index.rst │ │ └── question-search.rst │ ├── software-framework │ │ ├── bt │ │ │ ├── ble.rst │ │ │ ├── br-edr.rst │ │ │ ├── index.rst │ │ │ └── other-bt.rst │ │ ├── coexistence.rst │ │ ├── ethernet.rst │ │ ├── index.rst │ │ ├── peripherals │ │ │ ├── adc.rst │ │ │ ├── dac.rst │ │ │ ├── gpio.rst │ │ │ ├── i2c.rst │ │ │ ├── i2s.rst │ │ │ ├── index.rst │ │ │ ├── lcd.rst │ │ │ ├── ledc.rst │ │ │ ├── mcpwm.rst │ │ │ ├── other-peripherals.rst │ │ │ ├── pcnt.rst │ │ │ ├── rmt.rst │ │ │ ├── sdio.rst │ │ │ ├── spi.rst │ │ │ ├── timer.rst │ │ │ ├── touch.rst │ │ │ ├── twai.rst │ │ │ ├── uart.rst │ │ │ └── usb.rst │ │ ├── protocols │ │ │ ├── esp-tls.rst │ │ │ ├── http.rst │ │ │ ├── index.rst │ │ │ ├── lwip.rst │ │ │ ├── mbedtls.rst │ │ │ ├── mqtt.rst │ │ │ └── other-protocols.rst │ │ ├── provisioning.rst │ │ ├── security.rst │ │ ├── storage │ │ │ ├── fatfs.rst │ │ │ ├── index.rst │ │ │ ├── nvs.rst │ │ │ ├── other-storages.rst │ │ │ ├── psram.rst │ │ │ ├── sd-sdio-mmc.rst │ │ │ ├── spi-flash.rst │ │ │ └── spiffs.rst │ │ ├── system.rst │ │ ├── thread.rst │ │ ├── wifi.rst │ │ └── zigbee.rst │ └── test-verification │ │ ├── index.rst │ │ └── power-consumption-verification.rst ├── requirements.txt └── zh_CN │ ├── Makefile │ ├── _static │ ├── application-solution │ │ ├── android-application │ │ │ └── _static.txt │ │ ├── arduino-application │ │ │ └── _static.txt │ │ ├── artificial-intelligence │ │ │ └── _static.txt │ │ ├── at-application │ │ │ ├── AT_BLESCAN_Return_LOG.png │ │ │ └── _static.txt │ │ ├── audio-development-framework │ │ │ └── _static.txt │ │ ├── cloud-service │ │ │ └── _static.txt │ │ └── ios -application │ │ │ └── _static.txt │ ├── development-environment │ │ ├── IDE-plugins │ │ │ └── _static.txt │ │ ├── debugging │ │ │ └── _static.txt │ │ ├── environment-setup │ │ │ └── _static.txt │ │ └── firmware_update │ │ │ └── _static.txt │ ├── get-started │ │ ├── document-contribution │ │ │ └── _static.txt │ │ ├── question-feedback │ │ │ └── _static.txt │ │ └── question-search │ │ │ └── _static.txt │ ├── hardware-related │ │ ├── chip-comparison │ │ │ └── _static.txt │ │ ├── development-board │ │ │ └── _static.txt │ │ └── hardware-design │ │ │ └── _static.txt │ ├── software-framework │ │ ├── ble-bt │ │ │ └── _static.txt │ │ ├── ethernet │ │ │ └── _static.txt │ │ ├── mesh │ │ │ └── _static.txt │ │ ├── peripherals │ │ │ └── _static.txt │ │ ├── protocols │ │ │ └── _static.txt │ │ ├── provisioning │ │ │ └── _static.txt │ │ ├── security │ │ │ └── _static.txt │ │ ├── storage │ │ │ └── _static.txt │ │ ├── system │ │ │ └── _static.txt │ │ └── wifi │ │ │ └── _static.txt │ └── test-verification │ │ └── power-consumption-verification │ │ └── _static.txt │ ├── _templates │ └── layout.html │ ├── application-solution │ ├── artificial-intelligence.rst │ ├── at-application.rst │ ├── audio-development-framework.rst │ ├── ble-mesh-development-framework.rst │ ├── camera-application.rst │ ├── esp-matter.rst │ ├── esp-now.rst │ ├── esp-rainmaker-cloud-service.rst │ ├── index.rst │ ├── third-party-cloud-service.rst │ └── wifi-mesh-development-framework.rst │ ├── commercial-faq │ └── index.rst │ ├── conf.py │ ├── development-environment │ ├── IDE-plugins.rst │ ├── debugging.rst │ ├── environment-setup.rst │ ├── firmware-update.rst │ └── index.rst │ ├── hardware-related │ ├── RF-related.rst │ ├── chip-comparison.rst │ ├── development-board.rst │ ├── hardware-design.rst │ ├── index.rst │ ├── process-and-ESD.rst │ └── production-test.rst │ ├── index.rst │ ├── instruction │ ├── document-contribution.rst │ ├── index.rst │ └── question-search.rst │ ├── software-framework │ ├── bt │ │ ├── ble.rst │ │ ├── br-edr.rst │ │ ├── index.rst │ │ └── other-bt.rst │ ├── coexistence.rst │ ├── ethernet.rst │ ├── index.rst │ ├── peripherals │ │ ├── adc.rst │ │ ├── dac.rst │ │ ├── gpio.rst │ │ ├── i2c.rst │ │ ├── i2s.rst │ │ ├── index.rst │ │ ├── lcd.rst │ │ ├── ledc.rst │ │ ├── mcpwm.rst │ │ ├── other-peripherals.rst │ │ ├── pcnt.rst │ │ ├── rmt.rst │ │ ├── sdio.rst │ │ ├── spi.rst │ │ ├── timer.rst │ │ ├── touch.rst │ │ ├── twai.rst │ │ ├── uart.rst │ │ └── usb.rst │ ├── protocols │ │ ├── esp-tls.rst │ │ ├── http.rst │ │ ├── index.rst │ │ ├── lwip.rst │ │ ├── mbedtls.rst │ │ ├── mqtt.rst │ │ └── other-protocols.rst │ ├── provisioning.rst │ ├── security.rst │ ├── storage │ │ ├── fatfs.rst │ │ ├── index.rst │ │ ├── nvs.rst │ │ ├── other-storages.rst │ │ ├── psram.rst │ │ ├── sd-sdio-mmc.rst │ │ ├── spi-flash.rst │ │ └── spiffs.rst │ ├── system.rst │ ├── thread.rst │ ├── wifi.rst │ └── zigbee.rst │ └── test-verification │ ├── index.rst │ └── power-consumption-verification.rst └── translate_config.yml /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.codespellrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ask_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.github/ISSUE_TEMPLATE/ask_issue.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/ci/auto_trans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.gitlab/ci/auto_trans.yml -------------------------------------------------------------------------------- /.gitlab/ci/build_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.gitlab/ci/build_docs.yml -------------------------------------------------------------------------------- /.gitlab/ci/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.gitlab/ci/deploy.yml -------------------------------------------------------------------------------- /.gitlab/ci/pre_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.gitlab/ci/pre_check.yml -------------------------------------------------------------------------------- /.gitlab/ci/pre_commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.gitlab/ci/pre_commit.yml -------------------------------------------------------------------------------- /.gitlab/ci/publish_docs_to_cdp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.gitlab/ci/publish_docs_to_cdp.yml -------------------------------------------------------------------------------- /.gitlab/ci/push_to_github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.gitlab/ci/push_to_github.sh -------------------------------------------------------------------------------- /.gitlab/ci/rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.gitlab/ci/rules.yml -------------------------------------------------------------------------------- /.gitlab/ci/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.gitlab/ci/utils.sh -------------------------------------------------------------------------------- /.gitlab/tools/detect_inconsistent_line_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.gitlab/tools/detect_inconsistent_line_num.py -------------------------------------------------------------------------------- /.gitlab/tools/post-mr-note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.gitlab/tools/post-mr-note.py -------------------------------------------------------------------------------- /.gitlab/tools/print_rst_file_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.gitlab/tools/print_rst_file_path.py -------------------------------------------------------------------------------- /.gitlab/tools/script_user_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.gitlab/tools/script_user_guide.txt -------------------------------------------------------------------------------- /.lbcf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.lbcf.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/README_CN.md -------------------------------------------------------------------------------- /docs/_static/application-solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/_static/application-solution.png -------------------------------------------------------------------------------- /docs/_static/baidu_analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/_static/baidu_analytics.js -------------------------------------------------------------------------------- /docs/_static/chip-marking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/_static/chip-marking.png -------------------------------------------------------------------------------- /docs/_static/development-environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/_static/development-environment.png -------------------------------------------------------------------------------- /docs/_static/docs_version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/_static/docs_version.js -------------------------------------------------------------------------------- /docs/_static/espressif-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/_static/espressif-logo.svg -------------------------------------------------------------------------------- /docs/_static/hardware-related.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/_static/hardware-related.png -------------------------------------------------------------------------------- /docs/_static/instruction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/_static/instruction.png -------------------------------------------------------------------------------- /docs/_static/js/chatbot_widget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/_static/js/chatbot_widget.css -------------------------------------------------------------------------------- /docs/_static/js/chatbot_widget_cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/_static/js/chatbot_widget_cn.js -------------------------------------------------------------------------------- /docs/_static/js/chatbot_widget_en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/_static/js/chatbot_widget_en.js -------------------------------------------------------------------------------- /docs/_static/no-component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/_static/no-component.png -------------------------------------------------------------------------------- /docs/_static/software-framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/_static/software-framework.png -------------------------------------------------------------------------------- /docs/_static/test-verification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/_static/test-verification.png -------------------------------------------------------------------------------- /docs/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/_static/theme_overrides.css -------------------------------------------------------------------------------- /docs/build_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/build_example.sh -------------------------------------------------------------------------------- /docs/check_lang_folder_sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/check_lang_folder_sync.sh -------------------------------------------------------------------------------- /docs/conf_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/conf_common.py -------------------------------------------------------------------------------- /docs/en/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/Makefile -------------------------------------------------------------------------------- /docs/en/_static/application-solution/android-application/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/application-solution/arduino-application/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/application-solution/artificial-intelligence/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/application-solution/at-application/AT_BLESCAN_Return_LOG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/_static/application-solution/at-application/AT_BLESCAN_Return_LOG.png -------------------------------------------------------------------------------- /docs/en/_static/application-solution/at-application/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/application-solution/audio-development-framework/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/application-solution/cloud-service/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/application-solution/ios -application/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/development-environment/IDE-plugins/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/development-environment/debugging/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/development-environment/environment-setup/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/development-environment/firmware_update/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/get-started/document-contribution/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/get-started/question-feedback/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/get-started/question-search/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/hardware-related/chip-comparison/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/hardware-related/development-board/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/hardware-related/hardware-design/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/software-framework/ble-bt/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/software-framework/ethernet/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/software-framework/mesh/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/software-framework/peripherals/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/software-framework/protocols/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/software-framework/provisioning/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/software-framework/security/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/software-framework/storage/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/software-framework/system/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/software-framework/wifi/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_static/test-verification/power-consumption-verification/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/_templates/layout.html -------------------------------------------------------------------------------- /docs/en/application-solution/artificial-intelligence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/application-solution/artificial-intelligence.rst -------------------------------------------------------------------------------- /docs/en/application-solution/at-application.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/application-solution/at-application.rst -------------------------------------------------------------------------------- /docs/en/application-solution/audio-development-framework.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/application-solution/audio-development-framework.rst -------------------------------------------------------------------------------- /docs/en/application-solution/ble-mesh-development-framework.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/application-solution/ble-mesh-development-framework.rst -------------------------------------------------------------------------------- /docs/en/application-solution/camera-application.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/application-solution/camera-application.rst -------------------------------------------------------------------------------- /docs/en/application-solution/esp-matter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/application-solution/esp-matter.rst -------------------------------------------------------------------------------- /docs/en/application-solution/esp-now.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/application-solution/esp-now.rst -------------------------------------------------------------------------------- /docs/en/application-solution/esp-rainmaker-cloud-service.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/application-solution/esp-rainmaker-cloud-service.rst -------------------------------------------------------------------------------- /docs/en/application-solution/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/application-solution/index.rst -------------------------------------------------------------------------------- /docs/en/application-solution/third-party-cloud-service.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/application-solution/third-party-cloud-service.rst -------------------------------------------------------------------------------- /docs/en/application-solution/wifi-mesh-development-framework.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/application-solution/wifi-mesh-development-framework.rst -------------------------------------------------------------------------------- /docs/en/commercial-faq/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/commercial-faq/index.rst -------------------------------------------------------------------------------- /docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/conf.py -------------------------------------------------------------------------------- /docs/en/development-environment/IDE-plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/development-environment/IDE-plugins.rst -------------------------------------------------------------------------------- /docs/en/development-environment/debugging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/development-environment/debugging.rst -------------------------------------------------------------------------------- /docs/en/development-environment/environment-setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/development-environment/environment-setup.rst -------------------------------------------------------------------------------- /docs/en/development-environment/firmware-update.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/development-environment/firmware-update.rst -------------------------------------------------------------------------------- /docs/en/development-environment/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/development-environment/index.rst -------------------------------------------------------------------------------- /docs/en/hardware-related/RF-related.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/hardware-related/RF-related.rst -------------------------------------------------------------------------------- /docs/en/hardware-related/chip-comparison.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/hardware-related/chip-comparison.rst -------------------------------------------------------------------------------- /docs/en/hardware-related/development-board.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/hardware-related/development-board.rst -------------------------------------------------------------------------------- /docs/en/hardware-related/hardware-design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/hardware-related/hardware-design.rst -------------------------------------------------------------------------------- /docs/en/hardware-related/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/hardware-related/index.rst -------------------------------------------------------------------------------- /docs/en/hardware-related/process-and-ESD.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/hardware-related/process-and-ESD.rst -------------------------------------------------------------------------------- /docs/en/hardware-related/production-test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/hardware-related/production-test.rst -------------------------------------------------------------------------------- /docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/index.rst -------------------------------------------------------------------------------- /docs/en/instruction/document-contribution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/instruction/document-contribution.rst -------------------------------------------------------------------------------- /docs/en/instruction/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/instruction/index.rst -------------------------------------------------------------------------------- /docs/en/instruction/question-search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/instruction/question-search.rst -------------------------------------------------------------------------------- /docs/en/software-framework/bt/ble.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/bt/ble.rst -------------------------------------------------------------------------------- /docs/en/software-framework/bt/br-edr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/bt/br-edr.rst -------------------------------------------------------------------------------- /docs/en/software-framework/bt/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/bt/index.rst -------------------------------------------------------------------------------- /docs/en/software-framework/bt/other-bt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/bt/other-bt.rst -------------------------------------------------------------------------------- /docs/en/software-framework/coexistence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/coexistence.rst -------------------------------------------------------------------------------- /docs/en/software-framework/ethernet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/ethernet.rst -------------------------------------------------------------------------------- /docs/en/software-framework/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/index.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/adc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/adc.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/dac.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/dac.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/gpio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/gpio.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/i2c.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/i2c.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/i2s.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/i2s.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/index.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/lcd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/lcd.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/ledc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/ledc.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/mcpwm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/mcpwm.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/other-peripherals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/other-peripherals.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/pcnt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/pcnt.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/rmt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/rmt.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/sdio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/sdio.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/spi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/spi.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/timer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/timer.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/touch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/touch.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/twai.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/twai.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/uart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/uart.rst -------------------------------------------------------------------------------- /docs/en/software-framework/peripherals/usb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/peripherals/usb.rst -------------------------------------------------------------------------------- /docs/en/software-framework/protocols/esp-tls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/protocols/esp-tls.rst -------------------------------------------------------------------------------- /docs/en/software-framework/protocols/http.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/protocols/http.rst -------------------------------------------------------------------------------- /docs/en/software-framework/protocols/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/protocols/index.rst -------------------------------------------------------------------------------- /docs/en/software-framework/protocols/lwip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/protocols/lwip.rst -------------------------------------------------------------------------------- /docs/en/software-framework/protocols/mbedtls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/protocols/mbedtls.rst -------------------------------------------------------------------------------- /docs/en/software-framework/protocols/mqtt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/protocols/mqtt.rst -------------------------------------------------------------------------------- /docs/en/software-framework/protocols/other-protocols.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/protocols/other-protocols.rst -------------------------------------------------------------------------------- /docs/en/software-framework/provisioning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/provisioning.rst -------------------------------------------------------------------------------- /docs/en/software-framework/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/security.rst -------------------------------------------------------------------------------- /docs/en/software-framework/storage/fatfs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/storage/fatfs.rst -------------------------------------------------------------------------------- /docs/en/software-framework/storage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/storage/index.rst -------------------------------------------------------------------------------- /docs/en/software-framework/storage/nvs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/storage/nvs.rst -------------------------------------------------------------------------------- /docs/en/software-framework/storage/other-storages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/storage/other-storages.rst -------------------------------------------------------------------------------- /docs/en/software-framework/storage/psram.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/storage/psram.rst -------------------------------------------------------------------------------- /docs/en/software-framework/storage/sd-sdio-mmc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/storage/sd-sdio-mmc.rst -------------------------------------------------------------------------------- /docs/en/software-framework/storage/spi-flash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/storage/spi-flash.rst -------------------------------------------------------------------------------- /docs/en/software-framework/storage/spiffs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/storage/spiffs.rst -------------------------------------------------------------------------------- /docs/en/software-framework/system.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/system.rst -------------------------------------------------------------------------------- /docs/en/software-framework/thread.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/thread.rst -------------------------------------------------------------------------------- /docs/en/software-framework/wifi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/wifi.rst -------------------------------------------------------------------------------- /docs/en/software-framework/zigbee.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/software-framework/zigbee.rst -------------------------------------------------------------------------------- /docs/en/test-verification/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/test-verification/index.rst -------------------------------------------------------------------------------- /docs/en/test-verification/power-consumption-verification.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/en/test-verification/power-consumption-verification.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/zh_CN/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/Makefile -------------------------------------------------------------------------------- /docs/zh_CN/_static/application-solution/android-application/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/application-solution/arduino-application/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/application-solution/artificial-intelligence/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/application-solution/at-application/AT_BLESCAN_Return_LOG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/_static/application-solution/at-application/AT_BLESCAN_Return_LOG.png -------------------------------------------------------------------------------- /docs/zh_CN/_static/application-solution/at-application/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/application-solution/audio-development-framework/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/application-solution/cloud-service/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/application-solution/ios -application/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/development-environment/IDE-plugins/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/development-environment/debugging/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/development-environment/environment-setup/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/development-environment/firmware_update/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/get-started/document-contribution/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/get-started/question-feedback/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/get-started/question-search/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/hardware-related/chip-comparison/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/hardware-related/development-board/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/hardware-related/hardware-design/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/software-framework/ble-bt/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/software-framework/ethernet/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/software-framework/mesh/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/software-framework/peripherals/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/software-framework/protocols/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/software-framework/provisioning/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/software-framework/security/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/software-framework/storage/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/software-framework/system/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/software-framework/wifi/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_static/test-verification/power-consumption-verification/_static.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_CN/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/_templates/layout.html -------------------------------------------------------------------------------- /docs/zh_CN/application-solution/artificial-intelligence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/application-solution/artificial-intelligence.rst -------------------------------------------------------------------------------- /docs/zh_CN/application-solution/at-application.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/application-solution/at-application.rst -------------------------------------------------------------------------------- /docs/zh_CN/application-solution/audio-development-framework.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/application-solution/audio-development-framework.rst -------------------------------------------------------------------------------- /docs/zh_CN/application-solution/ble-mesh-development-framework.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/application-solution/ble-mesh-development-framework.rst -------------------------------------------------------------------------------- /docs/zh_CN/application-solution/camera-application.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/application-solution/camera-application.rst -------------------------------------------------------------------------------- /docs/zh_CN/application-solution/esp-matter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/application-solution/esp-matter.rst -------------------------------------------------------------------------------- /docs/zh_CN/application-solution/esp-now.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/application-solution/esp-now.rst -------------------------------------------------------------------------------- /docs/zh_CN/application-solution/esp-rainmaker-cloud-service.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/application-solution/esp-rainmaker-cloud-service.rst -------------------------------------------------------------------------------- /docs/zh_CN/application-solution/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/application-solution/index.rst -------------------------------------------------------------------------------- /docs/zh_CN/application-solution/third-party-cloud-service.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/application-solution/third-party-cloud-service.rst -------------------------------------------------------------------------------- /docs/zh_CN/application-solution/wifi-mesh-development-framework.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/application-solution/wifi-mesh-development-framework.rst -------------------------------------------------------------------------------- /docs/zh_CN/commercial-faq/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/commercial-faq/index.rst -------------------------------------------------------------------------------- /docs/zh_CN/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/conf.py -------------------------------------------------------------------------------- /docs/zh_CN/development-environment/IDE-plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/development-environment/IDE-plugins.rst -------------------------------------------------------------------------------- /docs/zh_CN/development-environment/debugging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/development-environment/debugging.rst -------------------------------------------------------------------------------- /docs/zh_CN/development-environment/environment-setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/development-environment/environment-setup.rst -------------------------------------------------------------------------------- /docs/zh_CN/development-environment/firmware-update.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/development-environment/firmware-update.rst -------------------------------------------------------------------------------- /docs/zh_CN/development-environment/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/development-environment/index.rst -------------------------------------------------------------------------------- /docs/zh_CN/hardware-related/RF-related.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/hardware-related/RF-related.rst -------------------------------------------------------------------------------- /docs/zh_CN/hardware-related/chip-comparison.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/hardware-related/chip-comparison.rst -------------------------------------------------------------------------------- /docs/zh_CN/hardware-related/development-board.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/hardware-related/development-board.rst -------------------------------------------------------------------------------- /docs/zh_CN/hardware-related/hardware-design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/hardware-related/hardware-design.rst -------------------------------------------------------------------------------- /docs/zh_CN/hardware-related/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/hardware-related/index.rst -------------------------------------------------------------------------------- /docs/zh_CN/hardware-related/process-and-ESD.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/hardware-related/process-and-ESD.rst -------------------------------------------------------------------------------- /docs/zh_CN/hardware-related/production-test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/hardware-related/production-test.rst -------------------------------------------------------------------------------- /docs/zh_CN/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/index.rst -------------------------------------------------------------------------------- /docs/zh_CN/instruction/document-contribution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/instruction/document-contribution.rst -------------------------------------------------------------------------------- /docs/zh_CN/instruction/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/instruction/index.rst -------------------------------------------------------------------------------- /docs/zh_CN/instruction/question-search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/instruction/question-search.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/bt/ble.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/bt/ble.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/bt/br-edr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/bt/br-edr.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/bt/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/bt/index.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/bt/other-bt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/bt/other-bt.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/coexistence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/coexistence.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/ethernet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/ethernet.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/index.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/adc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/adc.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/dac.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/dac.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/gpio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/gpio.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/i2c.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/i2c.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/i2s.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/i2s.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/index.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/lcd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/lcd.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/ledc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/ledc.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/mcpwm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/mcpwm.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/other-peripherals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/other-peripherals.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/pcnt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/pcnt.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/rmt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/rmt.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/sdio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/sdio.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/spi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/spi.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/timer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/timer.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/touch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/touch.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/twai.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/twai.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/uart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/uart.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/peripherals/usb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/peripherals/usb.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/protocols/esp-tls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/protocols/esp-tls.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/protocols/http.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/protocols/http.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/protocols/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/protocols/index.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/protocols/lwip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/protocols/lwip.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/protocols/mbedtls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/protocols/mbedtls.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/protocols/mqtt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/protocols/mqtt.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/protocols/other-protocols.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/protocols/other-protocols.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/provisioning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/provisioning.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/security.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/storage/fatfs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/storage/fatfs.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/storage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/storage/index.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/storage/nvs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/storage/nvs.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/storage/other-storages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/storage/other-storages.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/storage/psram.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/storage/psram.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/storage/sd-sdio-mmc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/storage/sd-sdio-mmc.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/storage/spi-flash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/storage/spi-flash.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/storage/spiffs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/storage/spiffs.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/system.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/system.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/thread.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/thread.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/wifi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/wifi.rst -------------------------------------------------------------------------------- /docs/zh_CN/software-framework/zigbee.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/software-framework/zigbee.rst -------------------------------------------------------------------------------- /docs/zh_CN/test-verification/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/test-verification/index.rst -------------------------------------------------------------------------------- /docs/zh_CN/test-verification/power-consumption-verification.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/docs/zh_CN/test-verification/power-consumption-verification.rst -------------------------------------------------------------------------------- /translate_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/esp-faq/HEAD/translate_config.yml --------------------------------------------------------------------------------