Core Base Classes for the Light Endpoints

Dependencies:   BufferedSerial

Dependents:   mbed_mqtt_endpoint_ublox_ethernet mbed_mqtt_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_ethernet ... more

Revision:
11:f1c9299a3ca1
Parent:
10:62107616fc6c
Child:
12:9af48d60705f
--- a/MapEntry.cpp	Tue Feb 25 07:33:45 2014 +0000
+++ b/MapEntry.cpp	Tue Feb 25 16:33:18 2014 +0000
@@ -20,7 +20,7 @@
  #include "MapEntry.h"
 
  // default constructor 
- MapEntry::MapEntry(char *mbed_name,char *ioc_name) {
+ MapEntry::MapEntry(char *ioc_name,char *mbed_name) {
      memset(this->m_mbed_name,0,MAX_NAME_LENGTH+1);
      memset(this->m_ioc_name,0,MAX_NAME_LENGTH+1);
      strncpy(this->m_mbed_name,mbed_name,this->min(strlen(mbed_name),MAX_NAME_LENGTH));