From a57730940b312f80060eaa409e482f09686bf08a Mon Sep 17 00:00:00 2001 From: cyberman54 Date: Fri, 28 Jan 2022 10:39:57 +0100 Subject: [PATCH] increase GPS loop stack size to avoid TG1WDT --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index c3c5af5c..82398073 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -326,7 +326,7 @@ void setup() { ESP_LOGI(TAG, "Starting GPS Feed..."); xTaskCreatePinnedToCore(gps_loop, // task function "gpsloop", // name of task - 4096, // stack size of task + 8192, // stack size of task (void *)1, // parameter of the task 3, // priority of the task &GpsTask, // task handle