mirror of
https://github.com/ttrftech/NanoVNA.git
synced 2026-02-17 12:54:18 +01:00
adjust thread stack size
This commit is contained in:
parent
6d2941bd51
commit
1db0259173
4
main.c
4
main.c
|
|
@ -42,7 +42,7 @@ uint8_t drive_strength = SI5351_CLK_DRIVE_STRENGTH_2MA;
|
|||
int8_t frequency_updated = FALSE;
|
||||
int8_t sweep_enabled = TRUE;
|
||||
|
||||
static THD_WORKING_AREA(waThread1, 440);
|
||||
static THD_WORKING_AREA(waThread1, 768);
|
||||
static THD_FUNCTION(Thread1, arg)
|
||||
{
|
||||
(void)arg;
|
||||
|
|
@ -1354,7 +1354,7 @@ static void cmd_stat(BaseSequentialStream *chp, int argc, char *argv[])
|
|||
|
||||
|
||||
|
||||
#define SHELL_WA_SIZE THD_WORKING_AREA_SIZE(440)
|
||||
#define SHELL_WA_SIZE THD_WORKING_AREA_SIZE(256)
|
||||
static THD_WORKING_AREA(waThread2, SHELL_WA_SIZE);
|
||||
|
||||
static const ShellCommand commands[] =
|
||||
|
|
|
|||
Loading…
Reference in a new issue