BLE UART example

Fork of Nucleo_BLE_BlueNRG by ST Americas mbed Team

platform/inc/debug.h

Committer:
sjallouli
Date:
2014-12-19
Revision:
0:a948f5f3904c

File content as of revision 0:a948f5f3904c:

/******************************************************************************
 * Includes
 *****************************************************************************/
#include <string.h>

//#define DEBUG

#ifdef DEBUG
#include <stdio.h>
#define PRINTF(...) printf(__VA_ARGS__)
#else
#define PRINTF(...)
#endif