Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / test / main.c @ 1437

History | View | Annotate | Download (491 Bytes)

1 1364 bneuman
#include <dragonfly_lib.h>
2 789 dsschult
3 1363 bneuman
#define RUN_TEST(f) extern int f(void); f();
4
5 789 dsschult
int main(void) {
6 1364 bneuman
  dragonfly_init(ALL_ON);
7
8 1382 alevkoy
  while (1) {
9
    // RUN_TEST(testusb);
10
    // RUN_TEST(testanalog);
11
    // RUN_TEST(testeeprom);
12
    // RUN_TEST(testencoders);
13
    // RUN_TEST(testlcd);
14
    // RUN_TEST(testlights);
15
    // RUN_TEST(testmotors);
16 1425 cmar
    // RUN_TEST(testrangefinder);
17 1382 alevkoy
    // RUN_TEST(testtokenring);
18 1432 dsschult
    // RUN_TEST(testwireless);
19
    RUN_TEST(testxbee);
20 1437 dsschult
    delay_ms(1000);
21 1363 bneuman
  }
22
23
  return 0;
24
}