diff options
author | Paul Selkirk <paul@psgd.org> | 2020-02-26 11:08:15 -0500 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2020-02-26 11:08:15 -0500 |
commit | 4b30c58d7062079ad14a990b552a7e8837345f07 (patch) | |
tree | 2d541d6e56dcb1ded8cf8b2beed480d196410695 | |
parent | 16c9fbd9bc9ad432260fda7558415aedf64844d7 (diff) |
Some timing tests overflow the meagre 16K CLI task stack, so bump it up for that case.
-rw-r--r-- | projects/hsm/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/projects/hsm/Makefile b/projects/hsm/Makefile index 5e6c4bb..a2b7c0d 100644 --- a/projects/hsm/Makefile +++ b/projects/hsm/Makefile @@ -37,6 +37,7 @@ endif ifdef DO_TIMING CFLAGS += -DDO_TIMING CFLAGS += -I../cli-test +CFLAGS += -DCLI_STACK_SIZE=65536 OBJS += ../cli-test/mgmt-timing.o $(TOPLEVEL)/stm-dwt.o LDFLAGS += -lm endif |