Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: BLE_API MMA8652 nRF51822 mbed-src
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
Generated on Tue Jul 12 2022 15:39:00 by
1.7.2