@@ -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 () );
0 commit comments