Skip to content

Commit

Permalink
xbee3: add support for DigiMesh and 802.15.4 protocols on XBee3 modules
Browse files Browse the repository at this point in the history
Signed-off-by: Ruben Moral <[email protected]>
  • Loading branch information
rubenmoral committed Apr 12, 2018
1 parent 63ca637 commit 467f72a
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,12 @@ else if (firmwareVersion.startsWith("8"))
case XBEE3:
case XBEE3_SMT:
case XBEE3_TH:
return ZIGBEE;
if (firmwareVersion.startsWith("2"))
return RAW_802_15_4;
else if (firmwareVersion.startsWith("3"))
return DIGI_MESH;
else
return ZIGBEE;
case XB8X:
return DIGI_MESH;
default:
Expand Down

0 comments on commit 467f72a

Please sign in to comment.