Skip to content
Snippets Groups Projects
Commit 2e547c66 authored by schneider's avatar schneider
Browse files

fix(serial-task): increase stack size

parent 8e8d8614
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,7 @@ int main(void) ...@@ -23,7 +23,7 @@ int main(void)
if (xTaskCreate( if (xTaskCreate(
vSerialTask, vSerialTask,
(const char *)"Serial", (const char *)"Serial",
configMINIMAL_STACK_SIZE, configMINIMAL_STACK_SIZE * 2,
NULL, NULL,
tskIDLE_PRIORITY + 1, tskIDLE_PRIORITY + 1,
NULL) != pdPASS) { NULL) != pdPASS) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment