From 1d0df2936b2fdda96f9bf89397111e8e0c63131b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kuba=20Szczodrzy=C5=84ski?= Date: Thu, 30 Jun 2022 19:32:37 +0200 Subject: [PATCH] [beken-72xx] Increase main task stack size --- arduino/beken-72xx/cores/arduino/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arduino/beken-72xx/cores/arduino/main.cpp b/arduino/beken-72xx/cores/arduino/main.cpp index 4636345..d7e1d1a 100644 --- a/arduino/beken-72xx/cores/arduino/main.cpp +++ b/arduino/beken-72xx/cores/arduino/main.cpp @@ -15,7 +15,7 @@ bool startMainTask() { THD_APPLICATION_PRIORITY, "main", (beken_thread_function_t)main_task, - 4096, + 8192, NULL ); if (ret != kNoErr)