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:
6:5f31ddc17239
Parent:
4:a0f1fba6c2fb
--- a/Options/OptionsBase.h	Thu Nov 05 23:03:42 2015 +0000
+++ b/Options/OptionsBase.h	Sat Nov 14 16:42:36 2015 +0000
@@ -4,12 +4,12 @@
 class OptionsBase
 {
 protected :
-    char value;
+    unsigned char value;
 public:
     OptionsBase();
-    
-    OptionsBase(char option);
-    
+
+    OptionsBase(unsigned char option);
+
     static OptionsBase * DEFAULT;
 
     static OptionsBase * DisableRetriesRouteRepair;
@@ -17,8 +17,8 @@
     bool getDisableRetriesRouteRepair();
 
     void setDisableRetriesRouteRepair(bool status);
-    
-    char getValue();
+
+    unsigned char getValue();
 };
 
 #endif
\ No newline at end of file