1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/fox/board.c

36 lines
751 B
C
Raw Normal View History

2014-08-25 13:45:22 +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:37:39 +01:00
* @ingroup boards_fox
2014-08-25 13:45:22 +02:00
* @{
*
* @file
2014-08-25 13:45:22 +02:00
* @brief Board specific implementations for the fox board
*
* @author Thomas Eichinger <thomas.eichinger@fu-berlin.de>
*
* @}
*/
#include "board.h"
2016-03-11 18:03:07 +01:00
#include "periph/gpio.h"
2014-08-25 13:45:22 +02:00
void board_init(void)
{
/* initialize the CPU */
cpu_init();
2016-03-11 18:03:07 +01:00
/* initialize the boards LEDs and turn them off */
gpio_init(LED0_PIN, GPIO_DIR_OUT, GPIO_NOPULL);
gpio_init(LED1_PIN, GPIO_DIR_OUT, GPIO_NOPULL);
gpio_set(LED0_PIN);
gpio_set(LED1_PIN);
2014-08-25 13:45:22 +02:00
}