From: richardbarry Date: Sun, 19 Oct 2008 11:06:38 +0000 (+0000) Subject: Correct portSTACK_GROWTH value. X-Git-Tag: V5.1.2~197 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d1cf795219fe7cb88547e2e33a68268f9b1c8bfe;p=freertos Correct portSTACK_GROWTH value. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@499 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Source/portable/MPLAB/PIC32MX/portmacro.h b/Source/portable/MPLAB/PIC32MX/portmacro.h index 6f12cd8f7..f3d0a4106 100644 --- a/Source/portable/MPLAB/PIC32MX/portmacro.h +++ b/Source/portable/MPLAB/PIC32MX/portmacro.h @@ -87,7 +87,7 @@ extern "C" { /* Hardware specifics. */ #define portBYTE_ALIGNMENT 4 -#define portSTACK_GROWTH -4 +#define portSTACK_GROWTH -1 #define portTICK_RATE_MS ( ( portTickType ) 1000 / configTICK_RATE_HZ ) /*-----------------------------------------------------------*/