1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/native/include/board.h
2013-03-13 21:45:28 +01:00

25 lines
553 B
C

/**
* Native Board interface
*
* The native board uses call level hardware simulation.
*
* 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.
*
* @defgroup native_board
* @{
* @file
* @author Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
* @}
*/
void LED_GREEN_OFF(void);
void LED_GREEN_ON(void);
void LED_GREEN_TOGGLE(void);
void LED_RED_OFF(void);
void LED_RED_ON(void);
void LED_RED_TOGGLE(void);