Skip to content

Commit 45bcb65

Browse files
Merge pull request #6659 from gojimmypi/ESP32_Info_link_change
updated comment links for Espressif examples
2 parents a71114b + f89892a commit 45bcb65

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

IDE/Espressif/ESP-IDF/examples/wolfssl_client/main/wifi_connect.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ static void tls_smp_client_init(void)
9292
#else
9393
xTaskHandle _handle;
9494
#endif
95-
/* http://esp32.info/docs/esp_idf/html/dd/d3c/group__xTaskCreate.html */
95+
/* see https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/freertos_idf.html */
9696
ret = xTaskCreate(tls_smp_client_task,
9797
TLS_SMP_CLIENT_TASK_NAME,
9898
TLS_SMP_CLIENT_TASK_WORDS,
@@ -121,7 +121,7 @@ static esp_err_t wifi_event_handler(void *ctx, system_event_t *event)
121121
ESP_LOGI(TAG, "got ip:%s",
122122
ip4addr_ntoa(&event->event_info.got_ip.ip_info.ip));
123123
#endif
124-
/* http://esp32.info/docs/esp_idf/html/dd/d08/group__xEventGroupSetBits.html */
124+
/* see https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/freertos_idf.html */
125125
xEventGroupSetBits(wifi_event_group, CONNECTED_BIT);
126126
break;
127127
case SYSTEM_EVENT_STA_DISCONNECTED:
@@ -217,7 +217,7 @@ void app_main(void)
217217
};
218218
/* WiFi station mode */
219219
ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_STA) );
220-
/* Wifi Set the configuration of the ESP32 STA or AP */
220+
/* Wifi Set the configuration of the ESP32 STA or AP */
221221
ESP_ERROR_CHECK(esp_wifi_set_config(ESP_IF_WIFI_STA, &wifi_config) );
222222
/* Start Wifi */
223223
ESP_ERROR_CHECK(esp_wifi_start() );

IDE/Espressif/ESP-IDF/examples/wolfssl_server/main/wifi_connect.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ static void tls_smp_server_init(void)
9292
#else
9393
xTaskHandle _handle;
9494
#endif
95-
/* http://esp32.info/docs/esp_idf/html/dd/d3c/group__xTaskCreate.html */
95+
/* see https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/freertos_idf.html */
9696
ret = xTaskCreate(tls_smp_server_task,
9797
TLS_SMP_SERVER_TASK_NAME,
9898
TLS_SMP_SERVER_TASK_WORDS,
@@ -121,7 +121,7 @@ static esp_err_t wifi_event_handler(void *ctx, system_event_t *event)
121121
ESP_LOGI(TAG, "got ip:%s",
122122
ip4addr_ntoa(&event->event_info.got_ip.ip_info.ip));
123123
#endif
124-
/* http://esp32.info/docs/esp_idf/html/dd/d08/group__xEventGroupSetBits.html */
124+
/* see https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/freertos_idf.html */
125125
xEventGroupSetBits(wifi_event_group, CONNECTED_BIT);
126126
break;
127127
case SYSTEM_EVENT_STA_DISCONNECTED:

0 commit comments

Comments
 (0)