2014-04-17 19:39:36 +02: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:56:39 +01:00
|
|
|
* @ingroup boards_stm32f3discovery
|
2014-04-17 19:39:36 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Board specific implementations for the STM32F4Discovery evaluation board
|
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
*
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "board.h"
|
2016-03-11 18:04:27 +01:00
|
|
|
#include "periph/gpio.h"
|
2014-04-17 19:39:36 +02:00
|
|
|
|
|
|
|
void board_init(void)
|
|
|
|
{
|
2019-10-04 17:05:40 +02:00
|
|
|
/* initialize the CPU */
|
|
|
|
cpu_init();
|
|
|
|
|
2016-03-11 18:04:27 +01:00
|
|
|
/* initialize the boards LEDs */
|
2016-03-17 14:54:05 +01:00
|
|
|
gpio_init(LED0_PIN, GPIO_OUT);
|
|
|
|
gpio_init(LED1_PIN, GPIO_OUT);
|
|
|
|
gpio_init(LED2_PIN, GPIO_OUT);
|
|
|
|
gpio_init(LED3_PIN, GPIO_OUT);
|
2014-04-17 19:39:36 +02:00
|
|
|
}
|