use TCP to connect to mbed connector
Fork of mbedConnectorInterfaceWithDM by
Diff: mbed-connector-interface/Location.h
- Revision:
- 51:91fc5f5880fe
- Parent:
- 33:1d0b855df5a5
--- a/mbed-connector-interface/Location.h Fri Jun 24 02:07:53 2016 +0000 +++ b/mbed-connector-interface/Location.h Fri Jun 24 03:47:10 2016 +0000 @@ -51,7 +51,6 @@ class Location { protected: - RawSerial *m_pc; char m_latitude[LOCATION_COORDINATE_LENGTH+1]; char m_longitude[LOCATION_COORDINATE_LENGTH+1]; char m_msl_altitude_m[LOCATION_MSL_ALT_LENGTH+1]; @@ -60,9 +59,8 @@ public: /** Default constructor - @param pc input BufferedSerial instance for debugging (if NULL, no debugging output will occur in the library) */ - Location(const RawSerial *pc); + Location(); /** Copy constructor @@ -99,12 +97,6 @@ Get latest Speed (km/h) (pure virtual) */ char *getSpeed(); - -protected: - /** - Init buffers - */ - void initBuffers(); }; };