diff options
author | RichardBarry <RichardBarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2> | 2007-06-11 05:36:39 +0000 |
---|---|---|
committer | RichardBarry <RichardBarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2> | 2007-06-11 05:36:39 +0000 |
commit | 79afd204cff72411ff894a4d760c9ba3fff364a2 (patch) | |
tree | 830874719fb35b0e93e5c1e4a67a0199be8206d1 /Source | |
parent | 1580f82a9dd2d94590fd572c39410e3c969f9415 (diff) | |
download | freertos-79afd204cff72411ff894a4d760c9ba3fff364a2.tar.gz |
Add in first STM32 demo.
git-svn-id: http://svn.code.sf.net/p/freertos/code/trunk@94 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'Source')
-rw-r--r-- | Source/include/portable.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/include/portable.h b/Source/include/portable.h index 7aafd4422..3c2fa6d15 100644 --- a/Source/include/portable.h +++ b/Source/include/portable.h @@ -1,5 +1,5 @@ /*
- FreeRTOS.org V4.3.0 - Copyright (C) 2003-2007 Richard Barry.
+ FreeRTOS.org V4.3.1 - Copyright (C) 2003-2007 Richard Barry.
This file is part of the FreeRTOS.org distribution.
@@ -144,6 +144,10 @@ #include "../../Source/portable/GCC/ARM_CM3/portmacro.h"
#endif
+#ifdef IAR_ARM_CM3
+ #include "../../Source/portable/IAR/ARM_CM3/portmacro.h"
+#endif
+
#ifdef IAR_ARMCM3_LM
#include "../../Source/portable/IAR/ARM_CM3/portmacro.h"
#endif
|