From 2381a7019072f8f6983f323a2bc0913ac115aed3 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sun, 5 Apr 2015 10:14:51 +0000 Subject: Board files regenerated with the updated tool. Fixed some errors in demos. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7854 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- demos/STM32/RT-STM32F429-DISCOVERY/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'demos/STM32/RT-STM32F429-DISCOVERY') diff --git a/demos/STM32/RT-STM32F429-DISCOVERY/main.c b/demos/STM32/RT-STM32F429-DISCOVERY/main.c index e0a371611..4c23d280a 100644 --- a/demos/STM32/RT-STM32F429-DISCOVERY/main.c +++ b/demos/STM32/RT-STM32F429-DISCOVERY/main.c @@ -27,7 +27,7 @@ * Red LED blinker thread, times are in milliseconds. */ static THD_WORKING_AREA(waThread1, 128); -static msg_t Thread1(void *arg) { +static THD_FUNCTION(Thread1, arg) { (void)arg; chRegSetThreadName("blinker1"); @@ -43,7 +43,7 @@ static msg_t Thread1(void *arg) { * Green LED blinker thread, times are in milliseconds. */ static THD_WORKING_AREA(waThread2, 128); -static msg_t Thread2(void *arg) { +static THD_FUNCTION(Thread2, arg) { (void)arg; chRegSetThreadName("blinker2"); -- cgit v1.2.3