XBee API operation library for mbed

Revision:
8:4da2ac03e35e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SmartLabXBeeCore/Options/RemoteCommandOptions.h	Wed Mar 30 19:58:48 2016 +0000
@@ -0,0 +1,23 @@
+#ifndef UK_AC_HERTS_SMARTLAB_XBEE_RemoteCommandOptions
+#define UK_AC_HERTS_SMARTLAB_XBEE_RemoteCommandOptions
+
+#include "TransmitOptions.h"
+
+class RemoteCommandOptions : public TransmitOptions
+{
+public :
+    RemoteCommandOptions();
+    
+    RemoteCommandOptions(unsigned char option);
+
+    RemoteCommandOptions(bool disable_retries_and_route_repair, bool apply_changes, bool enable_APS_encryption, bool use_extended_transmission_timeout);
+
+    static RemoteCommandOptions * ApplyChanges;
+
+    bool getApplyChanges();
+
+    void setApplyChanges(bool status);
+
+};
+
+#endif
\ No newline at end of file