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:
Wed May 20 07:14:22 2015 +0000
Revision:
3:6085916c9d74
Parent:
2:bcd60a69583f
First release V1_0

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