diff options
author | utzig <utzig@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-08-07 15:52:48 +0000 |
---|---|---|
committer | utzig <utzig@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-08-07 15:52:48 +0000 |
commit | 3f7d4b4a60663115c0132deff24d2f1317e60e7b (patch) | |
tree | 2a0638cb2d2a5621e16a1acec36d5904e950ad08 | |
parent | 12927f39337a434165cc7b68684472393094814e (diff) | |
download | ChibiOS-3f7d4b4a60663115c0132deff24d2f1317e60e7b.tar.gz ChibiOS-3f7d4b4a60663115c0132deff24d2f1317e60e7b.tar.bz2 ChibiOS-3f7d4b4a60663115c0132deff24d2f1317e60e7b.zip |
[KINETIS] Fix KL25Z demo warnings
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7162 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | demos/KINETIS/RT-FREEDOM-KL25Z/main.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/demos/KINETIS/RT-FREEDOM-KL25Z/main.c b/demos/KINETIS/RT-FREEDOM-KL25Z/main.c index 8125e198a..a99d1bb9d 100644 --- a/demos/KINETIS/RT-FREEDOM-KL25Z/main.c +++ b/demos/KINETIS/RT-FREEDOM-KL25Z/main.c @@ -27,6 +27,8 @@ static THD_FUNCTION(Thread1, arg) { palTogglePad(IOPORT2, 18);
chThdSleepMilliseconds(300);
}
+
+ return 0;
}
static THD_WORKING_AREA(waThread2, 64);
@@ -38,6 +40,8 @@ static THD_FUNCTION(Thread2, arg) { palTogglePad(IOPORT2, 19);
chThdSleepMilliseconds(600);
}
+
+ return 0;
}
static THD_WORKING_AREA(waThread3, 64);
@@ -49,6 +53,8 @@ static THD_FUNCTION(Thread3, arg) { palTogglePad(IOPORT4, 1);
chThdSleepMilliseconds(900);
}
+
+ return 0;
}
/*
|