From 4c10c6432459407e94ed3791d6daacd6fc3d2de3 Mon Sep 17 00:00:00 2001 From: Paul RATHGEB <paul.rathgeb@skynet.be> Date: Sun, 22 Jan 2017 17:18:13 +0100 Subject: [PATCH] boards/weio : fixed a bug with the LED IO def Signed-off-by: Paul RATHGEB <paul.rathgeb@skynet.be> --- boards/weio/include/board.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/boards/weio/include/board.h b/boards/weio/include/board.h index c60da66986..59fd00116a 100644 --- a/boards/weio/include/board.h +++ b/boards/weio/include/board.h @@ -34,9 +34,9 @@ extern "C" { * @brief LED pin definitions and handlers * @{ */ -#define LED0_PIN GPIO_PIN(0, 13) -#define LED1_PIN GPIO_PIN(0, 14) -#define LED2_PIN GPIO_PIN(0, 15) +#define LED0_PIN GPIO_PIN(1, 13) +#define LED1_PIN GPIO_PIN(1, 14) +#define LED2_PIN GPIO_PIN(1, 15) #define LED_PORT LPC_GPIO #define LED0_MASK BIT13 -- GitLab