increase stack size for gps and timesync tasks
This commit is contained in:
parent
9405042110
commit
b5502f9edb
@ -309,7 +309,7 @@ void setup() {
|
|||||||
ESP_LOGI(TAG, "Starting GPS Feed...");
|
ESP_LOGI(TAG, "Starting GPS Feed...");
|
||||||
xTaskCreatePinnedToCore(gps_loop, // task function
|
xTaskCreatePinnedToCore(gps_loop, // task function
|
||||||
"gpsloop", // name of task
|
"gpsloop", // name of task
|
||||||
2048, // stack size of task
|
4096, // stack size of task
|
||||||
(void *)1, // parameter of the task
|
(void *)1, // parameter of the task
|
||||||
1, // priority of the task
|
1, // priority of the task
|
||||||
&GpsTask, // task handle
|
&GpsTask, // task handle
|
||||||
|
@ -32,7 +32,7 @@ static TaskHandle_t timeSyncProcTask;
|
|||||||
void timesync_init(void) {
|
void timesync_init(void) {
|
||||||
xTaskCreatePinnedToCore(timesync_processReq, // task function
|
xTaskCreatePinnedToCore(timesync_processReq, // task function
|
||||||
"timesync_proc", // name of task
|
"timesync_proc", // name of task
|
||||||
2048, // stack size of task
|
4096, // stack size of task
|
||||||
(void *)1, // task parameter
|
(void *)1, // task parameter
|
||||||
3, // priority of the task
|
3, // priority of the task
|
||||||
&timeSyncProcTask, // task handle
|
&timeSyncProcTask, // task handle
|
||||||
|
Loading…
Reference in New Issue
Block a user