summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm32_tiny/src/up_leds.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/stm32_tiny/src/up_leds.c')
-rw-r--r--nuttx/configs/stm32_tiny/src/up_leds.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/nuttx/configs/stm32_tiny/src/up_leds.c b/nuttx/configs/stm32_tiny/src/up_leds.c
index f5ee45358..e476fabc8 100644
--- a/nuttx/configs/stm32_tiny/src/up_leds.c
+++ b/nuttx/configs/stm32_tiny/src/up_leds.c
@@ -86,23 +86,23 @@ static inline void set_led(bool v)
****************************************************************************/
/****************************************************************************
- * Name: up_ledinit
+ * Name: board_led_initialize
****************************************************************************/
#ifdef CONFIG_ARCH_LEDS
-void up_ledinit(void)
+void board_led_initialize(void)
{
/* Configure LED GPIO for output */
stm32_configgpio(GPIO_LED);
}
/****************************************************************************
- * Name: up_ledon
+ * Name: board_led_on
****************************************************************************/
-void up_ledon(int led)
+void board_led_on(int led)
{
- ledvdbg("up_ledon(%d)\n",led);
+ ledvdbg("board_led_on(%d)\n",led);
switch (led)
{
case LED_STARTED:
@@ -118,10 +118,10 @@ void up_ledon(int led)
}
/****************************************************************************
- * Name: up_ledoff
+ * Name: board_led_off
****************************************************************************/
-void up_ledoff(int led)
+void board_led_off(int led)
{
switch (led)
{