aboutsummaryrefslogtreecommitdiffstats
path: root/demos/STM32/RT-STM32F446ZE-NUCLEO144/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/STM32/RT-STM32F446ZE-NUCLEO144/main.c')
-rw-r--r--demos/STM32/RT-STM32F446ZE-NUCLEO144/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/STM32/RT-STM32F446ZE-NUCLEO144/main.c b/demos/STM32/RT-STM32F446ZE-NUCLEO144/main.c
index 8cfc7fc38..bc6222035 100644
--- a/demos/STM32/RT-STM32F446ZE-NUCLEO144/main.c
+++ b/demos/STM32/RT-STM32F446ZE-NUCLEO144/main.c
@@ -1,5 +1,5 @@
/*
- ChibiOS - Copyright (C) 2006..2016 Giovanni Di Sirio
+ ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -34,13 +34,13 @@ static THD_FUNCTION(Thread1, arg) {
palSetLine(LINE_LED2);
chThdSleepMilliseconds(50);
palSetLine(LINE_LED3);
- chThdSleepMilliseconds(200);
+ chThdSleepMilliseconds(150);
palClearLine(LINE_LED1);
chThdSleepMilliseconds(50);
palClearLine(LINE_LED2);
chThdSleepMilliseconds(50);
palClearLine(LINE_LED3);
- chThdSleepMilliseconds(200);
+ chThdSleepMilliseconds(150);
}
}