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.
|
/** @file demo2.c
|
|
@author M.P. Hayes
|
|
@date 25 Aug 2011
|
|
*/
|
|
|
|
#include "system.h"
|
|
#include "led.h"
|
|
|
|
int main (void)
|
|
{
|
|
bool state = 0;
|
|
|
|
system_init ();
|
|
|
|
led_init ();
|
|
|
|
while (1)
|
|
{
|
|
led_set (LED1, state);
|
|
state = !state;
|
|
}
|
|
|
|
return 0;
|
|
}
|