You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <avr/io.h>
|
|
#include "led.h"
|
|
|
|
|
|
/** Turn LED1 on. */
|
|
void led_on (void)
|
|
{
|
|
/* TODO! */
|
|
}
|
|
|
|
|
|
/** Turn LED1 off. */
|
|
void led_off (void)
|
|
{
|
|
/* TODO! */
|
|
}
|
|
|
|
|
|
/** Initialise LED1. */
|
|
void led_init (void)
|
|
{
|
|
/* TODO! */
|
|
}
|