aboutsummaryrefslogtreecommitdiffstats
path: root/demos/STM8S-STM8S208-RC
diff options
context:
space:
mode:
Diffstat (limited to 'demos/STM8S-STM8S208-RC')
-rw-r--r--demos/STM8S-STM8S208-RC/main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/demos/STM8S-STM8S208-RC/main.c b/demos/STM8S-STM8S208-RC/main.c
index 89a9f78cd..cf507eda4 100644
--- a/demos/STM8S-STM8S208-RC/main.c
+++ b/demos/STM8S-STM8S208-RC/main.c
@@ -29,6 +29,7 @@ static WORKING_AREA(waThread1, 64);
static msg_t Thread1(void *arg) {
(void)arg;
+ chRegSetThreadName("blinker");
while (TRUE) {
palClearPad(IOPORT2, PB_LED(7));
chThdSleepMilliseconds(500);