2019-03-12 14:01:06 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 ML!PA Consulting GmbH
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup boards_same54-xpro
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Board specific implementations for the Microchip SAM E54 Xplained
|
|
|
|
* Pro board
|
|
|
|
*
|
|
|
|
* @author Benjamin Valentin <benjamin.valentin@ml-pa.com>
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "board.h"
|
|
|
|
#include "periph/gpio.h"
|
|
|
|
|
|
|
|
void board_init(void)
|
|
|
|
{
|
|
|
|
/* initialize the on-board LED */
|
|
|
|
gpio_init(LED0_PIN, GPIO_OUT);
|
2020-02-24 19:39:00 +01:00
|
|
|
LED0_OFF;
|
2019-03-12 14:01:06 +01:00
|
|
|
|
|
|
|
/* initialize the on-board button */
|
|
|
|
gpio_init(BTN0_PIN, BTN0_MODE);
|
|
|
|
|
|
|
|
/* initialize the CPU */
|
|
|
|
cpu_init();
|
|
|
|
}
|