diff options
Diffstat (limited to 'demos/ARM7-LPC214x-GCC-minimal/main.c')
-rw-r--r-- | demos/ARM7-LPC214x-GCC-minimal/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/ARM7-LPC214x-GCC-minimal/main.c b/demos/ARM7-LPC214x-GCC-minimal/main.c index 87d59dce0..bbbc3ce6c 100644 --- a/demos/ARM7-LPC214x-GCC-minimal/main.c +++ b/demos/ARM7-LPC214x-GCC-minimal/main.c @@ -69,8 +69,8 @@ int main(int argc, char **argv) { /*
* Creates the blinker threads.
*/
- chThdCreate(NORMALPRIO, 0, waThread1, sizeof(waThread1), Thread1, NULL);
- chThdCreate(NORMALPRIO, 0, waThread2, sizeof(waThread2), Thread2, NULL);
+ chThdCreateFast(NORMALPRIO, waThread1, sizeof(waThread1), Thread1);
+ chThdCreateFast(NORMALPRIO, waThread2, sizeof(waThread2), Thread2);
/*
* Normal main() thread activity, in this demo it does nothing except
|