mbed Connector Interface simplification API on top of mbed-client
Fork of mbedConnectorInterfaceV3 by
NOTE:
This repo has been replaced with https://github.com/ARMmbed/mbedConnectorInterface. No further updates will occur with this repo. Please use the github repo instead. Thanks!
Diff: source/Location.cpp
- Revision:
- 33:1d0b855df5a5
- Parent:
- 0:1f1f55e73248
- Child:
- 51:91fc5f5880fe
diff -r 331361178413 -r 1d0b855df5a5 source/Location.cpp --- a/source/Location.cpp Tue Jun 14 19:04:08 2016 +0000 +++ b/source/Location.cpp Tue Jun 14 19:29:30 2016 +0000 @@ -1,75 +1,76 @@ -/** - * @file Location.cpp - * @brief mbed CoAP Endpoint Location base class - * @author Doug Anson/Chris Paola - * @version 1.0 - * @see - * - * Copyright (c) 2014 - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include "mbed-connector-interface/Location.h" - -namespace Connector { - -// Constructor -Location::Location(const RawSerial *pc) { - this->m_pc = (RawSerial *)pc; - this->initBuffers(); -} - -// Copy Constructor -Location::Location(const Location &location) { - this->m_pc = location.m_pc; - memcpy(this->m_latitude,location.m_latitude,LOCATION_COORDINATE_LENGTH+1); - memcpy(this->m_longitude,location.m_longitude,LOCATION_COORDINATE_LENGTH+1); - memcpy(this->m_msl_altitude_m,location.m_msl_altitude_m,LOCATION_MSL_ALT_LENGTH+1); - memcpy(this->m_speed,location.m_speed,LOCATION_SPEED_LENGTH+1); -} - -// Destructor -Location::~Location() { -} - -// init the buffers -void Location::initBuffers() { - memset(this->m_latitude,0,LOCATION_COORDINATE_LENGTH+1); - memset(this->m_longitude,0,LOCATION_COORDINATE_LENGTH+1); - memset(this->m_msl_altitude_m,0,LOCATION_MSL_ALT_LENGTH+1); - memset(this->m_speed,0,LOCATION_SPEED_LENGTH+1); -} - -// get the latitude -char *Location::getLatitude() { - return this->m_latitude; -} - -// get the longitude -char *Location::getLongitude() { - return this->m_longitude; -} - -// get the MSL Altitude -char *Location::getMSLAltitude() { - return this->m_msl_altitude_m; -} - -// get the Speed -char *Location::getSpeed() { - return this->m_speed; -} - -}; +/** + * @file Location.cpp + * @brief mbed CoAP Endpoint Location base class + * @author Doug Anson/Chris Paola + * @version 1.0 + * @see + * + * Copyright (c) 2014 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// Class support +#include "mbed-connector-interface/Location.h" + +namespace Connector { + +// Constructor +Location::Location(const RawSerial *pc) { + this->m_pc = (RawSerial *)pc; + this->initBuffers(); +} +// Copy Constructor +Location::Location(const Location &location) { + this->m_pc = location.m_pc; + memcpy(this->m_latitude,location.m_latitude,LOCATION_COORDINATE_LENGTH+1); + memcpy(this->m_longitude,location.m_longitude,LOCATION_COORDINATE_LENGTH+1); + memcpy(this->m_msl_altitude_m,location.m_msl_altitude_m,LOCATION_MSL_ALT_LENGTH+1); + memcpy(this->m_speed,location.m_speed,LOCATION_SPEED_LENGTH+1); +} + +// Destructor +Location::~Location() { +} + +// init the buffers +void Location::initBuffers() { + memset(this->m_latitude,0,LOCATION_COORDINATE_LENGTH+1); + memset(this->m_longitude,0,LOCATION_COORDINATE_LENGTH+1); + memset(this->m_msl_altitude_m,0,LOCATION_MSL_ALT_LENGTH+1); + memset(this->m_speed,0,LOCATION_SPEED_LENGTH+1); +} + +// get the latitude +char *Location::getLatitude() { + return this->m_latitude; +} + +// get the longitude +char *Location::getLongitude() { + return this->m_longitude; +} + +// get the MSL Altitude +char *Location::getMSLAltitude() { + return this->m_msl_altitude_m; +} + +// get the Speed +char *Location::getSpeed() { + return this->m_speed; +} + +}; +