K64F based data logger for GPS (ublox MAX M8Q) & 6 Axis Sensor (FXOS8700Q) - Outputs to SD + UDP - Uses FRDM K64F + ublox "Cellular and positioning shield" (3G version)

Dependencies:   MAX_M8Q_Capture EthernetInterface FXOS8700Q SDFileSystem eCompass_FPU_Lib mbed-rtos mbed

Committer:
rlinnmoran
Date:
Thu Apr 02 20:09:44 2015 +0000
Revision:
2:bcd60a69583f
Add/Updated; - SD Card logging; - UDP logging; - Status LED; - Error handling; ; To do:; - Recover from error; - Documentation

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rlinnmoran 2:bcd60a69583f 1 #ifndef DEBUG_H_
rlinnmoran 2:bcd60a69583f 2 #define DEBUG_H_
rlinnmoran 2:bcd60a69583f 3
rlinnmoran 2:bcd60a69583f 4 #define DEBUG
rlinnmoran 2:bcd60a69583f 5
rlinnmoran 2:bcd60a69583f 6 #ifdef DEBUG
rlinnmoran 2:bcd60a69583f 7 # define D(x) x
rlinnmoran 2:bcd60a69583f 8 #else
rlinnmoran 2:bcd60a69583f 9 # define D(x)
rlinnmoran 2:bcd60a69583f 10 #endif
rlinnmoran 2:bcd60a69583f 11
rlinnmoran 2:bcd60a69583f 12
rlinnmoran 2:bcd60a69583f 13 #endif