fix(uart): increased stack size for the task in uart_events example

The example cannot run successfully on ESP32S3 due to task stack overflow
Introduced in a4e6f57a40
This commit is contained in:
Song Ruo Jing 2024-08-12 16:14:47 +08:00
parent c72fec55dd
commit d712ae83ee

View File

@ -47,7 +47,7 @@ static void uart_event_task(void *pvParameters)
bzero(dtmp, RD_BUF_SIZE);
ESP_LOGI(TAG, "uart[%d] event:", EX_UART_NUM);
switch (event.type) {
//Event of UART receving data
//Event of UART receiving data
/*We'd better handler data event fast, there would be much more data events than
other types of events. If we take too much time on data event, the queue might
be full.*/
@ -146,5 +146,5 @@ void app_main(void)
uart_pattern_queue_reset(EX_UART_NUM, 20);
//Create a task to handler UART event from ISR
xTaskCreate(uart_event_task, "uart_event_task", 2048, NULL, 12, NULL);
xTaskCreate(uart_event_task, "uart_event_task", 3072, NULL, 12, NULL);
}