Erick / Mbed 2 deprecated ICE_BLE_TEST

Dependencies:   NaturalTinyShell_ice libmDot-12Sept mbed-rtos mbed

Fork of ICE by Erick

Revision:
134:f90154ff33ec
Parent:
83:0f76cfbb4eba
Child:
148:ee3cbaafe355
--- a/src/ModbusMaster/ModbusMasterApi.cpp	Tue Sep 27 12:18:47 2016 +0000
+++ b/src/ModbusMaster/ModbusMasterApi.cpp	Tue Sep 27 15:36:37 2016 +0000
@@ -3,7 +3,6 @@
 
 bool ModbusMasterReadRegister( const std::string &io_tag, ModbusValue *value )
 {
-    logInfo("%s:%d ", __func__, __LINE__);
     value->value = ModbusRegisterMap[io_tag].float_value;
     value->valid = true;
     return true;
@@ -11,7 +10,6 @@
 
 bool ModbusMasterWriteRegister( const std::string &io_tag, float value )
 {
-    logInfo("%s:%d ", __func__, __LINE__);
     ModbusRegisterMap[io_tag].float_value = value;
     return true;
 }