aboutsummaryrefslogtreecommitdiff
path: root/nuttx/configs/stm32f4discovery
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/stm32f4discovery')
-rw-r--r--nuttx/configs/stm32f4discovery/README.txt2
-rw-r--r--nuttx/configs/stm32f4discovery/src/up_userleds.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/configs/stm32f4discovery/README.txt b/nuttx/configs/stm32f4discovery/README.txt
index e34168224..e9c0e81c2 100644
--- a/nuttx/configs/stm32f4discovery/README.txt
+++ b/nuttx/configs/stm32f4discovery/README.txt
@@ -269,7 +269,7 @@ LEDs
====
The STM32F4Discovery board has four LEDs; green, organge, red and blue on the
-board.. These LEDs are not used by the board port unless CONFIG_ARCH_LEDS is
+board. These LEDs are not used by the board port unless CONFIG_ARCH_LEDS is
defined. In that case, the usage by the board port is defined in
include/board.h and src/up_leds.c. The LEDs are used to encode OS-related
events as follows:
diff --git a/nuttx/configs/stm32f4discovery/src/up_userleds.c b/nuttx/configs/stm32f4discovery/src/up_userleds.c
index 90adb4882..173c12696 100644
--- a/nuttx/configs/stm32f4discovery/src/up_userleds.c
+++ b/nuttx/configs/stm32f4discovery/src/up_userleds.c
@@ -222,10 +222,10 @@ void stm32_setled(int led, bool ledon)
void stm32_setleds(uint8_t ledset)
{
- stm32_gpiowrite(BOARD_LED1, (ledset & BOARD_LED1_BIT) == 0);
- stm32_gpiowrite(BOARD_LED2, (ledset & BOARD_LED2_BIT) == 0);
- stm32_gpiowrite(BOARD_LED3, (ledset & BOARD_LED3_BIT) == 0);
- stm32_gpiowrite(BOARD_LED4, (ledset & BOARD_LED4_BIT) == 0);
+ stm32_gpiowrite(GPIO_LED1, (ledset & BOARD_LED1_BIT) == 0);
+ stm32_gpiowrite(GPIO_LED2, (ledset & BOARD_LED2_BIT) == 0);
+ stm32_gpiowrite(GPIO_LED3, (ledset & BOARD_LED3_BIT) == 0);
+ stm32_gpiowrite(GPIO_LED4, (ledset & BOARD_LED4_BIT) == 0);
}
/****************************************************************************