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

52 lines
796 B
C
Raw Normal View History

/**
* Native Board LED implementation
*
2013-03-13 21:45:28 +01:00
* Only prints function calls at the moment.
*
* 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
* @ingroup native_board
* @{
* @file
* @author Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
* @}
*/
#include <stdio.h>
#include "board.h"
void LED_GREEN_OFF(void)
{
printf("LED_GREEN_OFF\n");
}
void LED_GREEN_ON(void)
{
printf("LED_GREEN_ON\n");
}
void LED_GREEN_TOGGLE(void)
{
printf("LED_GREEN_TOGGLE\n");
}
void LED_RED_OFF(void)
{
printf("LED_RED_OFF\n");
}
void LED_RED_ON(void)
{
printf("LED_RED_ON\n");
}
void LED_RED_TOGGLE(void)
{
printf("LED_RED_TOGGLE\n");
}