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

Revision:
0:837e6c48e90d
Child:
4:a0f1fba6c2fb
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Options/OptionsBase.h	Thu Oct 22 12:28:26 2015 +0000
@@ -0,0 +1,24 @@
+#ifndef UK_AC_HERTS_SMARTLAB_XBEE_OptionsBase
+#define UK_AC_HERTS_SMARTLAB_XBEE_OptionsBase
+
+class OptionsBase
+{
+protected :
+    char value;
+public:
+    OptionsBase();
+    
+    OptionsBase(char option);
+    
+    static OptionsBase DEFAULT;
+
+    static OptionsBase DisableRetriesRouteRepair;
+
+    bool getDisableRetriesRouteRepair();
+
+    void setDisableRetriesRouteRepair(bool status);
+    
+    char getValue();
+};
+
+#endif
\ No newline at end of file