fix(usb_serial_jtag): Increase stack size on serial_jtag example,

Closes https://github.com/espressif/esp-idf/issues/13245
This commit is contained in:
Cao Sen Miao
2024-03-27 15:46:53 +08:00
parent 3bd63654c8
commit 4502621282

View File

@@ -13,7 +13,7 @@
#include "esp_check.h"
#define BUF_SIZE (1024)
#define ECHO_TASK_STACK_SIZE (2048)
#define ECHO_TASK_STACK_SIZE (4096)
static void echo_task(void *arg)
{