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:
4:a0f1fba6c2fb
Parent:
0:837e6c48e90d
Child:
6:5f31ddc17239
--- a/Options/Tx16TransmitOptions.cpp	Mon Oct 26 18:04:12 2015 +0000
+++ b/Options/Tx16TransmitOptions.cpp	Fri Oct 30 00:38:40 2015 +0000
@@ -18,11 +18,11 @@
         value |= 0x08;
 }
 
-Tx16TransmitOptions Tx16TransmitOptions::ForceLongHeader = Tx16TransmitOptions(0x02);
+Tx16TransmitOptions * Tx16TransmitOptions::ForceLongHeader = new Tx16TransmitOptions(0x02);
 
-Tx16TransmitOptions Tx16TransmitOptions::DisableLongHeader = Tx16TransmitOptions(0x04);
+Tx16TransmitOptions * Tx16TransmitOptions::DisableLongHeader = new Tx16TransmitOptions(0x04);
 
-Tx16TransmitOptions Tx16TransmitOptions::InvokeTraceroute = Tx16TransmitOptions(0x08);
+Tx16TransmitOptions * Tx16TransmitOptions::InvokeTraceroute = new Tx16TransmitOptions(0x08);
 
 bool Tx16TransmitOptions::getForceLongHeader()
 {