Project

General

Profile

Statistics
| Revision:

root / branches / simulator / projects / template / main.c @ 880

History | View | Annotate | Download (120 Bytes)

1
#include <dragonfly_lib.h>
2

    
3
int main(void)
4
{
5
        dragonfly_init(ALL_ON);
6
        bom_leds_on(BOM_ALL);
7
        while(1){}
8
        return 0;
9
}
10

    
11