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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers OptionsBase.h Source File

OptionsBase.h

00001 #ifndef UK_AC_HERTS_SMARTLAB_XBEE_OptionsBase
00002 #define UK_AC_HERTS_SMARTLAB_XBEE_OptionsBase
00003 
00004 class OptionsBase
00005 {
00006 protected :
00007     unsigned char value;
00008 public:
00009     OptionsBase();
00010 
00011     OptionsBase(unsigned char option);
00012 
00013     static OptionsBase * DEFAULT;
00014 
00015     static OptionsBase * DisableRetriesRouteRepair;
00016 
00017     bool getDisableRetriesRouteRepair();
00018 
00019     void setDisableRetriesRouteRepair(bool status);
00020 
00021     unsigned char getValue();
00022 };
00023 
00024 #endif