increase stack size for gps and timesync tasks

This commit is contained in:
Klaus K Wilting 2020-10-09 23:29:18 +02:00
parent 9405042110
commit b5502f9edb
2 changed files with 2 additions and 2 deletions

View File

@ -309,7 +309,7 @@ void setup() {
ESP_LOGI(TAG, "Starting GPS Feed...");
xTaskCreatePinnedToCore(gps_loop, // task function
"gpsloop", // name of task
2048, // stack size of task
4096, // stack size of task
(void *)1, // parameter of the task
1, // priority of the task
&GpsTask, // task handle

View File

@ -32,7 +32,7 @@ static TaskHandle_t timeSyncProcTask;
void timesync_init(void) {
xTaskCreatePinnedToCore(timesync_processReq, // task function
"timesync_proc", // name of task
2048, // stack size of task
4096, // stack size of task
(void *)1, // task parameter
3, // priority of the task
&timeSyncProcTask, // task handle