2014-10-22 15:49:49 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2016-01-21 22:47:57 +01:00
|
|
|
* @ingroup boards_openmote-cc2538
|
2014-10-22 15:49:49 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
2016-01-21 22:47:57 +01:00
|
|
|
* @brief Board specific implementations for the OpenMote-cc2538 board
|
2014-10-22 15:49:49 +02:00
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
*
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "board.h"
|
2016-03-11 18:04:26 +01:00
|
|
|
#include "periph/gpio.h"
|
2014-10-22 15:49:49 +02:00
|
|
|
|
|
|
|
void board_init(void)
|
|
|
|
{
|
|
|
|
/* 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);
|
2016-03-11 18:04:26 +01:00
|
|
|
|
2014-10-22 15:49:49 +02:00
|
|
|
/* initialize the CPU */
|
|
|
|
cpu_init();
|
|
|
|
}
|