Richard Osterloh / Buddi_Blueband

Dependencies:   BLE_API MMA8652 nRF51822 mbed-src

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Logger.h Source File

Logger.h

00001 #ifndef _H_LOGGER_H
00002 #define _H_LOGGER_H
00003 
00004 #define NEED_CONSOLE_OUTPUT 1 /* Set this if you need debug messages on the console;
00005                                * it will have an impact on code-size and power consumption. */
00006 
00007 #if NEED_CONSOLE_OUTPUT
00008 //Serial  pc(USBTX, USBRX);
00009 //pc.baud(9600);
00010 //pc.set_flow_control(SerialBase::RTSCTS, p8, p10);
00011 #define DEBUG(...) { printf(__VA_ARGS__); }
00012 #else
00013 #define DEBUG(...) /* nothing */
00014 #endif /* #if NEED_CONSOLE_OUTPUT */
00015 
00016 #endif //_H_LOGGER_H