From 2287f16948426b13908d1422e719c4f54fd8f893 Mon Sep 17 00:00:00 2001 From: cfif Date: Fri, 6 Mar 2026 13:33:15 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CommandLines.c | 2 +- CommandLines.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CommandLines.c b/CommandLines.c index d4576b2..950b2e3 100644 --- a/CommandLines.c +++ b/CommandLines.c @@ -74,7 +74,7 @@ void ListenCLICommand(tCommandLine *env) { static _Noreturn void CommandLine_Thread(tCommandLine *env) { for (;;) { ListenCLICommand(env); - SystemDelayMs(1000); + SystemDelayMs(100); } } diff --git a/CommandLines.h b/CommandLines.h index 95bdedb..31fab16 100644 --- a/CommandLines.h +++ b/CommandLines.h @@ -23,7 +23,7 @@ typedef struct { struct { osThreadId_t id; - uint32_t stack[512]; + uint32_t stack[400]; StaticTask_t controlBlock; osThreadAttr_t attr; } thread;