BLE lib

Fork of Nucleo_BLE_BlueNRG by STM32 eKairn

platform/inc/debug.h

Committer:
vijaynvr
Date:
2015-02-08
Revision:
5:beb2c7544ce4
Parent:
0:a948f5f3904c

File content as of revision 5:beb2c7544ce4:

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

//#define DEBUG

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