aboutsummaryrefslogtreecommitdiffstats
path: root/demos/STM32/RT-STM32F100-DISCOVERY
diff options
context:
space:
mode:
Diffstat (limited to 'demos/STM32/RT-STM32F100-DISCOVERY')
-rw-r--r--demos/STM32/RT-STM32F100-DISCOVERY/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/STM32/RT-STM32F100-DISCOVERY/main.c b/demos/STM32/RT-STM32F100-DISCOVERY/main.c
index 1ce8f73ab..f2afcea23 100644
--- a/demos/STM32/RT-STM32F100-DISCOVERY/main.c
+++ b/demos/STM32/RT-STM32F100-DISCOVERY/main.c
@@ -84,7 +84,7 @@ int main(void) {
* sleeping in a loop and check the button state, when the button is
* pressed the test procedure is launched.
*/
- while (TRUE) {
+ while (true) {
if (palReadPad(GPIOA, GPIOA_BUTTON))
TestThread(&SD1);
chThdSleepMilliseconds(500);