Обновление

This commit is contained in:
cfif 2026-03-06 13:33:15 +03:00
parent 9248cb0b99
commit 2287f16948
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ void ListenCLICommand(tCommandLine *env) {
static _Noreturn void CommandLine_Thread(tCommandLine *env) {
for (;;) {
ListenCLICommand(env);
SystemDelayMs(1000);
SystemDelayMs(100);
}
}

View File

@ -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;