XBee and XBee-PRO ZigBee RF modules provide cost-effective wireless connectivity to electronic devices. They are interoperable with other ZigBee PRO feature set devices, including devices from other vendors.

Dependencies:   BufferedArray

Dependents:   MBEDminiproject

Indicator/RouteRecordIndicator.h

Committer:
yangcq88517
Date:
2015-11-14
Revision:
6:5f31ddc17239
Parent:
0:837e6c48e90d

File content as of revision 6:5f31ddc17239:

#ifndef UK_AC_HERTS_SMARTLAB_XBEE_RouteRecordIndicator
#define UK_AC_HERTS_SMARTLAB_XBEE_RouteRecordIndicator

#include "Address.h"
#include "RxBase.h"

class RouteRecordIndicator : public RxBase
{
public:
    RouteRecordIndicator(APIFrame * frame);

    Address getRemoteDevice();

    /**
    * bit mask
    * SUCCESS = 0x00,
    * PACKET_ACKNOWLEDGED = 0x01,
    * PACKET_WAS_A_BROADCAST = 0x02,
    * PACKET_RECEIVED_ON_BOARDCAST_PAN = 0x04,
    * PACKET_ENCRYPTED_WITH_APS_ENCRYPTION = 0x20,
    * PACKET_WAS_SENT_FROM_AN_END_DEVICE = 0x40,
    */
    int getReceiveStatus();

    int getNumberOfAddresses();

    /** Array of NET16 address
    * index is [0, getNumberOfAddresses() -1], -1 means not avaliable
    */
    int getAddresses(int index);
    
    bool convert(APIFrame * frame);
};

#endif