diff options
Diffstat (limited to 'include/main.h')
-rw-r--r-- | include/main.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/main.h b/include/main.h index f73b7e3..9b87513 100644 --- a/include/main.h +++ b/include/main.h @@ -3,16 +3,17 @@ #include <API.h>
+#define LCD_PORT uart2
+
+#define ANALOG_PORT(x) (x+13)
+
#ifdef __cplusplus
extern "C" {
#endif
-extern Gyro gyro;
-extern unsigned int imeCount;
-
+void autonomous();
void initializeIO();
void initialize();
-void autonomous();
void operatorControl();
#ifdef __cplusplus
|