endpoint C207 radio support

Dependents:   mbed_mqtt_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_cellular

Files at this revision

API Documentation at this revision

Comitter:
ansond
Date:
Fri Sep 26 05:22:50 2014 +0000
Parent:
22:dca1bfab3021
Commit message:
updates for new logger

Changed in this revision

MBEDUbloxCellRadio.cpp Show annotated file Show diff for this revision Revisions of this file
MBEDUbloxCellRadio.h Show annotated file Show diff for this revision Revisions of this file
MBEDUbloxGPS.cpp Show annotated file Show diff for this revision Revisions of this file
MBEDUbloxGPS.h Show annotated file Show diff for this revision Revisions of this file
--- a/MBEDUbloxCellRadio.cpp	Fri Sep 12 21:11:16 2014 +0000
+++ b/MBEDUbloxCellRadio.cpp	Fri Sep 26 05:22:50 2014 +0000
@@ -23,7 +23,7 @@
  #include "MBEDEndpoint.h"
   
  // default constructor
- MBEDUbloxCellRadio::MBEDUbloxCellRadio(ErrorHandler *error_handler,void *endpoint,void *modem) : BaseClass(error_handler,endpoint) {
+ MBEDUbloxCellRadio::MBEDUbloxCellRadio(Logger *error_handler,void *endpoint,void *modem) : BaseClass(error_handler,endpoint) {
  #ifdef NSP_CELLULAR_NETWORK
      this->m_modem = (MDMRtos<MDMSerial> *)modem;
  #else
--- a/MBEDUbloxCellRadio.h	Fri Sep 12 21:11:16 2014 +0000
+++ b/MBEDUbloxCellRadio.h	Fri Sep 26 05:22:50 2014 +0000
@@ -48,7 +48,7 @@
         bool                m_connected;
         
      public:
-        MBEDUbloxCellRadio(ErrorHandler *error_handler,void *endpoint,void *modem);
+        MBEDUbloxCellRadio(Logger *error_handler,void *endpoint,void *modem);
         virtual ~MBEDUbloxCellRadio();
        
        bool connect();
--- a/MBEDUbloxGPS.cpp	Fri Sep 12 21:11:16 2014 +0000
+++ b/MBEDUbloxGPS.cpp	Fri Sep 26 05:22:50 2014 +0000
@@ -38,7 +38,7 @@
  #endif
  
  // default constructor
- MBEDUbloxGPS::MBEDUbloxGPS(ErrorHandler *error_handler, void *endpoint,void *gps) : BaseClass(error_handler,endpoint) {
+ MBEDUbloxGPS::MBEDUbloxGPS(Logger *error_handler, void *endpoint,void *gps) : BaseClass(error_handler,endpoint) {
  #ifdef ENABLE_THREADS
      this->m_gps_poll_thread = NULL;
  #endif
--- a/MBEDUbloxGPS.h	Fri Sep 12 21:11:16 2014 +0000
+++ b/MBEDUbloxGPS.h	Fri Sep 26 05:22:50 2014 +0000
@@ -35,7 +35,7 @@
         float         m_longitude;
         
      public:
-        MBEDUbloxGPS(ErrorHandler *error_handler, void *endpoint,void *gps);
+        MBEDUbloxGPS(Logger *error_handler, void *endpoint,void *gps);
         virtual ~MBEDUbloxGPS();
        
        void  update();