Bump comms thread stack space to 6000

This commit is contained in:
Unknown
2018-10-28 18:45:15 -04:00
parent ffbf24ff31
commit 87f3a1b011
+1 -1
View File
@@ -84,7 +84,7 @@ void init_communication(void) {
printf("hi!\r\n");
// Start command handling thread
osThreadDef(task_cmd_parse, communication_task, osPriorityNormal, 0, 5000 /* in 32-bit words */); // TODO: fix stack issues
osThreadDef(task_cmd_parse, communication_task, osPriorityNormal, 0, 6000 /* in 32-bit words */); // TODO: fix stack issues
comm_thread = osThreadCreate(osThread(task_cmd_parse), NULL);
while (!endpoint_list_valid)