Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (404 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
7 1364 bneuman
  dragonfly_init(ALL_ON);
8
9 1363 bneuman
  while(1) {
10 789 dsschult
11 1363 bneuman
    RUN_TEST(testanalog);
12
    //    RUN_TEST(testeeprom);
13
    RUN_TEST(testencoders);
14
    //    RUN_TEST(testlcd);
15
    RUN_TEST(testlights);
16
    RUN_TEST(testmotors);
17
    RUN_TEST(testrangefinders);
18
    RUN_TEST(testtokenring);
19
    RUN_TEST(testusb);
20
21
  }
22
23
  return 0;
24
}