Digi XBeeLib fixed for NonCopyable issue

Dependents:   XBeeZB_Receive_Data

Fork of XBeeLib by Digi International Inc.

This lib fixes NonCopyable<T> issues of Digi XBeeLib. Also, lib has been reworked in order to make it RTOS-aware, overcoming several others issues due to stdio Mutex operations.

Revision:
4:629712865107
Parent:
3:8662ebe83570
Child:
6:06522f3a6642
--- a/IO/IOSampleZB.h	Mon May 18 13:16:55 2015 +0200
+++ b/IO/IOSampleZB.h	Mon Jun 01 18:59:43 2015 +0200
@@ -54,7 +54,7 @@
          */
         inline bool is_valid()
         {
-            return _digital_mask == 0 && _analog_mask == 0;
+            return _digital_mask != 0 || _analog_mask != 0;
         }
 
     protected: