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:
0:837e6c48e90d
--- a/Indicator/ATCommandIndicator.cpp	Thu Nov 05 23:03:42 2015 +0000
+++ b/Indicator/ATCommandIndicator.cpp	Sat Nov 14 16:42:36 2015 +0000
@@ -9,7 +9,7 @@
     return data[1];
 }
 
-char * ATCommandIndicator::getRequestCommand()
+unsigned char * ATCommandIndicator::getRequestCommand()
 {
     return data + 2;
 }
@@ -19,7 +19,7 @@
     return data[4];
 }
 
-char * ATCommandIndicator::getParameter()
+unsigned  char * ATCommandIndicator::getParameter()
 {
     if (getParameterLength() <= 0)
         return NULL;
@@ -27,7 +27,7 @@
     return data + 5;
 }
 
-char ATCommandIndicator::getParameter(int index)
+unsigned char ATCommandIndicator::getParameter(int index)
 {
     return data[5 + index];
 }