forked from espressif/esp-idf
Merge branch 'docs/fix_some_typos' into 'master'
docs: Fix some typos Closes DOC-10600, DOC-10605, DOC-10606, DOC-10607, DOC-10608, and DOC-10671 See merge request espressif/esp-idf!37977
This commit is contained in:
@@ -169,7 +169,7 @@ static esp_netif_t *eth_start(void)
|
||||
s_eth_glue = esp_eth_new_netif_glue(s_eth_handle);
|
||||
esp_netif_attach(netif, s_eth_glue);
|
||||
|
||||
// Register user defined event handers
|
||||
// Register user defined event handlers
|
||||
ESP_ERROR_CHECK(esp_event_handler_register(IP_EVENT, IP_EVENT_ETH_GOT_IP, ð_on_got_ip, NULL));
|
||||
#ifdef CONFIG_EXAMPLE_CONNECT_IPV6
|
||||
ESP_ERROR_CHECK(esp_event_handler_register(ETH_EVENT, ETHERNET_EVENT_CONNECTED, &on_eth_event, netif));
|
||||
|
@@ -112,7 +112,7 @@ void app_main(void)
|
||||
}
|
||||
}
|
||||
|
||||
// Register user defined event handers
|
||||
// Register user defined event handlers
|
||||
ESP_ERROR_CHECK(esp_event_handler_register(ETH_EVENT, ESP_EVENT_ANY_ID, ð_event_handler, NULL));
|
||||
ESP_ERROR_CHECK(esp_event_handler_register(IP_EVENT, IP_EVENT_ETH_GOT_IP, &got_ip_event_handler, NULL));
|
||||
|
||||
|
@@ -5,6 +5,6 @@ menu "Example Configuration"
|
||||
default y
|
||||
help
|
||||
Linenoise line editing library provides functions to save and load
|
||||
command history. If this option is enabled, initalizes a FAT filesystem
|
||||
command history. If this option is enabled, initializes a FAT filesystem
|
||||
and uses it to store command history.
|
||||
endmenu
|
||||
|
@@ -190,7 +190,7 @@ void app_main(void)
|
||||
// Attach esp netif bridge glue instance with added ports to bridge netif
|
||||
ESP_ERROR_CHECK(esp_netif_attach(br_netif, netif_br_glue));
|
||||
|
||||
// Register user defined event handers
|
||||
// Register user defined event handlers
|
||||
ESP_ERROR_CHECK(esp_event_handler_register(ETH_EVENT, ESP_EVENT_ANY_ID, ð_event_handler, NULL));
|
||||
ESP_ERROR_CHECK(esp_event_handler_register(IP_EVENT, IP_EVENT_ETH_GOT_IP, &got_ip_event_handler, NULL));
|
||||
|
||||
|
@@ -7,7 +7,7 @@ menu "Example Configuration"
|
||||
default y
|
||||
help
|
||||
Linenoise line editing library provides functions to save and load command history.
|
||||
If this option is enabled, initalizes a FAT filesystem and uses it to store command history.
|
||||
If this option is enabled, initializes a FAT filesystem and uses it to store command history.
|
||||
|
||||
choice SNIFFER_PCAP_DESTINATION
|
||||
prompt "Select destination to store pcap file"
|
||||
@@ -35,7 +35,7 @@ menu "Example Configuration"
|
||||
prompt "Select SD card work mode"
|
||||
default SNIFFER_SD_SDMMC_MODE
|
||||
help
|
||||
Select whitch peripheral SD card should use.
|
||||
Select which peripheral SD card should use.
|
||||
config SNIFFER_SD_SDMMC_MODE
|
||||
bool "SDMMC"
|
||||
depends on IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3
|
||||
|
@@ -130,7 +130,7 @@ static void initialize_eth(void)
|
||||
ESP_ERROR_CHECK(example_eth_init(ð_handles, ð_port_cnt));
|
||||
|
||||
if (eth_port_cnt > 0) {
|
||||
// Register user defined event handers
|
||||
// Register user defined event handlers
|
||||
ESP_ERROR_CHECK(esp_event_handler_register(ETH_EVENT, ESP_EVENT_ANY_ID, ð_event_handler, NULL));
|
||||
|
||||
for (uint32_t i = 0; i < eth_port_cnt; i++) {
|
||||
|
@@ -145,7 +145,7 @@ void app_main(void)
|
||||
// Create default event loop that running in background
|
||||
ESP_ERROR_CHECK(esp_event_loop_create_default());
|
||||
|
||||
// Register user defined event handers
|
||||
// Register user defined event handlers
|
||||
ESP_ERROR_CHECK(esp_event_handler_register(ETH_EVENT, ESP_EVENT_ANY_ID, ð_event_handler, NULL));
|
||||
ESP_ERROR_CHECK(esp_event_handler_register(IP_EVENT, IP_EVENT_ETH_GOT_IP, &got_ip_event_handler, NULL));
|
||||
|
||||
|
@@ -5,7 +5,7 @@ menu "Example Configuration"
|
||||
default y
|
||||
help
|
||||
Linenoise line editing library provides functions to save and load
|
||||
command history. If this option is enabled, initalizes a FAT filesystem
|
||||
command history. If this option is enabled, initializes a FAT filesystem
|
||||
and uses it to store command history.
|
||||
|
||||
config EXAMPLE_I2C_MASTER_SCL
|
||||
|
@@ -5,7 +5,7 @@ menu "Example Configuration"
|
||||
default y
|
||||
help
|
||||
Linenoise line editing library provides functions to save and load
|
||||
command history. If this option is enabled, initalizes a FAT filesystem
|
||||
command history. If this option is enabled, initializes a FAT filesystem
|
||||
and uses it to store command history.
|
||||
|
||||
config CONSOLE_MAX_COMMAND_LINE_LENGTH
|
||||
|
Reference in New Issue
Block a user