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.

24 lines
233 B

#include "pio.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! */
}