Raj Patel / Mbed 2 deprecated RoboticMappingControl

Dependencies:   mbed mbed-rtos Motor LSM9DS1_Library_cal X_NUCLEO_53L0A1

Committer:
abh15
Date:
Tue Apr 23 18:13:07 2019 +0000
Revision:
9:552805fac195
Parent:
8:bfa4bf23522c
Child:
17:e1a5d25218de
Fixes to transmit/receive functions in DataDistributor; changed global arrays to int instead of float

Who changed what in which revision?

UserRevisionLine numberNew contents of line
abh15 6:c119cc5d48d6 1 #ifndef GLOBALS_H
abh15 6:c119cc5d48d6 2 #define GLOBALS_H
abh15 6:c119cc5d48d6 3
rpatelpj 8:bfa4bf23522c 4 #include "mbed.h"
rpatelpj 8:bfa4bf23522c 5
abh15 7:00e6ac8fb52f 6 /**
abh15 7:00e6ac8fb52f 7 * Hardware declarations. Initializations will be in main.cpp
abh15 7:00e6ac8fb52f 8 */
abh15 6:c119cc5d48d6 9 extern Serial pc;
rpatelpj 8:bfa4bf23522c 10 extern BusOut led;
abh15 6:c119cc5d48d6 11 extern DigitalIn pb;
abh15 6:c119cc5d48d6 12
rpatelpj 8:bfa4bf23522c 13 /**
rpatelpj 8:bfa4bf23522c 14 * Data declarations. Initializations will be in main.cpp
rpatelpj 8:bfa4bf23522c 15 */
abh15 9:552805fac195 16 extern int* obstacles;
rpatelpj 8:bfa4bf23522c 17 extern int trajectoryLength;
abh15 9:552805fac195 18 extern int* trajectory;
rpatelpj 8:bfa4bf23522c 19
abh15 6:c119cc5d48d6 20 #endif /* GLOBALS_H */