diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-11-29 10:54:24 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-11-29 10:54:24 +0000 |
commit | b3e92dc72078603137a7182759419e2b801755b9 (patch) | |
tree | f6a55965ea67966ed2cb283ea7830a428878818d /demos/ARM7-LPC214x-GCC | |
parent | 4c4689df98554b3089d1dd66c60f92deab9d1603 (diff) | |
download | ChibiOS-b3e92dc72078603137a7182759419e2b801755b9.tar.gz ChibiOS-b3e92dc72078603137a7182759419e2b801755b9.tar.bz2 ChibiOS-b3e92dc72078603137a7182759419e2b801755b9.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@521 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/ARM7-LPC214x-GCC')
-rw-r--r-- | demos/ARM7-LPC214x-GCC/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/ARM7-LPC214x-GCC/main.c b/demos/ARM7-LPC214x-GCC/main.c index 90dece112..96b117f8a 100644 --- a/demos/ARM7-LPC214x-GCC/main.c +++ b/demos/ARM7-LPC214x-GCC/main.c @@ -29,7 +29,7 @@ /*
* Red LEDs blinker thread, times are in milliseconds.
*/
-static WorkingArea(waThread1, 64);
+static WORKING_AREA(waThread1, 64);
static msg_t Thread1(void *arg) {
while (TRUE) {
@@ -48,7 +48,7 @@ static msg_t Thread1(void *arg) { /*
* Yellow LED blinker thread, times are in milliseconds.
*/
-static WorkingArea(waThread2, 64);
+static WORKING_AREA(waThread2, 64);
static msg_t Thread2(void *arg) {
while (TRUE) {
@@ -60,7 +60,7 @@ static msg_t Thread2(void *arg) { return 0;
}
-static WorkingArea(waTestThread, 128);
+static WORKING_AREA(waTestThread, 128);
/*
* Executed as event handler at 500mS intervals.
|