From 3c45a0fd986a522bba49e5a614791713bbc39297 Mon Sep 17 00:00:00 2001 From: isiora Date: Wed, 24 Jan 2018 20:50:52 +0000 Subject: Stack resize. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11403 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-NSEC/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'demos') 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 -- cgit v1.2.3