The WiFi version of the mbed Device Server client using cc3000
Dependencies: cc3000_hostdriver_mbedsocket mbed-rtos mbed nsdl_lib
dbg.h
- Committer:
- michaeljkoster
- Date:
- 2014-10-14
- Revision:
- 1:4476b20857ea
- Parent:
- 0:5b29a04e8c27
File content as of revision 1:4476b20857ea:
#ifndef DEBUG_H
#define DEBUG_H
#include "nsdl_support.h"
#include "mbed.h"
//Debug is disabled by default
#define DEBUG 1
#if (DEBUG)
extern Serial pc;
#define NSDL_DEBUG(x, ...) pc.printf("[NSDL_DEBUG: %s:%d]" x "\r\n", __FILE__, __LINE__, ##__VA_ARGS__);
#else
#define NSDL_DEBUG(x, ...)
#endif
#endif