diff options
author | isiora <none@example.com> | 2018-01-24 20:50:52 +0000 |
---|---|---|
committer | isiora <none@example.com> | 2018-01-24 20:50:52 +0000 |
commit | 3c45a0fd986a522bba49e5a614791713bbc39297 (patch) | |
tree | b4690578110ba5b73d4bdfa04362078e6541ac81 /demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-NSEC | |
parent | 9e79944c8a1f79f66ea3a9f77a06074a4d6a5e36 (diff) | |
download | ChibiOS-3c45a0fd986a522bba49e5a614791713bbc39297.tar.gz ChibiOS-3c45a0fd986a522bba49e5a614791713bbc39297.tar.bz2 ChibiOS-3c45a0fd986a522bba49e5a614791713bbc39297.zip |
Stack resize.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11403 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-NSEC')
-rwxr-xr-x | demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-NSEC/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-NSEC/Makefile b/demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-NSEC/Makefile index 1534a91f4..d3c0ddb5c 100755 --- a/demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-NSEC/Makefile +++ b/demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-NSEC/Makefile @@ -60,19 +60,19 @@ endif # Stack size to be allocated to the ARM System/User stack. This
# stack is the stack used by the main() thread.
ifeq ($(USE_SYSTEM_STACKSIZE),)
- USE_SYSTEM_STACKSIZE = 0x400
+ USE_SYSTEM_STACKSIZE = 0x800
endif
# Stack size to the allocated to the ARM IRQ stack. This
# stack is used for processing interrupts and exceptions.
ifeq ($(USE_EXCEPTIONS_STACKSIZE),)
- USE_IRQ_STACKSIZE = 0x400
+ USE_IRQ_STACKSIZE = 0x800
endif
# Stack size to the allocated to the ARM FIQ stack. This
# stack is used for processing interrupts and exceptions.
ifeq ($(USE_FIQ_STACKSIZE),)
- USE_FIQ_STACKSIZE = 0x400
+ USE_FIQ_STACKSIZE = 0x800
endif
# Stack size to the allocated to the ARM Supervisor stack. This
|