API for communicating with XBee devices.

Dependencies:   CircularBuffer FixedLengthList

Dependents:   XBeeApiTest XBeeApiSimpleATCmdsExample XBeeApiBroadcastExample XBeeApiBroadcastExampleRTOS ... more

Overview

XBeeApi is intended to be a library for providing a high-level API interface to the XBee - for example getChannel() and setChannel(2) methods rather than needing to send( "ATCH" ) and send( "ATCH 2" ) - and then de-code the responses.

See the notebook page here for a description of how the API works & some details on the various classes.

Features:

  • Support for transmission & reception of data packets
  • Support for reading & changing settings
  • Support for "Remote AT" interface to access settings & I/O channels on remote XBees
  • XBeeApi should work if you're using mbed-rtos, though it is not currently threadsafe. Take a look at the XBeeApiBroadcastExampleRTOS example if you're including mbed-rtos.

Example Programs

There are also example programs available:

Transmit

Import programXBeeApiSimpleBroadcastExample

Simple example of how to use XBeeApi - set up the XBee, configure P2P networking then transmit a frame.

Import programXBeeApiBroadcastExample

Example for XBeeAPI; a little more involved than XBeeApiSimpleBroadcastExample with report on failure to set up the XBee and on the transmit status of the message.

Import programXBeeApiBroadcastExampleRTOS

Example of using the XBeeApi library to broadcast a message, based on XBeeApiBroadcastExample. This example shows how to use the library when using mbed-rtos. Before compiling you must open "XbeeApi\Config\XBeeApiCfg.hpp" and change the '#if 0' to '#if 1' on the line above the comment reading "Use RTOS features to make XBeeApi threadsafe"

Settings/Status

Import programXBeeApiSimpleATCmdsExample

Simple example of using XBeeApi to send AT-style commands to the XBee

Import programXBeeApiRemoteATCmdsExample

Example of using the XBeeApi library to send AT commands to remote XBee devices in order to read/write settings

Receive

Import programXBeeApiSimpleReceiveExample

Simple example of using XBeeApi to receive data packets via wireless

Import programXBeeApiReceiveCallbackExample

Example of using the XBeeApi library to receive a message via a callback method

Import programXBeeApiReceiveCallbackExampleRTOS

Example of using the XBeeApi library to receive a message via a callback method. This example shows how to use the library when using mbed-rtos. See the comment at the top of main.cpp

Remote I/O

Import programXBeeApiRemoteIOExample

Example of using the XBeeApi library to read inputs on a remote XBee

If you have 2 mbed connected XBees available then you can use XBeeApiSimpleReceiveExample and XBeeApiSimpleBroadcastExample as a pair.

Note that this is still a work in progress! XBeeApiTodoList tracks some of the functionality still to be added.

Committer:
johnb
Date:
Tue Feb 04 23:52:50 2014 +0000
Revision:
16:8095c43a2a6e
Parent:
15:ff9f12e38f44
Child:
20:3fa7a0daf1c7
Flesh out XBeeApiTXFrame and add XBeeApiTxFrameEx

Who changed what in which revision?

UserRevisionLine numberNew contents of line
johnb 9:ba90e9efd68b 1 /**
johnb 9:ba90e9efd68b 2 @file
johnb 12:58319a467943 3 @brief Class to support transmission of data via the XBee's wireless
johnb 9:ba90e9efd68b 4
johnb 9:ba90e9efd68b 5 @author John Bailey
johnb 9:ba90e9efd68b 6
johnb 9:ba90e9efd68b 7 @copyright Copyright 2014 John Bailey
johnb 9:ba90e9efd68b 8
johnb 9:ba90e9efd68b 9 @section LICENSE
johnb 9:ba90e9efd68b 10
johnb 9:ba90e9efd68b 11 Licensed under the Apache License, Version 2.0 (the "License");
johnb 9:ba90e9efd68b 12 you may not use this file except in compliance with the License.
johnb 9:ba90e9efd68b 13 You may obtain a copy of the License at
johnb 9:ba90e9efd68b 14
johnb 9:ba90e9efd68b 15 http://www.apache.org/licenses/LICENSE-2.0
johnb 9:ba90e9efd68b 16
johnb 9:ba90e9efd68b 17 Unless required by applicable law or agreed to in writing, software
johnb 9:ba90e9efd68b 18 distributed under the License is distributed on an "AS IS" BASIS,
johnb 9:ba90e9efd68b 19 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
johnb 9:ba90e9efd68b 20 See the License for the specific language governing permissions and
johnb 9:ba90e9efd68b 21 limitations under the License.
johnb 9:ba90e9efd68b 22
johnb 9:ba90e9efd68b 23 */
johnb 9:ba90e9efd68b 24
johnb 16:8095c43a2a6e 25 #if !defined XBEEAPITXFRAME_HPP
johnb 16:8095c43a2a6e 26 #define XBEEAPITXFRAME_HPP
johnb 9:ba90e9efd68b 27
johnb 9:ba90e9efd68b 28 #include "XBeeApiFrame.hpp"
johnb 9:ba90e9efd68b 29 #include "XBeeDevice.hpp"
johnb 9:ba90e9efd68b 30
johnb 9:ba90e9efd68b 31 #include <stdint.h>
johnb 9:ba90e9efd68b 32
johnb 16:8095c43a2a6e 33 #define XBEE_API_TX_FRAME_BUFFER_SIZE 11U
johnb 16:8095c43a2a6e 34
johnb 16:8095c43a2a6e 35 #define XBEE_API_MAX_TX_PAYLOAD_LEN 100U
johnb 16:8095c43a2a6e 36
johnb 16:8095c43a2a6e 37 /** Class to represent a frame of data being transmitted by the XBee */
johnb 9:ba90e9efd68b 38 class XBeeApiTxFrame : public XBeeApiFrame, public XBeeApiFrameDecoder
johnb 9:ba90e9efd68b 39 {
johnb 9:ba90e9efd68b 40 protected:
johnb 16:8095c43a2a6e 41 /** Destination address of the frame */
johnb 12:58319a467943 42 uint64_t m_addr;
johnb 16:8095c43a2a6e 43 /** Whether or not an acknowledgement of the frame is requested */
johnb 12:58319a467943 44 bool m_ack;
johnb 16:8095c43a2a6e 45 /** Whether or not the frame is a PAN broadcast */
johnb 12:58319a467943 46 bool m_panBroadcast;
johnb 16:8095c43a2a6e 47 /** Buffer to house data relating to the frame header */
johnb 16:8095c43a2a6e 48 uint8_t m_buffer[XBEE_API_TX_FRAME_BUFFER_SIZE];
johnb 9:ba90e9efd68b 49 public:
johnb 15:ff9f12e38f44 50 typedef enum
johnb 15:ff9f12e38f44 51 {
johnb 15:ff9f12e38f44 52 XBEE_API_TX_STATUS_OK = 0,
johnb 15:ff9f12e38f44 53 XBEE_API_TX_STATUS_NO_ACK = 1,
johnb 15:ff9f12e38f44 54 XBEE_API_TX_STATUS_CCA_FAIL = 2,
johnb 16:8095c43a2a6e 55 XBEE_API_TX_STATUS_PURGED = 3,
johnb 16:8095c43a2a6e 56 /** Not an actual status, used to provide a handle on the numer of
johnb 16:8095c43a2a6e 57 enumeration items */
johnb 16:8095c43a2a6e 58 XBEE_API_TX_STATUS_LAST = 4
johnb 15:ff9f12e38f44 59 } XBeeApiTxStatus_e;
johnb 15:ff9f12e38f44 60
johnb 9:ba90e9efd68b 61 XBeeApiTxFrame( XBeeDevice* p_device = NULL );
johnb 12:58319a467943 62 virtual ~XBeeApiTxFrame( void );
johnb 9:ba90e9efd68b 63
johnb 12:58319a467943 64 void setDestAddrType( const XBeeDevice::XBeeApiAddrType_t p_type );
johnb 9:ba90e9efd68b 65 void setDestAddr( uint64_t p_addr );
johnb 9:ba90e9efd68b 66 void setDestAddrBroadcast( void );
johnb 9:ba90e9efd68b 67 void setPanBroadcast( const bool p_bc );
johnb 9:ba90e9efd68b 68
johnb 9:ba90e9efd68b 69 virtual bool decodeCallback( const uint8_t* const p_data, size_t p_len );
johnb 16:8095c43a2a6e 70 virtual uint16_t getCmdLen( void ) const;
johnb 16:8095c43a2a6e 71 virtual void getDataPtr( const uint16_t p_start, const uint8_t** p_buff, uint16_t* const p_len );
johnb 16:8095c43a2a6e 72
johnb 16:8095c43a2a6e 73 virtual uint8_t getFrameId( void ) const;
johnb 15:ff9f12e38f44 74
johnb 16:8095c43a2a6e 75 /** Callback function which is invoked when a response to the TX request is received from
johnb 16:8095c43a2a6e 76 the XBee.
johnb 16:8095c43a2a6e 77
johnb 16:8095c43a2a6e 78 \param p_status Status of the TX attempt */
johnb 15:ff9f12e38f44 79 virtual void frameTxCallback( const XBeeApiTxStatus_e p_status );
johnb 16:8095c43a2a6e 80
johnb 16:8095c43a2a6e 81 /** Set the frame payload
johnb 16:8095c43a2a6e 82
johnb 16:8095c43a2a6e 83 \param p_buff Pointer to the buffer containing the data. Note that this buffer is not copied, so
johnb 16:8095c43a2a6e 84 must retain the appropriate content until transmission is complete
johnb 16:8095c43a2a6e 85 \param p_len Length of the data pointed to be p_buff. Must be 100 or less.
johnb 16:8095c43a2a6e 86 \returns true in the case that the operation was successful, false in the case that it was not
johnb 16:8095c43a2a6e 87 (content too long, etc)
johnb 16:8095c43a2a6e 88 */
johnb 16:8095c43a2a6e 89 bool setDataPtr( const uint8_t* const p_buff, const uint16_t p_len );
johnb 9:ba90e9efd68b 90 };
johnb 9:ba90e9efd68b 91
johnb 9:ba90e9efd68b 92 #endif