1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/native/board_init.c
2013-03-13 21:45:28 +01:00

28 lines
573 B
C

/**
* Native Board board_init implementation
*
* Copyright (C) 2013 Ludwig Ortmann
*
* This file subject to the terms and conditions of the GNU General Public
* License. See the file LICENSE in the top level directory for more details.
*
* @ingroup native_board
* @{
* @file
* @author Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
* @}
*/
#include "board.h"
/**
* Nothing to initialize at the moment.
* Turns the red LED on and the green LED off.
*/
void board_init()
{
LED_GREEN_OFF();
LED_RED_ON();
puts("RIOT native board initialized.");
}