1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/native/include/board.h

30 lines
683 B
C
Raw Normal View History

/**
* Native Board interface
*
2013-03-13 21:45:28 +01:00
* 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.
*
2013-03-13 21:45:28 +01:00
* @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);
2013-05-14 17:42:08 +02:00
#ifdef MODULE_UART0
#include <sys/select.h>
extern fd_set _native_uart_rfds;
extern void _native_handle_uart0_input(void);
#endif