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
This commit is contained in:
gdisirio 2011-01-08 17:37:05 +00:00
parent 274a4627b9
commit f861470e79
2 changed files with 9 additions and 2 deletions

View File

@ -2004,6 +2004,9 @@
<file>
<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>
@ -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>

View File

@ -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().