1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/boards/native/include/board.h

38 lines
1003 B
C
Raw Normal View History

#ifndef BOARD_H
#define BOARD_H
/**
* Native Board interface
*
2013-03-13 21:45:28 +01:00
* The native board uses call level hardware simulation.
*
* Copyright (C) 2013 Ludwig Ortmann
*
2013-11-22 20:47:05 +01:00
* This file is 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>
* @}
*/
#include <stdint.h>
void _native_LED_GREEN_OFF(void);
#define LED_GREEN_OFF (_native_LED_GREEN_OFF())
void _native_LED_GREEN_ON(void);
#define LED_GREEN_ON (_native_LED_GREEN_ON())
void _native_LED_GREEN_TOGGLE(void);
#define LED_GREEN_TOGGLE (_native_LED_GREEN_TOGGLE())
void _native_LED_RED_OFF(void);
#define LED_RED_OFF (_native_LED_RED_OFF())
void _native_LED_RED_ON(void);
#define LED_RED_ON (_native_LED_RED_ON())
void _native_LED_RED_TOGGLE(void);
#define LED_RED_TOGGLE (_native_LED_RED_TOGGLE())
2013-10-20 17:54:31 +02:00
typedef uint16_t radio_packet_length_t;
#endif /* BOARD_H */