Digi XBeeLib fixed for NonCopyable issue

Dependents:   XBeeZB_Receive_Data

Fork of XBeeLib by Digi International Inc.

This lib fixes NonCopyable<T> issues of Digi XBeeLib. Also, lib has been reworked in order to make it RTOS-aware, overcoming several others issues due to stdio Mutex operations.

Committer:
Lorenzo Maiorfi
Date:
Sun Apr 08 08:01:55 2018 +0200
Revision:
13:09e0b4f5a9e1
Parent:
4:629712865107
Disabled reset procedure in XBee::init() method in order to overcome some "nasty" effects on S2C modules.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
spastor 0:fcaad0dfa051 1 /**
spastor 0:fcaad0dfa051 2 * Copyright (c) 2015 Digi International Inc.,
spastor 0:fcaad0dfa051 3 * All rights not expressly granted are reserved.
spastor 0:fcaad0dfa051 4 *
spastor 0:fcaad0dfa051 5 * This Source Code Form is subject to the terms of the Mozilla Public
spastor 0:fcaad0dfa051 6 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
spastor 0:fcaad0dfa051 7 * You can obtain one at http://mozilla.org/MPL/2.0/.
spastor 0:fcaad0dfa051 8 *
spastor 0:fcaad0dfa051 9 * Digi International Inc. 11001 Bren Road East, Minnetonka, MN 55343
spastor 0:fcaad0dfa051 10 * =======================================================================
spastor 0:fcaad0dfa051 11 */
spastor 0:fcaad0dfa051 12
spastor 0:fcaad0dfa051 13 #include "FrameHandler.h"
spastor 0:fcaad0dfa051 14
spastor 0:fcaad0dfa051 15 FrameHandler::FrameHandler(ApiFrame::ApiFrameType t) : _type(t)
spastor 0:fcaad0dfa051 16 {
spastor 0:fcaad0dfa051 17 }
spastor 0:fcaad0dfa051 18
spastor 0:fcaad0dfa051 19 FrameHandler::~FrameHandler()
spastor 0:fcaad0dfa051 20 {
spastor 0:fcaad0dfa051 21 }
spastor 4:629712865107 22
spastor 0:fcaad0dfa051 23 ApiFrame::ApiFrameType FrameHandler::get_type() const
spastor 0:fcaad0dfa051 24 {
spastor 4:629712865107 25 return _type;
spastor 0:fcaad0dfa051 26 }