MBED_DEMOS / Mbed 2 deprecated mbed_nsp_endpoint_ublox_ethernet

Dependencies:   C027 C12832 EthernetInterface StatusReporter LM75B endpoint_core endpoint_nsp mbed-rtos mbed nsp_resources

Committer:
ansond
Date:
Sun Mar 02 21:41:36 2014 +0000
Revision:
35:89b9cf25a893
Child:
142:e95256b893da
updates

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ansond 35:89b9cf25a893 1 /* Copyright C2013 Doug Anson, MIT License
ansond 35:89b9cf25a893 2 *
ansond 35:89b9cf25a893 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
ansond 35:89b9cf25a893 4 * and associated documentation files the "Software", to deal in the Software without restriction,
ansond 35:89b9cf25a893 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
ansond 35:89b9cf25a893 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
ansond 35:89b9cf25a893 7 * furnished to do so, subject to the following conditions:
ansond 35:89b9cf25a893 8 *
ansond 35:89b9cf25a893 9 * The above copyright notice and this permission notice shall be included in all copies or
ansond 35:89b9cf25a893 10 * substantial portions of the Software.
ansond 35:89b9cf25a893 11 *
ansond 35:89b9cf25a893 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
ansond 35:89b9cf25a893 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
ansond 35:89b9cf25a893 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
ansond 35:89b9cf25a893 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
ansond 35:89b9cf25a893 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
ansond 35:89b9cf25a893 17 */
ansond 35:89b9cf25a893 18
ansond 35:89b9cf25a893 19 #include "NSPio.h"
ansond 35:89b9cf25a893 20
ansond 35:89b9cf25a893 21 // default constructor
ansond 35:89b9cf25a893 22 NSPio::NSPio(ErrorHandler *error_handler,Resource *resource) : MBEDio(error_handler,resource) {
ansond 35:89b9cf25a893 23 }
ansond 35:89b9cf25a893 24
ansond 35:89b9cf25a893 25 // destructor
ansond 35:89b9cf25a893 26 NSPio::~NSPio() {
ansond 35:89b9cf25a893 27 }
ansond 35:89b9cf25a893 28
ansond 35:89b9cf25a893 29 // update
ansond 35:89b9cf25a893 30 void NSPio::update() { ; }