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

#include <API.h>

#define LCD_PORT uart2

#define ANALOG_PORT(x) (x+13)

#ifdef __cplusplus
extern "C" {
#endif

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

#ifdef __cplusplus
}
#endif

#endif // MAIN_H_