Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (414 Bytes)

1
#include <dragonfly_lib.h>
2

    
3
#define RUN_TEST(f) extern int f(void); f();
4

    
5
int main(void) {
6
  dragonfly_init(ALL_ON);
7

    
8
  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
    RUN_TEST(test_rangefinder);
17
    // RUN_TEST(testtokenring);
18
  }
19

    
20
  return 0;
21
}