asdf

Dependencies:   L3GD20 LSM303DLHC mbed

Committer:
goy5022
Date:
Sat Mar 29 13:25:23 2014 +0000
Revision:
1:cfe6a6ad8dca
Parent:
0:c2ec30f28676
Child:
2:997f57aee3b7
derp_1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
goy5022 0:c2ec30f28676 1 #ifndef CORE_H
goy5022 0:c2ec30f28676 2 #define CORE_H
goy5022 0:c2ec30f28676 3
goy5022 0:c2ec30f28676 4 //INCLUDE LIBRARIES
goy5022 0:c2ec30f28676 5 #include "mbed.h"
goy5022 0:c2ec30f28676 6
goy5022 0:c2ec30f28676 7 //DEFINE GLOBAL VARIABLES ---- scope: Core.h
goy5022 0:c2ec30f28676 8
goy5022 0:c2ec30f28676 9 float ax, ay, az;
goy5022 0:c2ec30f28676 10 float mx, my, mz;
goy5022 0:c2ec30f28676 11 float gx, gy, gz;
goy5022 0:c2ec30f28676 12
goy5022 1:cfe6a6ad8dca 13
goy5022 1:cfe6a6ad8dca 14
goy5022 1:cfe6a6ad8dca 15
goy5022 0:c2ec30f28676 16 // LOAD MODULES
goy5022 0:c2ec30f28676 17
goy5022 0:c2ec30f28676 18 #include "Communication.h"
goy5022 0:c2ec30f28676 19 #include "MotorControl.h"
goy5022 0:c2ec30f28676 20 #include "Motors.h"
goy5022 0:c2ec30f28676 21 #include "Sensors.h"
goy5022 0:c2ec30f28676 22 #include "Mapping.h"
goy5022 0:c2ec30f28676 23 #include "PID.h"
goy5022 0:c2ec30f28676 24 #include "IMUFilter.h"
goy5022 0:c2ec30f28676 25
goy5022 0:c2ec30f28676 26 #endif