mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fix(wifi): fix code comments
This commit is contained in:
parent
506bff240b
commit
7c9109d9e1
@ -5,7 +5,7 @@ if(${idf_target} STREQUAL "linux")
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(IDF_TARGET STREQUAL "esp32p4")
|
if(IDF_TARGET STREQUAL "esp32p4")
|
||||||
# TODO: IDF-7460, IDF-8851, IDF-9553
|
# TODO: IDF-7460
|
||||||
idf_component_register()
|
idf_component_register()
|
||||||
return()
|
return()
|
||||||
endif()
|
endif()
|
||||||
|
@ -19,7 +19,7 @@ extern "C" {
|
|||||||
#if CONFIG_IDF_TARGET_ESP32C2
|
#if CONFIG_IDF_TARGET_ESP32C2
|
||||||
#define ESP_WIFI_MAX_CONN_NUM (4) /**< max number of stations which can connect to ESP32C2 soft-AP */
|
#define ESP_WIFI_MAX_CONN_NUM (4) /**< max number of stations which can connect to ESP32C2 soft-AP */
|
||||||
#elif CONFIG_IDF_TARGET_ESP32C3 || CONFIG_IDF_TARGET_ESP32C6 || CONFIG_IDF_TARGET_ESP32C5 || CONFIG_IDF_TARGET_ESP32C61
|
#elif CONFIG_IDF_TARGET_ESP32C3 || CONFIG_IDF_TARGET_ESP32C6 || CONFIG_IDF_TARGET_ESP32C5 || CONFIG_IDF_TARGET_ESP32C61
|
||||||
#define ESP_WIFI_MAX_CONN_NUM (10) /**< max number of stations which can connect to ESP32C3 soft-AP */
|
#define ESP_WIFI_MAX_CONN_NUM (10) /**< max number of stations which can connect to ESP32C3/ESP32C6/ESP32C5/ESP32C61 soft-AP */
|
||||||
#else
|
#else
|
||||||
#define ESP_WIFI_MAX_CONN_NUM (15) /**< max number of stations which can connect to ESP32/ESP32S3/ESP32S2 soft-AP */
|
#define ESP_WIFI_MAX_CONN_NUM (15) /**< max number of stations which can connect to ESP32/ESP32S3/ESP32S2 soft-AP */
|
||||||
#endif
|
#endif
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit f28ad22ab853677d8b0d398abe89babe274c222f
|
Subproject commit e66a47c0ba36a6cf4edfe0dbf4d21588d07b374e
|
@ -5,15 +5,15 @@ Introduction to Low Power Mode in Wi-Fi Scenarios
|
|||||||
|
|
||||||
After the previous introduction to low power mode from a systemic perspective, this section delves into low power mode in Wi-Fi scenarios. Due to the complexity of Wi-Fi scenarios, basic principles of Wi-Fi power saving will be introduced before specific low power mode. This section is focused on station mode.
|
After the previous introduction to low power mode from a systemic perspective, this section delves into low power mode in Wi-Fi scenarios. Due to the complexity of Wi-Fi scenarios, basic principles of Wi-Fi power saving will be introduced before specific low power mode. This section is focused on station mode.
|
||||||
|
|
||||||
|
.. todo - add sleep-current/esp32c5_summary.inc and sleep-current/esp32c61_summary.inc
|
||||||
|
|
||||||
|
.. only:: not esp32c5 and not esp32c61
|
||||||
|
|
||||||
Choosing Low Power Mode in Wi-Fi Scenarios
|
Choosing Low Power Mode in Wi-Fi Scenarios
|
||||||
---------------------------------------------
|
---------------------------------------------
|
||||||
|
|
||||||
To help users select appropriate low power mode, a summary table of low power modes in Wi-Fi scenarios is provided before detailed introduction.
|
To help users select appropriate low power mode, a summary table of low power modes in Wi-Fi scenarios is provided before detailed introduction.
|
||||||
|
|
||||||
.. todo - add sleep-current/esp32c5_summary.inc
|
|
||||||
|
|
||||||
.. only:: not esp32c5 and not esp32c61
|
|
||||||
|
|
||||||
.. include:: ../sleep-current/{IDF_TARGET_PATH_NAME}_summary.inc
|
.. include:: ../sleep-current/{IDF_TARGET_PATH_NAME}_summary.inc
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
@ -363,12 +363,12 @@ Modem-sleep Mode Configuration
|
|||||||
* - ``light_sleep_enable``
|
* - ``light_sleep_enable``
|
||||||
- false
|
- false
|
||||||
|
|
||||||
- Configuration Performance
|
.. todo - add sleep-current/esp32c5_modem_sleep.inc sleep-current/esp32c61_modem_sleep.inc
|
||||||
|
|
||||||
.. todo - add sleep-current/esp32c5_modem_sleep.inc
|
|
||||||
|
|
||||||
.. only:: not esp32c5 and not esp32c61
|
.. only:: not esp32c5 and not esp32c61
|
||||||
|
|
||||||
|
- Configuration Performance
|
||||||
|
|
||||||
.. include:: ../sleep-current/{IDF_TARGET_PATH_NAME}_modem_sleep.inc
|
.. include:: ../sleep-current/{IDF_TARGET_PATH_NAME}_modem_sleep.inc
|
||||||
|
|
||||||
|
|
||||||
@ -377,14 +377,14 @@ Auto Light-sleep Mode + Wi-Fi Scenario Configuration
|
|||||||
|
|
||||||
Auto Light-sleep mode in Wi-Fi scenarios does not require wake-up source configuration compared with a pure system. But the remaining part of configuration is basically the same in the two operation scenarios. Therefore, detailed introduction of configurable options, configuration steps, and recommended configurations can be found in the previous section :ref:`Deep-sleep Mode`, with the Wi-Fi-related configurations set to default.
|
Auto Light-sleep mode in Wi-Fi scenarios does not require wake-up source configuration compared with a pure system. But the remaining part of configuration is basically the same in the two operation scenarios. Therefore, detailed introduction of configurable options, configuration steps, and recommended configurations can be found in the previous section :ref:`Deep-sleep Mode`, with the Wi-Fi-related configurations set to default.
|
||||||
|
|
||||||
|
.. todo - add sleep-current/esp32c5_light_sleep.inc and leep-current/esp32c61_light_sleep.inc
|
||||||
|
|
||||||
|
.. only:: not esp32c5 and not esp32c61
|
||||||
|
|
||||||
- Configuration Performance
|
- Configuration Performance
|
||||||
|
|
||||||
The configuration performance mirrors that of the recommended Auto Light-sleep mode configuration in a pure system, combined with the default Wi-Fi-related configurations in the Wi-Fi environment.
|
The configuration performance mirrors that of the recommended Auto Light-sleep mode configuration in a pure system, combined with the default Wi-Fi-related configurations in the Wi-Fi environment.
|
||||||
|
|
||||||
.. todo - add sleep-current/esp32c5_light_sleep.inc
|
|
||||||
|
|
||||||
.. only:: not esp32c5 and not esp32c61
|
|
||||||
|
|
||||||
.. include:: ../sleep-current/{IDF_TARGET_PATH_NAME}_light_sleep.inc
|
.. include:: ../sleep-current/{IDF_TARGET_PATH_NAME}_light_sleep.inc
|
||||||
|
|
||||||
Deep-sleep Mode + Wi-Fi Scenario Configuration
|
Deep-sleep Mode + Wi-Fi Scenario Configuration
|
||||||
|
@ -5,14 +5,15 @@ Wi-Fi 场景下低功耗模式介绍
|
|||||||
|
|
||||||
本节将结合纯系统下的功耗模式来介绍 Wi-Fi 场景下的低功耗模式。因为 Wi-Fi 场景的复杂性,本节会首先介绍 Wi-Fi 省电的基本原理,然后再介绍具体的低功耗模式。本节主要针对 station 模式。
|
本节将结合纯系统下的功耗模式来介绍 Wi-Fi 场景下的低功耗模式。因为 Wi-Fi 场景的复杂性,本节会首先介绍 Wi-Fi 省电的基本原理,然后再介绍具体的低功耗模式。本节主要针对 station 模式。
|
||||||
|
|
||||||
|
.. todo - add sleep-current/esp32c5_summary.inc and sleep-current/esp32c61_summary.inc
|
||||||
|
|
||||||
|
.. only:: not esp32c5 and not esp32c61
|
||||||
|
|
||||||
Wi-Fi 场景如何选择低功耗模式
|
Wi-Fi 场景如何选择低功耗模式
|
||||||
--------------------------------------
|
--------------------------------------
|
||||||
|
|
||||||
在介绍具体内容前先给出 Wi-Fi 场景下低功耗模式总结表,以方便用户根据需求快速选择想要了解的内容,选择合适的低功耗模式。
|
在介绍具体内容前先给出 Wi-Fi 场景下低功耗模式总结表,以方便用户根据需求快速选择想要了解的内容,选择合适的低功耗模式。
|
||||||
|
|
||||||
.. todo - add sleep-current/esp32c5_summary.inc
|
|
||||||
|
|
||||||
.. only:: not esp32c5 and not esp32c61
|
|
||||||
|
|
||||||
.. include:: ../sleep-current/{IDF_TARGET_PATH_NAME}_summary.inc
|
.. include:: ../sleep-current/{IDF_TARGET_PATH_NAME}_summary.inc
|
||||||
|
|
||||||
@ -363,12 +364,12 @@ Modem-sleep 模式配置
|
|||||||
* - ``light_sleep_enable``
|
* - ``light_sleep_enable``
|
||||||
- false
|
- false
|
||||||
|
|
||||||
- 配置表现
|
.. todo - add sleep-current/esp32c5_modem_sleep.inc sleep-current/esp32c61_modem_sleep.inc
|
||||||
|
|
||||||
.. todo - add sleep-current/esp32c5_modem_sleep.inc
|
|
||||||
|
|
||||||
.. only:: not esp32c5 and not esp32c61
|
.. only:: not esp32c5 and not esp32c61
|
||||||
|
|
||||||
|
- 配置表现
|
||||||
|
|
||||||
.. include:: ../sleep-current/{IDF_TARGET_PATH_NAME}_modem_sleep.inc
|
.. include:: ../sleep-current/{IDF_TARGET_PATH_NAME}_modem_sleep.inc
|
||||||
|
|
||||||
|
|
||||||
@ -377,14 +378,14 @@ Auto Light-sleep 模式 + Wi-Fi 场景配置
|
|||||||
|
|
||||||
Auto Light-sleep 在 Wi-Fi 场景下的配置比纯系统下少了唤醒源的配置要求,其余几乎与纯系统下配置一致,因此可配置选项、配置步骤、推荐配置的详细介绍可以参考上文 :ref:`Deep-sleep 模式`。同时 Wi-Fi 相关配置保持默认。
|
Auto Light-sleep 在 Wi-Fi 场景下的配置比纯系统下少了唤醒源的配置要求,其余几乎与纯系统下配置一致,因此可配置选项、配置步骤、推荐配置的详细介绍可以参考上文 :ref:`Deep-sleep 模式`。同时 Wi-Fi 相关配置保持默认。
|
||||||
|
|
||||||
|
.. todo - add sleep-current/esp32c5_light_sleep.inc and leep-current/esp32c61_light_sleep.inc
|
||||||
|
|
||||||
|
.. only:: not esp32c5 and not esp32c61
|
||||||
|
|
||||||
- 配置表现
|
- 配置表现
|
||||||
|
|
||||||
该配置表现为 Auto Light-sleep 模式纯系统推荐配置 + 默认的 Wi-Fi 相关配置在 Wi-Fi 场景的表现。
|
该配置表现为 Auto Light-sleep 模式纯系统推荐配置 + 默认的 Wi-Fi 相关配置在 Wi-Fi 场景的表现。
|
||||||
|
|
||||||
.. todo - add sleep-current/esp32c5_light_sleep.inc
|
|
||||||
|
|
||||||
.. only:: not esp32c5 and not esp32c61
|
|
||||||
|
|
||||||
.. include:: ../sleep-current/{IDF_TARGET_PATH_NAME}_light_sleep.inc
|
.. include:: ../sleep-current/{IDF_TARGET_PATH_NAME}_light_sleep.inc
|
||||||
|
|
||||||
Deep-sleep 模式 + Wi-Fi 场景配置
|
Deep-sleep 模式 + Wi-Fi 场景配置
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
examples/openthread/ot_br:
|
examples/openthread/ot_br:
|
||||||
enable:
|
enable:
|
||||||
- if: SOC_WIFI_SUPPORTED == 1 and IDF_TARGET not in ["esp32c5", "esp32c61"]
|
- if: SOC_WIFI_SUPPORTED == 1 and IDF_TARGET != "esp32c61"
|
||||||
disable_test:
|
disable_test:
|
||||||
- if: IDF_TARGET not in ["esp32s3"]
|
- if: IDF_TARGET not in ["esp32s3"]
|
||||||
reason: only test on esp32s3
|
reason: only test on esp32s3
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-S2 | ESP32-S3 |
|
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-S2 | ESP32-S3 |
|
||||||
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- |
|
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- |
|
||||||
|
|
||||||
# OpenThread Border Router Example
|
# OpenThread Border Router Example
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user