BLE example with Environmental Sensing service.

Dependencies:   BSP_B-L475E-IOT01

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers debug.h Source File

debug.h

00001 /* 
00002 * @ debug.h 
00003 * Include this file for debugging purposes.
00004 */
00005 
00006 #ifndef __DEBUG_H__
00007 #define __DEBUG_H__
00008 
00009 #define DEBUG
00010 
00011 #ifdef DEBUG
00012 Serial pc(USBTX, USBRX); 
00013 #endif
00014 
00015 #endif /* #ifndef __DEBUG_H__ */