We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a357ced commit f17ee35Copy full SHA for f17ee35
library/src/main/java/com/digi/xbee/api/models/XBeeProtocol.java
@@ -1,5 +1,5 @@
1
/**
2
- * Copyright 2017-2021, Digi International Inc.
+ * Copyright 2017-2022, Digi International Inc.
3
*
4
* This Source Code Form is subject to the terms of the Mozilla Public
5
* License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -263,6 +263,10 @@ else if (firmwareVersion.startsWith("3"))
263
case XBEE3_DM_LR_868:
264
return DIGI_MESH;
265
case S2C_P5:
266
+ if (firmwareVersion.toLowerCase().startsWith("b"))
267
+ return DIGI_MESH;
268
+ else if (firmwareVersion.toLowerCase().startsWith("c"))
269
+ return RAW_802_15_4;
270
return ZIGBEE;
271
default:
272
0 commit comments