aboutsummaryrefslogtreecommitdiffstats
path: root/readme.txt
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2007-11-29 09:16:53 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2007-11-29 09:16:53 +0000
commitf20b97abe74cfbb1f28ef70043cf718fbebf4fa4 (patch)
tree818f5beab307c6cb813f4f9721950667bd6df0cf /readme.txt
parent6f0569444dafdae8b367a54a07a4bfaf3675f545 (diff)
downloadChibiOS-f20b97abe74cfbb1f28ef70043cf718fbebf4fa4.tar.gz
ChibiOS-f20b97abe74cfbb1f28ef70043cf718fbebf4fa4.tar.bz2
ChibiOS-f20b97abe74cfbb1f28ef70043cf718fbebf4fa4.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@118 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'readme.txt')
-rw-r--r--readme.txt26
1 files changed, 15 insertions, 11 deletions
diff --git a/readme.txt b/readme.txt
index 7399f6948..60770c779 100644
--- a/readme.txt
+++ b/readme.txt
@@ -23,17 +23,17 @@
Current ports under ./demos:
-Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process,
- MinGW version.
-Win32-MSVS - ChibiOS/RT simulator and demo into a WIN32 process,
- Visual Studio 7 or any later version should work.
-ARM7-LPC214x-GCC - ChibiOS/RT port for ARM7 LPC2148, the demo targets the
- Olimex LPC-P2148 board. This port can be easily
- modified for any processor into the LPC2000 family or
- other boards. The demo can be compiled using YAGARTO
- or any other GCC-based ARM toolchain. Full demo.
-ARM7-LPC214x-GCC-min - Minimal demo for LPC214X.
-AVR-AT90CANx-GCC - Port on AVR AT90CAN128, not complete yet.
+Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process,
+ MinGW version.
+Win32-MSVS - ChibiOS/RT simulator and demo into a WIN32 process,
+ Visual Studio 7 or any later version should work.
+ARM7-LPC214x-GCC - ChibiOS/RT port for ARM7 LPC2148, the demo targets
+ the Olimex LPC-P2148 board. This port can be easily
+ modified for any processor into the LPC2000 family or
+ other boards. The demo can be compiled using YAGARTO
+ or any other GCC-based ARM toolchain. Full demo.
+ARM7-LPC214x-GCC-min - Minimal demo for LPC214X.
+AVR-AT90CANx-GCC - Port on AVR AT90CAN128, not complete yet.
*****************************************************************************
*** Releases ***
@@ -44,6 +44,10 @@ AVR-AT90CANx-GCC - Port on AVR AT90CAN128, not complete yet.
chEvtWaitTimeout() code if it is enabled.
- Size optimization in the semaphores code, now the chSemWaitTimeout() just
invokes the chSemWaitTimeoutS() inside its system mutex zone.
+- Added a threads create/exit/wait benchmark to the test suite, the system
+ is capable of 81712 threads started/terminated per second on the reference
+ LPC2148 board. The figure is inclusive of two context switch operations
+ for each thread.
- Minor improvement in the LPC214x serial driver, unneeded events were
generated in some rare cases.
- Fixed a chSysInit() documentation error.