From b5349cc22d7deade864d5ceb795a33af0a2eca15 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Tue, 6 Aug 2013 09:45:35 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6086 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/ports/GCC/ARMCMx/chcore_v7m.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'os/ports/GCC') diff --git a/os/ports/GCC/ARMCMx/chcore_v7m.h b/os/ports/GCC/ARMCMx/chcore_v7m.h index e3a6c627c..4cadae90b 100644 --- a/os/ports/GCC/ARMCMx/chcore_v7m.h +++ b/os/ports/GCC/ARMCMx/chcore_v7m.h @@ -96,8 +96,8 @@ * a stack frame when compiling without optimizations. You may * reduce this value to zero when compiling with optimizations. */ -#if !defined(PORT_IDLE_THREAD_STACK_SIZE) -#define PORT_IDLE_THREAD_STACK_SIZE 16 +#if !defined(CH_PORT_IDLE_THREAD_STACK_SIZE) || defined(__DOXYGEN__) +#define CH_PORT_IDLE_THREAD_STACK_SIZE 16 #endif /** @@ -109,8 +109,8 @@ * with compiler optimizations disabled. The value can be reduced * when compiler optimizations are enabled. */ -#if !defined(PORT_INT_REQUIRED_STACK) -#define PORT_INT_REQUIRED_STACK 32 +#if !defined(CH_PORT_INT_REQUIRED_STACK) || defined(__DOXYGEN__) +#define CH_PORT_INT_REQUIRED_STACK 32 #endif /** @@ -330,7 +330,7 @@ struct context { #define THD_WA_SIZE(n) STACK_ALIGN(sizeof(thread_t) + \ sizeof(struct intctx) + \ sizeof(struct extctx) + \ - (n) + (PORT_INT_REQUIRED_STACK)) + (n) + (CH_PORT_INT_REQUIRED_STACK)) /** * @brief Static working area allocation. -- cgit v1.2.3