Skip to content

Commit

Permalink
fix(uart): increased stack size for the task in uart_events example
Browse files Browse the repository at this point in the history
The example cannot run successfully on ESP32S3 due to task stack overflow
Introduced in a4e6f57
  • Loading branch information
songruo committed Aug 12, 2024
1 parent 3a8c884 commit 96a8265
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.*/
Expand Down Expand Up @@ -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);
}

0 comments on commit 96a8265

Please sign in to comment.