增加栈大小,防止线程溢出

This commit is contained in:
OPTOC
2025-10-27 18:31:39 +08:00
parent cdff6c812a
commit 4d633454e9

View File

@@ -53,13 +53,13 @@ void sertrf_start(void)
"embedded_thread",
embedded_thread,
NULL,
2048,
4096,
20);
os_thread_create(&sertrf.pc_thread,
"pc_thread",
pc_thread,
NULL,
2048,
4096,
20);
os_thread_create(&sertrf.app_thread,
"app_thread",