aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2007-10-04 17:40:45 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2007-10-04 17:40:45 +0000
commitff4dd3f8f0f95652f754ab869b136d31d671ac51 (patch)
tree2d8b1a2369c357fbb28369de13d1b5e9feec2b9a
parent286ae3e6fb6036dec366e5c977d68546007a78e5 (diff)
downloadChibiOS-ff4dd3f8f0f95652f754ab869b136d31d671ac51.tar.gz
ChibiOS-ff4dd3f8f0f95652f754ab869b136d31d671ac51.tar.bz2
ChibiOS-ff4dd3f8f0f95652f754ab869b136d31d671ac51.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@38 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--readme.txt6
-rw-r--r--src/templates/chtypes.h1
2 files changed, 5 insertions, 2 deletions
diff --git a/readme.txt b/readme.txt
index 648839cec..01b6ce579 100644
--- a/readme.txt
+++ b/readme.txt
@@ -23,16 +23,20 @@ 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.
-LPC214x-GCC - ChibiOS/RT port for ARM7 LPC2148, the demo targets the
+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.
+AVR-AT90CANx-GCC - Port on AVER AT90CAN128, not complete yet.
*****************************************************************************
*** Releases ***
*****************************************************************************
+*** 0.3.2 ***
+- Removed an obsolete definition in ./src/templates/chtypes.h
+
*** 0.3.1 ***
- Test program added to the demos. Telnet the MinGW and MSVS demos and type
"test" at the "ch>" prompt. On the LPC214x demo the test is activated by
diff --git a/src/templates/chtypes.h b/src/templates/chtypes.h
index 4d8b2a18e..45f60a1a3 100644
--- a/src/templates/chtypes.h
+++ b/src/templates/chtypes.h
@@ -46,7 +46,6 @@ typedef ULONG32 t_time; /* Time, recommended fastest unsigned.*/
typedef LONG32 t_cnt; /* Counter, recommended fastest signed.*/
typedef ULONG32 t_size; /* Size, use unsigned pointer equivalent.*/
-#define THREAD
#define INLINE inline
#endif /* _CHTYPES_H_ */