Skip to content

Commit

Permalink
fix: increase stack area to prevent fault caused from nanovna-saver
Browse files Browse the repository at this point in the history
  • Loading branch information
edy555 committed Sep 17, 2019
1 parent 5c53824 commit d68ab20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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[] =
{
Expand Down

0 comments on commit d68ab20

Please sign in to comment.