aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-01-08 17:37:05 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-01-08 17:37:05 +0000
commitf861470e797bef4d9d3aff7f9455c137f4afbba6 (patch)
treed11a74dc32b56f73d965bae92ed991cb33095601
parent274a4627b929f7bc6def137366aa501ac8ba7062 (diff)
downloadChibiOS-f861470e797bef4d9d3aff7f9455c137f4afbba6.tar.gz
ChibiOS-f861470e797bef4d9d3aff7f9455c137f4afbba6.tar.bz2
ChibiOS-f861470e797bef4d9d3aff7f9455c137f4afbba6.zip
IAR Cortex-M0 port working but there is no report because the compiler limits the size to just 8KB, not enough for the test suite.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2621 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--demos/ARMCM0-LPC1114-LPCXPRESSO/iar/ch.ewp6
-rw-r--r--readme.txt5
2 files changed, 9 insertions, 2 deletions
diff --git a/demos/ARMCM0-LPC1114-LPCXPRESSO/iar/ch.ewp b/demos/ARMCM0-LPC1114-LPCXPRESSO/iar/ch.ewp
index 234bd3c8e..49d605d0c 100644
--- a/demos/ARMCM0-LPC1114-LPCXPRESSO/iar/ch.ewp
+++ b/demos/ARMCM0-LPC1114-LPCXPRESSO/iar/ch.ewp
@@ -2005,6 +2005,9 @@
<name>$PROJ_DIR$\..\..\..\os\ports\IAR\ARMCMx\chtypes.h</name>
</file>
<file>
+ <name>$PROJ_DIR$\..\..\..\os\ports\IAR\ARMCMx\LPC11xx\cmparams.h</name>
+ </file>
+ <file>
<name>$PROJ_DIR$\..\..\..\os\ports\IAR\ARMCMx\cstartup.s</name>
</file>
<file>
@@ -2013,6 +2016,9 @@
<file>
<name>$PROJ_DIR$\..\..\..\os\ports\IAR\ARMCMx\nvic.h</name>
</file>
+ <file>
+ <name>$PROJ_DIR$\..\..\..\os\ports\IAR\ARMCMx\LPC11xx\vectors.s</name>
+ </file>
</group>
</group>
<group>
diff --git a/readme.txt b/readme.txt
index 1cea1cdc1..02ccbe50e 100644
--- a/readme.txt
+++ b/readme.txt
@@ -74,8 +74,9 @@
to 2.0.9).
- NEW: New ARM Cortex-Mx port for RVCT compiler (probably will not be
included in 2.2.0, requires more testing).
-- NEW: Integrated the Cortex-Mx GCC, IAR and RVCT demos in a single demo
- with multiple project files, the code is exactly the same.
+- NEW: Integrated the various Cortex-Mx GCC, IAR and RVCT demos in unified
+ demos with multiple project files, the code is exactly the same. Renamed
+ the directories removing the compiler suffix.
- NEW: Added an USB clock configuration in the STM32 HAL driver (LD, MD, HD).
- NEW: New semaphore API chSemSetCounterI().
- NEW: New queue APIs chIQGetFullI() and chOQGetFullI().