Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (299 Bytes)

1 789 dsschult
extern int testlcd();
2 791 dsschult
extern int testrangefinders();
3 800 jsexton
extern int testanalog();
4 848 dsschult
extern int testtokenring();
5 958 cmar
extern int testmotors();
6 789 dsschult
7
int main(void) {
8 791 dsschult
  //testlcd();
9 800 jsexton
  //testrangefinders();
10 848 dsschult
  //testanalog();
11 867 justin
  //testtokenring();
12 944 cmar
  //testencoders();
13 958 cmar
  //testlights();
14
  testmotors();
15 789 dsschult
16
        return 0;
17
}
18