feat(task): Change all tasks size 4 times the original

This commit is contained in:
Dong Heng
2018-07-09 11:35:09 +08:00
parent 0a0db61155
commit 1ba1e5ccbd
20 changed files with 21 additions and 21 deletions

View File

@ -185,7 +185,7 @@ void uart_init(void)
xQueueUart = xQueueCreate(32, sizeof(os_event_t));
xTaskCreate(uart_task, (uint8_t const*)"uTask", 512, NULL, tskIDLE_PRIORITY + 2, &xUartTaskHandle);
xTaskCreate(uart_task, (uint8_t const*)"uTask", 2048, NULL, tskIDLE_PRIORITY + 2, &xUartTaskHandle);
}
#endif