Xbee s2b for lpc11u24

Dependencies:   DigiLogger

Dependents:  

Fork of XBeeLib by Digi International Inc.

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers XBeeLib.h Source File

XBeeLib.h

Go to the documentation of this file.
00001 /**
00002  * Copyright (c) 2015 Digi International Inc.,
00003  * All rights not expressly granted are reserved.
00004  *
00005  * This Source Code Form is subject to the terms of the Mozilla Public
00006  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
00007  * You can obtain one at http://mozilla.org/MPL/2.0/.
00008  *
00009  * Digi International Inc. 11001 Bren Road East, Minnetonka, MN 55343
00010  * =======================================================================
00011  */
00012 
00013 /** @file
00014  */
00015 
00016 #ifndef __XBEE_H_
00017 #define __XBEE_H_
00018 
00019 #define XB_LIBRARY_VERSION          0x01010200U
00020 #define XB_MAJOR_VERSION            ((XB_LIBRARY_VERSION >> 24) & 0xFFU)
00021 #define XB_MINOR_VERSION            ((XB_LIBRARY_VERSION >> 16) & 0xFFU)
00022 #define XB_PATCH_LEVEL              ((XB_LIBRARY_VERSION >> 8) & 0xFFU)
00023 #define XB_BUILD_ID                 (XB_LIBRARY_VERSION & 0xFFU)
00024 
00025 /**/
00026 #define XB_LIB_BANNER               "\r\n\r\n" "mbed Digi International Inc., XBeeLib v%d.%d.%d" "\r\n", \
00027                                         XB_MAJOR_VERSION, XB_MINOR_VERSION, XB_PATCH_LEVEL
00028 
00029 #include "XBeeZB/XBeeZB.h"
00030 #include "IO/IOSampleZB.h"
00031 #include "XBee802/XBee802.h"
00032 #include "IO/IOSample802.h"
00033 #include "XBeeDM/XBeeDM.h"
00034 #include "IO/IOSampleDM.h"
00035 #include "XBee/Addresses.h"
00036 #include "RemoteXBee/RemoteXBee.h"
00037 
00038 #endif /* __XBEE_H_ */