1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 05:53:49 +01:00

initialize LEDs

This commit is contained in:
Ludwig Ortmann 2013-03-06 12:27:25 +01:00
parent 81f2a5bc12
commit 23688ecef3

View File

@ -13,7 +13,11 @@
* @}
*/
#include "board.h"
void board_init()
{
LED_GREEN_OFF();
LED_RED_ON();
puts("RIOT native board initialized.");
}