Skip to content

Commit b3ba146

Browse files
committed
hardware: add new versions to the supported hardware list
- 0x54: XBee 3 Cellular Global LTE Cat 1 - 0x55: XBee 3 Cellular North America LTE Cat 1 https://onedigi.atlassian.net/browse/XBJAPI-536 Signed-off-by: Ruben Moral <ruben.moral@digi.com>
1 parent f17ee35 commit b3ba146

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

library/src/main/java/com/digi/xbee/api/models/HardwareVersionEnum.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2017-2021, Digi International Inc.
2+
* Copyright 2017-2022, Digi International Inc.
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -119,7 +119,11 @@ public enum HardwareVersionEnum {
119119
/** @since 1.3.1 */
120120
XBEE3_RR(0x52, "XBee 3 Reduced RAM"),
121121
/** @since 1.3.1 */
122-
S2C_P5(0x53, "S2C P5");
122+
S2C_P5(0x53, "S2C P5"),
123+
/** @since 1.3.1 */
124+
CELLULAR_3_GLOBAL_LTE_CAT1(0x54, "XBee 3 Cellular Global LTE Cat 1"),
125+
/** @since 1.3.1 */
126+
CELLULAR_3_NA_LTE_CAT1(0x55, "XBee 3 Cellular North America LTE Cat 1");
123127

124128
// Variables
125129
private final int value;

library/src/main/java/com/digi/xbee/api/models/XBeeProtocol.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,8 @@ else if (firmwareVersion.startsWith("8"))
246246
case CELLULAR_3_LTE_M_ATT_TELIT:
247247
case CELLULAR_3_CAT1_LTE_VERIZON:
248248
case CELLULAR_3_LTE_M_TELIT:
249+
case CELLULAR_3_GLOBAL_LTE_CAT1:
250+
case CELLULAR_3_NA_LTE_CAT1:
249251
return CELLULAR;
250252
case XBEE3:
251253
case XBEE3_SMT:

0 commit comments

Comments
 (0)