2013-03-06 12:19:15 +01:00
|
|
|
/**
|
|
|
|
* Native Board LED implementation
|
|
|
|
*
|
2013-03-13 21:45:28 +01:00
|
|
|
* Only prints function calls at the moment.
|
|
|
|
*
|
2015-09-27 18:58:30 +02:00
|
|
|
* Copyright (C) 2014 Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
|
2013-03-06 12:19:15 +01:00
|
|
|
*
|
2014-07-31 19:45:27 +02:00
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
2013-03-06 12:19:15 +01:00
|
|
|
*
|
2018-06-01 12:09:16 +02:00
|
|
|
* @ingroup boards_native
|
2013-03-06 12:19:15 +01:00
|
|
|
* @{
|
|
|
|
* @file
|
2015-09-27 18:58:30 +02:00
|
|
|
* @author Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
|
2013-03-06 12:19:15 +01:00
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "board.h"
|
|
|
|
|
2013-08-15 23:51:49 +02:00
|
|
|
void _native_LED_GREEN_OFF(void)
|
2013-03-06 12:19:15 +01:00
|
|
|
{
|
|
|
|
printf("LED_GREEN_OFF\n");
|
|
|
|
}
|
|
|
|
|
2013-08-15 23:51:49 +02:00
|
|
|
void _native_LED_GREEN_ON(void)
|
2013-03-06 12:19:15 +01:00
|
|
|
{
|
|
|
|
printf("LED_GREEN_ON\n");
|
|
|
|
}
|
|
|
|
|
2013-08-15 23:51:49 +02:00
|
|
|
void _native_LED_GREEN_TOGGLE(void)
|
2013-03-06 12:19:15 +01:00
|
|
|
{
|
|
|
|
printf("LED_GREEN_TOGGLE\n");
|
|
|
|
}
|
|
|
|
|
2013-08-15 23:51:49 +02:00
|
|
|
void _native_LED_RED_OFF(void)
|
2013-03-06 12:19:15 +01:00
|
|
|
{
|
|
|
|
printf("LED_RED_OFF\n");
|
|
|
|
}
|
|
|
|
|
2013-08-15 23:51:49 +02:00
|
|
|
void _native_LED_RED_ON(void)
|
2013-03-06 12:19:15 +01:00
|
|
|
{
|
|
|
|
printf("LED_RED_ON\n");
|
|
|
|
}
|
|
|
|
|
2013-08-15 23:51:49 +02:00
|
|
|
void _native_LED_RED_TOGGLE(void)
|
2013-03-06 12:19:15 +01:00
|
|
|
{
|
|
|
|
printf("LED_RED_TOGGLE\n");
|
|
|
|
}
|