aboutsummaryrefslogtreecommitdiffstats
path: root/demos/STM32
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2016-04-17 14:47:52 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2016-04-17 14:47:52 +0000
commitf7ef558614b90137f78dd1ddfeb0638bdd04dd32 (patch)
treeeb7b305a0658d5d56d71ac69a1e242f78ab9aa29 /demos/STM32
parent30f7b5e8681da7b2ea8fb03209b7cb6cdad24f4b (diff)
downloadChibiOS-f7ef558614b90137f78dd1ddfeb0638bdd04dd32.tar.gz
ChibiOS-f7ef558614b90137f78dd1ddfeb0638bdd04dd32.tar.bz2
ChibiOS-f7ef558614b90137f78dd1ddfeb0638bdd04dd32.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9309 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/STM32')
-rw-r--r--demos/STM32/RT-STM32F303-DISCOVERY/main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/demos/STM32/RT-STM32F303-DISCOVERY/main.c b/demos/STM32/RT-STM32F303-DISCOVERY/main.c
index 1f91e6e63..591f653f9 100644
--- a/demos/STM32/RT-STM32F303-DISCOVERY/main.c
+++ b/demos/STM32/RT-STM32F303-DISCOVERY/main.c
@@ -21,8 +21,8 @@
/*
* Blinker thread #1.
*/
-static THD_WORKING_AREA(waThread1, 128);
-static THD_FUNCTION(Thread1, arg) {
+THD_WORKING_AREA(waThread1, 128);
+THD_FUNCTION(Thread1, arg) {
(void)arg;
@@ -50,8 +50,8 @@ static THD_FUNCTION(Thread1, arg) {
/*
* Blinker thread #2.
*/
-static THD_WORKING_AREA(waThread2, 128);
-static THD_FUNCTION(Thread2, arg) {
+THD_WORKING_AREA(waThread2, 128);
+THD_FUNCTION(Thread2, arg) {
(void)arg;