Poerting the Xbee library to use teh wifi functionality of the LPC4088.

Dependents:   XBee_WiFi_EA_LPC4088

Fork of XBee by Suga koubou

dbg.h

Committer:
marin8703
Date:
2015-02-10
Revision:
8:042c457e3282
Parent:
3:8573b122fa84

File content as of revision 8:042c457e3282:

#define DEBUG
#include "mbed.h"

#ifdef DEBUG 
#define DBG(...) pc.printf("" __VA_ARGS__) 
#else 
#define DBG(...) 
#endif 

extern Serial pc;