aboutsummaryrefslogtreecommitdiffstats
path: root/demos/STM32/RT-STM32L031K6-NUCLEO32
diff options
context:
space:
mode:
authorRocco Marco Guglielmi <roccomarco.guglielmi@live.com>2016-05-05 00:55:57 +0000
committerRocco Marco Guglielmi <roccomarco.guglielmi@live.com>2016-05-05 00:55:57 +0000
commita21ea7128bf738c458449ac51361fbb45834f447 (patch)
tree3f51634edbbf0622814825308dba4054409c3baa /demos/STM32/RT-STM32L031K6-NUCLEO32
parent59aa6038ef358b38f8e28eb5e1c3b8ca208c1521 (diff)
downloadChibiOS-a21ea7128bf738c458449ac51361fbb45834f447.tar.gz
ChibiOS-a21ea7128bf738c458449ac51361fbb45834f447.tar.bz2
ChibiOS-a21ea7128bf738c458449ac51361fbb45834f447.zip
Completed STM32L0xx port adding STM32L011xx support,
Added STM32 Nucleo32-L011K4 board files Added demo NIL-STM32L011K4-NUCLEO32 git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9414 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/STM32/RT-STM32L031K6-NUCLEO32')
-rw-r--r--demos/STM32/RT-STM32L031K6-NUCLEO32/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/STM32/RT-STM32L031K6-NUCLEO32/main.c b/demos/STM32/RT-STM32L031K6-NUCLEO32/main.c
index e8272659a..da36cadbd 100644
--- a/demos/STM32/RT-STM32L031K6-NUCLEO32/main.c
+++ b/demos/STM32/RT-STM32L031K6-NUCLEO32/main.c
@@ -26,7 +26,7 @@ static THD_FUNCTION(Thread1, arg) {
(void)arg;
chRegSetThreadName("blinker");
- palSetLineMode(LINE_LED_GREEN, PAL_MODE_OUTPUT_PUSHPULL);
+
while (true) {
palClearLine(LINE_LED_GREEN);
chThdSleepMilliseconds(500);