aboutsummaryrefslogtreecommitdiffstats
path: root/demos/STM32/RT-STM32L152RE-NUCLEO/main.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-10-02 10:22:56 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-10-02 10:22:56 +0000
commit11efbd369e16de7bce778d51439cd3feba5acc10 (patch)
tree2628780f9ad819885130925afef363f979436028 /demos/STM32/RT-STM32L152RE-NUCLEO/main.c
parent895a43ca58bc97a4907f4786be58bcb47e0a0553 (diff)
downloadChibiOS-11efbd369e16de7bce778d51439cd3feba5acc10.tar.gz
ChibiOS-11efbd369e16de7bce778d51439cd3feba5acc10.tar.bz2
ChibiOS-11efbd369e16de7bce778d51439cd3feba5acc10.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7344 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/STM32/RT-STM32L152RE-NUCLEO/main.c')
-rw-r--r--demos/STM32/RT-STM32L152RE-NUCLEO/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/STM32/RT-STM32L152RE-NUCLEO/main.c b/demos/STM32/RT-STM32L152RE-NUCLEO/main.c
index 06e9079f0..dea524833 100644
--- a/demos/STM32/RT-STM32L152RE-NUCLEO/main.c
+++ b/demos/STM32/RT-STM32L152RE-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");