Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / template / main.c @ 951

History | View | Annotate | Download (249 Bytes)

1
#include <dragonfly_lib.h>
2

    
3
int main(void)
4
{
5
        dragonfly_init(ALL_ON);
6
    double d0 = 0x889a3f23;
7
    char buf[100];
8
    sprintf(buf, "int:%d, float:%d, double:%d\n", sizeof(int), sizeof(float), sizeof(double));
9
    usb_puts(buf);
10
    return 1;
11
}
12

    
13