2017-04-05 22:09:45 +02:00
|
|
|
/*
|
2017-05-23 10:25:45 +02:00
|
|
|
* Copyright (C) 2016 Freie Universität Berlin
|
|
|
|
* 2016-2017 Inria
|
2017-04-05 22:09:45 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2017-04-10 09:38:37 +02:00
|
|
|
* @ingroup boards_arduino-mkr-common
|
2017-11-30 23:34:55 +01:00
|
|
|
* @{
|
2017-04-05 22:09:45 +02:00
|
|
|
* @file
|
2017-04-10 09:38:37 +02:00
|
|
|
* @brief Board common implementations for the Arduino MKR boards
|
2017-04-05 22:09:45 +02:00
|
|
|
*
|
2017-11-30 23:34:55 +01:00
|
|
|
* @author Hauke Pertersen <hauke.pertersen@fu-berlin.de>
|
2017-04-05 22:09:45 +02:00
|
|
|
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
2017-11-30 23:34:55 +01:00
|
|
|
*
|
2017-04-05 22:09:45 +02:00
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "board.h"
|
|
|
|
#include "periph/gpio.h"
|
|
|
|
|
|
|
|
void board_init(void)
|
|
|
|
{
|
|
|
|
/* initialize the CPU */
|
|
|
|
cpu_init();
|
2017-04-10 09:38:37 +02:00
|
|
|
/* initialize the on-board Amber "L" LED */
|
2017-04-05 22:09:45 +02:00
|
|
|
gpio_init(LED0_PIN, GPIO_OUT);
|
|
|
|
}
|