You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to compare the local address to another XBee address I am receiving.
It's not a big deal to include, maybe somebody else needs this.
What you can do now is:
XBeeAddress64 addr1, addr2;
[...]
if (addr1 == addr2){ ... }
----- XBee.h (Line 304-305) -----
bool operator==(XBeeAddress64 addr);
bool operator!=(XBeeAddress64 addr);
-----XBee.cpp (Line 1048-1054) -----
bool XBeeAddress64::operator==(XBeeAddress64 addr) {
return ((_lsb == addr.getLsb()) && (_msb == addr.getMsb()));
}
bool XBeeAddress64::operator!=(XBeeAddress64 addr) {
return !(*this == addr);
}
Original issue reported on code.google.com by [email protected] on 19 Dec 2013 at 3:02
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 19 Dec 2013 at 3:02The text was updated successfully, but these errors were encountered: