summaryrefslogtreecommitdiff
path: root/Source/portable/IAR/AtmelSAM7S64/portmacro.h
diff options
context:
space:
mode:
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2008-07-25 02:35:50 +0000
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2008-07-25 02:35:50 +0000
commit375bd2dd0c091008b53f9e912bc9aa0f4a8bfc2c (patch)
tree28043f31c49df50b709da155a99fc00481e31daf /Source/portable/IAR/AtmelSAM7S64/portmacro.h
parentb4d4056a31e01336302aaa9d20bffee7dcdea24e (diff)
downloadfreertos-375bd2dd0c091008b53f9e912bc9aa0f4a8bfc2c.tar.gz
freertos-375bd2dd0c091008b53f9e912bc9aa0f4a8bfc2c.tar.bz2
freertos-375bd2dd0c091008b53f9e912bc9aa0f4a8bfc2c.tar.xz
Change ARM7 byte alignment to 8.
git-svn-id: https://freertos.svn.sourceforge.net/svnroot/freertos/trunk@417 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'Source/portable/IAR/AtmelSAM7S64/portmacro.h')
-rw-r--r--Source/portable/IAR/AtmelSAM7S64/portmacro.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/portable/IAR/AtmelSAM7S64/portmacro.h b/Source/portable/IAR/AtmelSAM7S64/portmacro.h
index 06da3cb6..f31f3c71 100644
--- a/Source/portable/IAR/AtmelSAM7S64/portmacro.h
+++ b/Source/portable/IAR/AtmelSAM7S64/portmacro.h
@@ -86,7 +86,7 @@ extern "C" {
/* Hardware specifics. */
#define portSTACK_GROWTH ( -1 )
#define portTICK_RATE_MS ( ( portTickType ) 1000 / configTICK_RATE_HZ )
-#define portBYTE_ALIGNMENT 4
+#define portBYTE_ALIGNMENT 8
#define portYIELD() asm ( "SWI 0" )
#define portNOP() asm ( "NOP" )
/*-----------------------------------------------------------*/