We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58a21e3 commit b2568a3Copy full SHA for b2568a3
components/eppp_link/eppp_netif_tun.c
@@ -167,6 +167,9 @@ esp_err_t eppp_check_connection(esp_netif_t *netif)
167
{
168
esp_err_t ret = ESP_OK;
169
esp_ping_config_t config = ESP_PING_DEFAULT_CONFIG();
170
+#if CONFIG_LOG_MAXIMUM_LEVEL > 3
171
+ config.task_stack_size += 1024; // Some additional stack needed for verbose logs
172
+#endif
173
config.count = 100;
174
ESP_LOGI(TAG, "Checking connection on EPPP interface #%" PRIu32, config.interface);
175
ip_addr_t target_addr = {0};
0 commit comments