summaryrefslogtreecommitdiffstats
path: root/include/main.h
blob: ebe72a65a14ed08cceb46ff1f42c494f2db653e8 (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 uart1

#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_