/* * Copyright (C) 2014 Freie Universität Berlin, Hinnerk van Bruinehsen * 2015-18 Kaspar Schleiser * 2016 Laurent Navet * 2018 Matthew Blue * * 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_mega-xplained * @{ * * @file * @brief Board specific implementation for the Mega Xplained * * @author Hinnerk van Bruinehsen * @author Kaspar Schleiser * @author Laurent Navet * @author Matthew Blue * * @} */ #include "board.h" void led_init(void) { /* LED0,2 currently unsupported due to lack of GPIO_OD support */ LED1_ENABLE_PORT; LED1_OFF; LED3_ENABLE_PORT; LED3_OFF; }