aboutsummaryrefslogtreecommitdiffstats
path: root/demos/STM32
diff options
context:
space:
mode:
Diffstat (limited to 'demos/STM32')
-rw-r--r--demos/STM32/NASA-OSAL-STM32F407-DISCOVERY/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/STM32/NASA-OSAL-STM32F407-DISCOVERY/main.c b/demos/STM32/NASA-OSAL-STM32F407-DISCOVERY/main.c
index f2431faee..ba102be73 100644
--- a/demos/STM32/NASA-OSAL-STM32F407-DISCOVERY/main.c
+++ b/demos/STM32/NASA-OSAL-STM32F407-DISCOVERY/main.c
@@ -29,9 +29,9 @@ static void blinker(void) {
OS_TaskRegister();
while (true) {
- palSetPad(GPIOD, GPIOD_LED3); /* Orange. */
+ palSetLine(LINE_LED3); /* Orange. */
OS_TaskDelay(500);
- palClearPad(GPIOD, GPIOD_LED3); /* Orange. */
+ palClearLine(LINE_LED3); /* Orange. */
OS_TaskDelay(500);
}
}