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.

22 lines
277 B

/** @file pio1.c
@author M.P. Hayes
@date 25 Aug 2011
*/
#include "system.h"
#include "pio.h"
int main (void)
{
system_init ();
pio_config_set (LED1_PIO, PIO_OUTPUT_HIGH);
while (1)
{
pio_output_toggle (LED1_PIO);
}
return 0;
}