2014-11-04 14:46:16 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
|
|
|
* Public License v2.1. See the file LICENSE in the top level directory for more
|
|
|
|
* details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2015-02-12 13:37:01 +01:00
|
|
|
* @ingroup boards_f4vi1
|
2014-11-04 14:46:16 +01:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Board specific implementations for the f4vi1 board
|
|
|
|
*
|
|
|
|
* @author Stefan Pfeiffer <pfeiffer@inf.fu-berlin.de>
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
*
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "board.h"
|
2016-03-11 18:03:07 +01:00
|
|
|
#include "periph/gpio.h"
|
2014-11-04 14:46:16 +01:00
|
|
|
|
|
|
|
void board_init(void)
|
|
|
|
{
|
2016-03-11 18:03:07 +01:00
|
|
|
/* initialize the boards LEDs */
|
|
|
|
gpio_init(LED0_PIN, GPIO_DIR_OUT, GPIO_NOPULL);
|
|
|
|
gpio_init(LED1_PIN, GPIO_DIR_OUT, GPIO_NOPULL);
|
|
|
|
gpio_init(LED2_PIN, GPIO_DIR_OUT, GPIO_NOPULL);
|
2014-11-04 14:46:16 +01:00
|
|
|
|
|
|
|
/* initialize the CPU */
|
|
|
|
cpu_init();
|
|
|
|
}
|