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