BLE_BlueNRG for Nucleo board

Dependents:   Nucleo_BLE_HeartRate Nucleo_BLE_UART Nucleo_BLE_UART

Warning: Deprecated!

Supported drivers and applications can be found at this link.

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