increase task stack size of macprocessor

This commit is contained in:
cyberman54 2020-12-22 15:20:32 +01:00
parent a04e6440d4
commit 2163c539c9

View File

@ -54,7 +54,7 @@ esp_err_t macQueueInit() {
xTaskCreatePinnedToCore(mac_process, // task function xTaskCreatePinnedToCore(mac_process, // task function
"mac_process", // name of task "mac_process", // name of task
2048, // stack size of task 3072, // 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
&macProcessTask, // task handle &macProcessTask, // task handle