Merge branch 'docs/sync_up_i2c_wifi_blemesh' into 'master'

docs: Sync up EN and CN lines of ble-mesh, wifi, and i2c

Closes DOC-3465

See merge request espressif/esp-idf!19455
This commit is contained in:
morris 2022-08-10 12:01:52 +08:00
commit ac11b17d8d
4 changed files with 4 additions and 7 deletions

View File

@ -2479,7 +2479,6 @@ The parameters not mentioned in the following table should be set to the default
- 31.5
- 27.7
.. only:: esp32s3
.. list-table::
@ -2577,14 +2576,12 @@ The parameters not mentioned in the following table should be set to the default
The test was performed with a single stream in a shielded box using an ASUS RT-N66U router.
{IDF_TARGET_NAME}'s CPU is single core with 160 MHz. {IDF_TARGET_NAME}'s flash is in QIO mode with 80 MHz.
.. only:: esp32c2
.. note::
The test was performed with a single stream in a shielded box using an Redmi RM2100 router.
{IDF_TARGET_NAME}'s CPU is single core with 120 MHz. {IDF_TARGET_NAME}'s flash is in QIO mode with 60 MHz.
.. only:: esp32
**Ranks:**

View File

@ -4,9 +4,6 @@ ESP-BLE-MESH
:link_to_translation:`en:[English]`
概述
=====
蓝牙 mesh 网络实现了无线设备的“多对多”通讯,其可用于建立包含大量设备的网络。
设备能将数据中继至不在初始设备无线电覆盖范围内的其他设备。这样mesh 网络就能够覆盖非常大的物理区域并且囊括大量设备。Mesh 网络非常适用于楼宇自动化、传感器网络和其他物联网解决方案,这些情景下数以十计、百计、千计的设备需要与其他设备进行安全可靠的通信。
@ -37,6 +34,7 @@ ESP-BLE-MESH 快速入门
如果您是第一次接触 ESP-IDF请参见 esp-idf :doc:`../../get-started/index` 来设置开发环境,编译、烧写和运行示例应用程序。
硬件及软件准备
--------------

View File

@ -5,6 +5,8 @@
{IDF_TARGET_NAME} Wi-Fi 功能列表
------------------------------------
{IDF_TARGET_NAME} 支持以下 Wi-Fi 功能:
.. only:: esp32 or esp32s2 or esp32c3 or esp32s3
- 支持 4 个虚拟接口即STA、AP、Sniffer 和 reserved。
@ -1167,7 +1169,6 @@ API esp_wifi_set_config() 可用于配置 AP。下表详细介绍了各个字段
- beacon 间隔。值为 100 ~ 60000 ms默认值为 100 ms。如果该值不在上述范围AP 默认取 100 ms。
Wi-Fi 协议模式
+++++++++++++++++++++++++

View File

@ -105,6 +105,7 @@ I2C 驱动程序管理在 I2C 总线上设备的通信,该驱动程序具备
.mode = I2C_MODE_SLAVE,
.slave.addr_10bit_en = 0,
.slave.slave_addr = ESP_SLAVE_ADDR, // address of your project
.clk_flags = 0,
};
在此阶段,:cpp:func:`i2c_param_config` 还将其他 I2C 配置参数设置为 I2C 总线协议规范中定义的默认值。有关默认值及修改默认值的详细信息,请参考 :ref:`i2c-api-customized-configuration`