1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #9016 from gebart/pr/frdm-k22f-cleanup

frdm-k22f: Fix typos and remove unused includes
This commit is contained in:
Alexandre Abadie 2018-04-25 08:37:30 +02:00 committed by GitHub
commit 24cdc8b549
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@
*/
/**
* @ingroup boards_frdm-k64f
* @ingroup boards_frdm-k22f
* @{
*
* @file
@ -20,9 +20,7 @@
* @}
*/
#include <stdint.h>
#include "board.h"
#include "mcg.h"
#include "periph/gpio.h"
void board_init(void)
@ -32,9 +30,9 @@ void board_init(void)
/* initialize and turn off the on-board RGB-LED */
gpio_init(LED0_PIN, GPIO_OUT);
gpio_init(LED1_PIN, GPIO_OUT);
gpio_init(LED2_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);
}