BLE UART example

Fork of Nucleo_BLE_BlueNRG by ST Americas mbed Team

Revision:
0:a948f5f3904c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/platform/inc/debug.h	Fri Dec 19 18:56:07 2014 +0000
@@ -0,0 +1,14 @@
+/******************************************************************************
+ * Includes
+ *****************************************************************************/
+#include <string.h>
+
+//#define DEBUG
+
+#ifdef DEBUG
+#include <stdio.h>
+#define PRINTF(...) printf(__VA_ARGS__)
+#else
+#define PRINTF(...)
+#endif
+