diff options
Diffstat (limited to 'demos/STM32/RT-STM32F303-DISCOVERY/main.c')
-rw-r--r-- | demos/STM32/RT-STM32F303-DISCOVERY/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/STM32/RT-STM32F303-DISCOVERY/main.c b/demos/STM32/RT-STM32F303-DISCOVERY/main.c index ccd297b42..d88515b29 100644 --- a/demos/STM32/RT-STM32F303-DISCOVERY/main.c +++ b/demos/STM32/RT-STM32F303-DISCOVERY/main.c @@ -26,7 +26,7 @@ THD_FUNCTION(Thread1, arg) { (void)arg;
- chRegSetThreadName("blinker");
+ chRegSetThreadName("blinker 1");
while (true) {
palToggleLine(LINE_LED3_RED);
chThdSleepMilliseconds(100);
@@ -47,7 +47,7 @@ THD_FUNCTION(Thread2, arg) { (void)arg;
- chRegSetThreadName("blinker");
+ chRegSetThreadName("blinker 2");
while (true) {
chThdSleepMilliseconds(50);
palToggleLine(LINE_LED5_ORANGE);
|