diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-09-13 11:24:38 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-09-13 11:24:38 +0000 |
commit | 1a2e19d5d6161df4c7b385bc03ed761e0e27e825 (patch) | |
tree | dee4b5a33495ffd6f8a8bea55632b32d0ca78edf /demos/rt/RT-STM32F051-DISCOVERY | |
parent | a86b48c578db236dddea8f141db7607741d48e57 (diff) | |
download | ChibiOS-1a2e19d5d6161df4c7b385bc03ed761e0e27e825.tar.gz ChibiOS-1a2e19d5d6161df4c7b385bc03ed761e0e27e825.tar.bz2 ChibiOS-1a2e19d5d6161df4c7b385bc03ed761e0e27e825.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6299 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/rt/RT-STM32F051-DISCOVERY')
-rw-r--r-- | demos/rt/RT-STM32F051-DISCOVERY/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/rt/RT-STM32F051-DISCOVERY/main.c b/demos/rt/RT-STM32F051-DISCOVERY/main.c index ea6ed9f39..cc7753756 100644 --- a/demos/rt/RT-STM32F051-DISCOVERY/main.c +++ b/demos/rt/RT-STM32F051-DISCOVERY/main.c @@ -22,7 +22,7 @@ * Blue 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");
@@ -38,7 +38,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");
|