Demo working.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@14805 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2021-09-19 10:47:27 +00:00
parent 8ccfb00a42
commit c01f36fb37
2 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@
# Compiler options here.
ifeq ($(USE_OPT),)
USE_OPT = -Og -ggdb -fomit-frame-pointer -falign-functions=16
USE_OPT = -O2 -ggdb -fomit-frame-pointer -falign-functions=16
endif
# C specific options here (added to USE_OPT).
@ -55,13 +55,13 @@ endif
# Stack size to be allocated to the Cortex-M process stack. This stack is
# the stack used by the main() thread.
ifeq ($(USE_PROCESS_STACKSIZE),)
USE_PROCESS_STACKSIZE = 0x400
USE_PROCESS_STACKSIZE = 0x200
endif
# Stack size to the allocated to the Cortex-M main/exceptions stack. This
# stack is used for processing interrupts and exceptions.
ifeq ($(USE_EXCEPTIONS_STACKSIZE),)
USE_EXCEPTIONS_STACKSIZE = 0x400
USE_EXCEPTIONS_STACKSIZE = 0x100
endif
# Enables the use of FPU (no, softfp, hard).

View File

@ -19,7 +19,7 @@
#include "shell.h"
#define SHELL_WA_SIZE THD_WORKING_AREA_SIZE(2048)
#define SHELL_WA_SIZE THD_WORKING_AREA_SIZE(512)
static const ShellCommand commands[] = {
{NULL, NULL}