diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2007-12-07 15:56:04 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2007-12-07 15:56:04 +0000 |
commit | 00ab4e1c637058ffcd98dad63cbe27727736daee (patch) | |
tree | b336d793f8408a6a773868048cff0a93a210e4ed | |
parent | 87d48c2202f8e3e732937e969c025df7120f9c6e (diff) | |
download | ChibiOS-00ab4e1c637058ffcd98dad63cbe27727736daee.tar.gz ChibiOS-00ab4e1c637058ffcd98dad63cbe27727736daee.tar.bz2 ChibiOS-00ab4e1c637058ffcd98dad63cbe27727736daee.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@130 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | demos/ARM7-LPC214x-GCC-minimal/main.c | 4 | ||||
-rw-r--r-- | demos/ARM7-LPC214x-GCC/main.c | 4 | ||||
-rw-r--r-- | readme.txt | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/demos/ARM7-LPC214x-GCC-minimal/main.c b/demos/ARM7-LPC214x-GCC-minimal/main.c index 5a0b1e80a..18017f0b5 100644 --- a/demos/ARM7-LPC214x-GCC-minimal/main.c +++ b/demos/ARM7-LPC214x-GCC-minimal/main.c @@ -24,7 +24,7 @@ /*
* Red LEDs blinker thread, times are in milliseconds.
*/
-static WorkingArea(waThread1, 32);
+static WorkingArea(waThread1, 64);
static t_msg Thread1(void *arg) {
while (TRUE) {
@@ -43,7 +43,7 @@ static t_msg Thread1(void *arg) { /*
* Yellow LED blinker thread, times are in milliseconds.
*/
-static WorkingArea(waThread2, 32);
+static WorkingArea(waThread2, 64);
static t_msg Thread2(void *arg) {
while (TRUE) {
diff --git a/demos/ARM7-LPC214x-GCC/main.c b/demos/ARM7-LPC214x-GCC/main.c index b98747d20..dbc56803e 100644 --- a/demos/ARM7-LPC214x-GCC/main.c +++ b/demos/ARM7-LPC214x-GCC/main.c @@ -28,7 +28,7 @@ /*
* Red LEDs blinker thread, times are in milliseconds.
*/
-static WorkingArea(waThread1, 32);
+static WorkingArea(waThread1, 64);
static t_msg Thread1(void *arg) {
while (TRUE) {
@@ -47,7 +47,7 @@ static t_msg Thread1(void *arg) { /*
* Yellow LED blinker thread, times are in milliseconds.
*/
-static WorkingArea(waThread2, 32);
+static WorkingArea(waThread2, 64);
static t_msg Thread2(void *arg) {
while (TRUE) {
diff --git a/readme.txt b/readme.txt index 4571ace5d..c9d29eeb8 100644 --- a/readme.txt +++ b/readme.txt @@ -45,6 +45,8 @@ AVR-AT90CANx-GCC - Port on AVR AT90CAN128, not complete yet. The bug did not affect ARM mode or THUMB with interworking mode.
- Fixed a bug in chIQGetTimeout(), interrupts were not re-enabled when exiting
the function because a timeout. The problem affected that API only.
+- Fixed a potential problem in chSysInit(), it should not affect any past
+ application.
- Added a chDbgAssert() API to the debug subsystem.
- Cleaned up the kernel source code using chDbgAssert() instead of a lot of
"#ifdef CH_USE_DEBUG", it is much more readable now.
|