diff options
author | Fabio Utzig <utzig@utzig.org> | 2016-04-16 03:17:10 +0000 |
---|---|---|
committer | Fabio Utzig <utzig@utzig.org> | 2016-04-16 03:17:10 +0000 |
commit | cd575463a977633c04ec96889e35eb015f52a98d (patch) | |
tree | ba4ef028bfab067726ab7cab710944a5d7ecc5dc /demos/AVR | |
parent | 1b5ab277a84f95e8fd54c313d512074e34af63ef (diff) | |
download | ChibiOS-cd575463a977633c04ec96889e35eb015f52a98d.tar.gz ChibiOS-cd575463a977633c04ec96889e35eb015f52a98d.tar.bz2 ChibiOS-cd575463a977633c04ec96889e35eb015f52a98d.zip |
[AVR] Fixed WA declaration
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9282 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/AVR')
-rw-r--r-- | demos/AVR/RT-ARDUINOMEGA/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/AVR/RT-ARDUINOMEGA/main.c b/demos/AVR/RT-ARDUINOMEGA/main.c index 54b3f9c32..b1d353e5f 100644 --- a/demos/AVR/RT-ARDUINOMEGA/main.c +++ b/demos/AVR/RT-ARDUINOMEGA/main.c @@ -18,7 +18,7 @@ #include "hal.h"
#include "ch_test.h"
-static WORKING_AREA(waThread1, 32);
+static THD_WORKING_AREA(waThread1, 32);
static THD_FUNCTION(Thread1, arg) {
(void)arg;
|