Skip to content
Snippets Groups Projects
Commit e2b5468b authored by Johann F's avatar Johann F
Browse files

boards/pba-d-01-kw2x/board.c: fix leds default state


Signed-off-by: default avatarJohann F <j.fischer@phytec.de>
parent 77cf00bd
No related branches found
No related tags found
No related merge requests found
......@@ -27,8 +27,11 @@ void board_init(void)
{
/* initialize the on-board LEDs */
gpio_init(LED0_PIN, GPIO_OUT);
gpio_set(LED0_PIN);
gpio_init(LED1_PIN, GPIO_OUT);
gpio_set(LED1_PIN);
gpio_init(LED2_PIN, GPIO_OUT);
gpio_set(LED2_PIN);
/* initialize the CPU core */
cpu_init();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment