Devchannel Team / X_NUCLEO_IDB0XA1

Dependents:   Hello_BLE F446RE-BLE

Fork of X_NUCLEO_IDB0XA1 by ST

Revision:
116:1aa0d2da72e4
Parent:
115:3b47df81a56b
Child:
119:19128d9d254f
--- a/platform/X-NUCLEO-IDB04A1/stm32_bluenrg_ble.cpp	Wed Sep 02 07:50:35 2015 +0200
+++ b/platform/X-NUCLEO-IDB04A1/stm32_bluenrg_ble.cpp	Wed Sep 02 08:59:17 2015 +0200
@@ -52,7 +52,8 @@
 
 #include "stm32_bluenrg_ble.h"
 #include "gp_timer.h"
-#include "debug.h"
+#include "debug_hci.h"
+
 	
 void BlueNRG_RST(void)
 {
@@ -72,8 +73,10 @@
  * @retval None
  */
 void print_csv_time(void){
+#ifdef PRINT_CSV_FORMAT
   uint32_t ms = 0;//ms_counter;
   PRINT_CSV("%02d:%02d:%02d.%03d", ms/(60*60*1000)%24, ms/(60*1000)%60, (ms/1000)%60, ms%1000);
+#endif
 }
 
 /**