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
Oliver Hahm c31648e2e4 moved native board drivers into separate directory
split up drivers to avoid building unnecessary files
2013-06-12 16:23:34 +02:00

52 lines
796 B
C

/**
* Native Board LED implementation
*
* 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.
*
* @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");
}