aboutsummaryrefslogtreecommitdiffstats
path: root/demos/STM32/RT-STM32F401RE-NUCLEO/main.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-10-02 11:38:00 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-10-02 11:38:00 +0000
commit0ec45cc00d8032891535add971d8764a9430d1b9 (patch)
treee143b09610a33951f89891be6295f50a859f6959 /demos/STM32/RT-STM32F401RE-NUCLEO/main.c
parent9ef29ae9ead343d79571bc4125dd7a02820d3ef7 (diff)
downloadChibiOS-0ec45cc00d8032891535add971d8764a9430d1b9.tar.gz
ChibiOS-0ec45cc00d8032891535add971d8764a9430d1b9.tar.bz2
ChibiOS-0ec45cc00d8032891535add971d8764a9430d1b9.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7346 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/STM32/RT-STM32F401RE-NUCLEO/main.c')
-rw-r--r--demos/STM32/RT-STM32F401RE-NUCLEO/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/STM32/RT-STM32F401RE-NUCLEO/main.c b/demos/STM32/RT-STM32F401RE-NUCLEO/main.c
index 06e9079f0..dea524833 100644
--- a/demos/STM32/RT-STM32F401RE-NUCLEO/main.c
+++ b/demos/STM32/RT-STM32F401RE-NUCLEO/main.c
@@ -21,8 +21,8 @@
/*
* Red LED blinker thread, times are in milliseconds.
*/
-static WORKING_AREA(waThread1, 128);
-static msg_t Thread1(void *arg) {
+static THD_WORKING_AREA(waThread1, 128);
+static THD_FUNCTION(Thread1, arg) {
(void)arg;
chRegSetThreadName("blinker");