diff options
Diffstat (limited to 'demos/MSP430-MSP430x1611-GCC/main.c')
-rw-r--r-- | demos/MSP430-MSP430x1611-GCC/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/MSP430-MSP430x1611-GCC/main.c b/demos/MSP430-MSP430x1611-GCC/main.c index 07b420b55..72736fc54 100644 --- a/demos/MSP430-MSP430x1611-GCC/main.c +++ b/demos/MSP430-MSP430x1611-GCC/main.c @@ -54,9 +54,9 @@ int main(int argc, char **argv) { chSysInit();
/*
- * Creates the blinker threads.
+ * Creates the blinker thread.
*/
- chThdCreateFast(NORMALPRIO, waThread1, sizeof(waThread1), Thread1);
+ chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
/*
* Normal main() thread activity, in this demo it does nothing except
|