needs more commenting, log file errors, LED feedback

Dependencies:   ARCH_GPRS_V2_HW Blinker GPRSInterface HTTPClient_GPRS RTC_WorkingLibrary SDFileSystem USBDevice mbed

Fork of finalv2 by Cellular building monitoring

Committer:
mbotkinl
Date:
Fri May 08 14:57:00 2015 +0000
Revision:
5:96d91bbd6c14
Parent:
0:77d82c39b97c
Final working version

Who changed what in which revision?

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