mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/add_missing_links_to_translation' into 'master'
Included missing links between English and Chinese documentation, where… See merge request idf/esp-idf!4176
This commit is contained in:
commit
aa4a5668b0
@ -1,5 +1,6 @@
|
||||
BluFi
|
||||
^^^^^
|
||||
:link_to_translation:`zh_CN:[中文]`
|
||||
|
||||
Overview
|
||||
--------
|
||||
|
@ -1,5 +1,6 @@
|
||||
Build System
|
||||
************
|
||||
:link_to_translation:`zh_CN:[中文]`
|
||||
|
||||
This document explains the Espressif IoT Development Framework build system and the
|
||||
concept of "components"
|
||||
|
@ -1,5 +1,6 @@
|
||||
Console
|
||||
=======
|
||||
:link_to_translation:`zh_CN:[中文]`
|
||||
|
||||
ESP-IDF provides ``console`` component, which includes building blocks needed to develop an interactive console over serial port. This component includes following facilities:
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
Error Handling
|
||||
==============
|
||||
:link_to_translation:`zh_CN:[中文]`
|
||||
|
||||
Overview
|
||||
--------
|
||||
|
@ -1,5 +1,6 @@
|
||||
General Notes About ESP-IDF Programming
|
||||
=======================================
|
||||
:link_to_translation:`zh_CN:[中文]`
|
||||
|
||||
Application startup flow
|
||||
------------------------
|
||||
|
@ -1,5 +1,6 @@
|
||||
API Guides
|
||||
**********
|
||||
:link_to_translation:`zh_CN:[中文]`
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
@ -1,5 +1,6 @@
|
||||
Partition Tables
|
||||
================
|
||||
:link_to_translation:`zh_CN:[中文]`
|
||||
|
||||
Overview
|
||||
--------
|
||||
|
@ -1,5 +1,6 @@
|
||||
Unit Testing in ESP32 (CMake)
|
||||
=============================
|
||||
:link_to_translation:`zh_CN:[中文]`
|
||||
|
||||
.. include:: ../cmake-warning.rst
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
Unit Testing in ESP32
|
||||
=====================
|
||||
:link_to_translation:`zh_CN:[中文]`
|
||||
|
||||
ESP-IDF comes with a unit test app based on Unity - unit test framework. Unit tests are integrated in the ESP-IDF repository and are placed in ``test`` subdirectory of each component respectively.
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
Creating Examples
|
||||
=================
|
||||
:link_to_translation:`zh_CN:[中文]`
|
||||
|
||||
Each ESP-IDF example is a complete project that someone else can copy and adapt the code to solve their own problem. Examples should demonstrate ESP-IDF functionality, while keeping this purpose in mind.
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
**********************************
|
||||
Setup Linux Toolchain from Scratch
|
||||
**********************************
|
||||
:link_to_translation:`zh_CN:[中文]`
|
||||
|
||||
.. note::
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
***************************************
|
||||
Setup Toolchain for Mac OS from Scratch
|
||||
***************************************
|
||||
:link_to_translation:`zh_CN:[中文]`
|
||||
|
||||
.. note::
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
************************
|
||||
ESP32 Hardware Reference
|
||||
************************
|
||||
:link_to_translation:`zh_CN:[中文]`
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
|
@ -1,6 +1,7 @@
|
||||
*********
|
||||
Resources
|
||||
*********
|
||||
:link_to_translation:`zh_CN:[中文]`
|
||||
|
||||
* The `esp32.com forum <https://esp32.com/>`_ is a place to ask questions and find community resources.
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
BluFi
|
||||
^^^^^
|
||||
:link_to_translation:`en:[English]`
|
||||
|
||||
概览
|
||||
-----
|
||||
|
@ -1,5 +1,6 @@
|
||||
编译系统
|
||||
========
|
||||
:link_to_translation:`en:[English]`
|
||||
|
||||
本文将介绍乐鑫物联网开发框架中的``编译系统``和``组件``的相关概念。
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
控制台终端
|
||||
==========
|
||||
:link_to_translation:`en:[English]`
|
||||
|
||||
ESP-IDF 提供了 ``console`` 组件,它包含了开发基于串口的交互式控制终端所需要的所有模块,主要支持以下功能:
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
错误处理
|
||||
========
|
||||
:link_to_translation:`en:[English]`
|
||||
|
||||
概述
|
||||
----
|
||||
|
@ -1,5 +1,6 @@
|
||||
ESP-IDF 编程注意事项
|
||||
======================
|
||||
:link_to_translation:`en:[English]`
|
||||
|
||||
应用程序的启动流程
|
||||
------------------
|
||||
|
@ -1,5 +1,6 @@
|
||||
API 指南
|
||||
**********
|
||||
:link_to_translation:`en:[English]`
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
@ -1,5 +1,6 @@
|
||||
分区表
|
||||
======
|
||||
:link_to_translation:`en:[English]`
|
||||
|
||||
概述
|
||||
----
|
||||
|
@ -1,5 +1,6 @@
|
||||
ESP32 中的单元测试 (CMake)
|
||||
==========================
|
||||
:link_to_translation:`en:[English]`
|
||||
|
||||
ESP-IDF
|
||||
中附带了一个基于 ``Unity`` 的单元测试应用程序框架,且所有的单元测试用例分别保存在
|
||||
|
@ -1,5 +1,6 @@
|
||||
ESP32 中的单元测试
|
||||
==================
|
||||
:link_to_translation:`en:[English]`
|
||||
|
||||
ESP-IDF
|
||||
中附带了一个基于 ``Unity`` 的单元测试应用程序框架,且所有的单元测试用例分别保存在
|
||||
|
@ -1,5 +1,6 @@
|
||||
创建示例项目
|
||||
============
|
||||
:link_to_translation:`en:[English]`
|
||||
|
||||
每个 ESP-IDF 的示例都是一个完整的项目,其他人可以将示例复制至本地,并根据实际情况进行一定修改。请注意,示例项目主要是为了展示 ESP-IDF 的功能。
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
**********************************
|
||||
从零开始设置 Linux 环境下的工具链
|
||||
**********************************
|
||||
:link_to_translation:`en:[English]`
|
||||
|
||||
.. note::
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
**********************************
|
||||
从零开始设置 Mac OS 环境下的工具链
|
||||
**********************************
|
||||
:link_to_translation:`en:[English]`
|
||||
|
||||
.. note::
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
************************
|
||||
ESP32 H/W 硬件参考
|
||||
************************
|
||||
:link_to_translation:`en:[English]`
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
|
@ -1,6 +1,7 @@
|
||||
****
|
||||
资源
|
||||
****
|
||||
:link_to_translation:`en:[English]`
|
||||
|
||||
* 您可以在 `ESP32 论坛 <https://esp32.com/>`_ 中提出您的问题,访问社区资源。
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user