summaryrefslogtreecommitdiffstats
path: root/include/main.h
blob: f73b7e307401ef3b4e4ae0d1077cde23cd62fce7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef MAIN_H_
#define MAIN_H_

#include <API.h>

#ifdef __cplusplus
extern "C" {
#endif

extern Gyro gyro;
extern unsigned int imeCount;

void initializeIO();
void initialize();
void autonomous();
void operatorControl();

#ifdef __cplusplus
}
#endif

#endif // MAIN_H_