Version one of final code

Dependencies:   ARCH_GPRS_V2_HW Blinker GPRSInterface HTTPClient_GPRS SDFileSystem USBDevice mbed

Committer:
mbotkinl
Date:
Thu Apr 16 19:46:40 2015 +0000
Revision:
0:a2a4d0d432b3
Code from Micah and Z

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbotkinl 0:a2a4d0d432b3 1 #ifndef __I2C_UART_H__
mbotkinl 0:a2a4d0d432b3 2 #define __I2C_UART_H__
mbotkinl 0:a2a4d0d432b3 3
mbotkinl 0:a2a4d0d432b3 4 #define __Debug 1
mbotkinl 0:a2a4d0d432b3 5
mbotkinl 0:a2a4d0d432b3 6 #if __Debug
mbotkinl 0:a2a4d0d432b3 7 #define DBG(X) debug_i2c(X)
mbotkinl 0:a2a4d0d432b3 8 #else
mbotkinl 0:a2a4d0d432b3 9 #define DBG(X)
mbotkinl 0:a2a4d0d432b3 10 #endif
mbotkinl 0:a2a4d0d432b3 11
mbotkinl 0:a2a4d0d432b3 12
mbotkinl 0:a2a4d0d432b3 13 void debug_i2c(char *dta);
mbotkinl 0:a2a4d0d432b3 14
mbotkinl 0:a2a4d0d432b3 15
mbotkinl 0:a2a4d0d432b3 16 void debug_i2c(char dta);
mbotkinl 0:a2a4d0d432b3 17 #endif