diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-04-10 10:33:50 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-04-10 10:33:50 +0000 |
commit | 1f0dc7661300dfb5b2b79094c5dfdce256b1556d (patch) | |
tree | 41eedee9a04564f3fbafb93779218457b5b35a39 /demos | |
parent | a8e42d985d55c416776a77051d633d4c05c783fa (diff) | |
download | ChibiOS-1f0dc7661300dfb5b2b79094c5dfdce256b1556d.tar.gz ChibiOS-1f0dc7661300dfb5b2b79094c5dfdce256b1556d.tar.bz2 ChibiOS-1f0dc7661300dfb5b2b79094c5dfdce256b1556d.zip |
CMSIS RTOS interface improvements.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7878 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos')
-rw-r--r-- | demos/STM32/CMSIS-STM32F407-DISCOVERY/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/STM32/CMSIS-STM32F407-DISCOVERY/main.c b/demos/STM32/CMSIS-STM32F407-DISCOVERY/main.c index fbb365c80..ccc1f600e 100644 --- a/demos/STM32/CMSIS-STM32F407-DISCOVERY/main.c +++ b/demos/STM32/CMSIS-STM32F407-DISCOVERY/main.c @@ -36,7 +36,7 @@ static void Thread1(void const *arg) { /*
* Thread definition block.
*/
-osThreadDef(Thread1, osPriorityAboveNormal, 1, 128);
+osThreadDef(Thread1, osPriorityAboveNormal, 128);
/*
* Application entry point.
|