1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 11:52:44 +01:00
RIOT/boards/common/atmega/board.c

33 lines
594 B
C
Raw Normal View History

/*
* Copyright (C) 2018 Kaspar Schleiser <kaspar@schleiser.de>
*
* 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.
*/
/**
2018-06-01 12:09:16 +02:00
* @ingroup boards_common
* @{
*
* @file
* @brief Common implementations for Atmega boards
*
* @author Kaspar Schleiser <kaspar@schleiser.de>
*
* @}
*/
#include "board.h"
#include "cpu.h"
#include "periph/gpio.h"
void led_init(void);
void __attribute__((weak)) board_init(void)
{
2019-02-20 21:29:37 +01:00
#ifdef LED0_ON
led_init();
2019-02-20 21:29:37 +01:00
#endif
}