Added support for obtaining BLE device name by parsing advertising data.

Fork of BLE_BlueNRG by Mridupawan Das

bsp/inc/debug.h

Committer:
mridup
Date:
2014-07-16
Revision:
0:309c845d289d

File content as of revision 0:309c845d289d:

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

//#define DEBUG

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