increase comms stack size (we really need to refactor this)

This commit is contained in:
Oskar Weigl
2018-10-30 18:20:08 -07:00
parent b3890ef9ff
commit 921987a09f
+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)