mirror of
https://github.com/ttrftech/NanoVNA.git
synced 2026-04-05 06:25:36 +00:00
adjust thread stack size
This commit is contained in:
parent
6d2941bd51
commit
1db0259173
1 changed files with 2 additions and 2 deletions
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…
Add table
Add a link
Reference in a new issue