mirror of
https://github.com/ttrftech/NanoVNA.git
synced 2025-12-06 03:31:59 +01:00
fix: increase stack area to prevent fault caused from nanovna-saver
This commit is contained in:
parent
5c53824d36
commit
d68ab20c30
2
main.c
2
main.c
|
|
@ -1757,7 +1757,7 @@ static void cmd_vbat(BaseSequentialStream *chp, int argc, char *argv[])
|
|||
chprintf(chp, "%d mV\r\n", vbat);
|
||||
}
|
||||
|
||||
static THD_WORKING_AREA(waThread2, /* cmd_* max stack size + alpha */410);
|
||||
static THD_WORKING_AREA(waThread2, /* cmd_* max stack size + alpha */442);
|
||||
|
||||
static const ShellCommand commands[] =
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue