summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2008-10-19 11:06:38 +0000
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2008-10-19 11:06:38 +0000
commit0200c0dd804ae1442789923becd42d08954f50ca (patch)
tree9dd51b5b54e6dd3898240df73642fa713a5cd0e3
parente224d4212d0979423d2bf2161e6d04fc1675b933 (diff)
downloadfreertos-0200c0dd804ae1442789923becd42d08954f50ca.tar.gz
freertos-0200c0dd804ae1442789923becd42d08954f50ca.tar.bz2
freertos-0200c0dd804ae1442789923becd42d08954f50ca.tar.xz
Correct portSTACK_GROWTH value.
git-svn-id: https://freertos.svn.sourceforge.net/svnroot/freertos/trunk@499 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
-rw-r--r--Source/portable/MPLAB/PIC32MX/portmacro.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/portable/MPLAB/PIC32MX/portmacro.h b/Source/portable/MPLAB/PIC32MX/portmacro.h
index 6f12cd8f..f3d0a410 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 )
/*-----------------------------------------------------------*/