Skip to content

Commit 8cfbf86

Browse files
committed
profile: fix remote firmware update for SX devices
XBee SX devices use the same *.ebin file to perform firmware update of local and remote XBee devices. This commit adds the .ebin wildcard to the list of valid firmware files to perform remote firmware update operations. Signed-off-by: David Escalona <david.escalona@digi.com>
1 parent 4f8206a commit 8cfbf86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

digi/xbee/profile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
_WILDCARD_CELLULAR_BOOTLOADER = "bl_.*"
114114
_WILDCARD_XML = "*%s" % EXTENSION_XML
115115
_WILDCARDS_FW_LOCAL_BINARY_FILES = (EXTENSION_EBIN, EXTENSION_EHX2, EXTENSION_GBL)
116-
_WILDCARDS_FW_REMOTE_BINARY_FILES = (EXTENSION_OTA, EXTENSION_OTB, EXTENSION_EBL)
116+
_WILDCARDS_FW_REMOTE_BINARY_FILES = (EXTENSION_OTA, EXTENSION_OTB, EXTENSION_EBL, EXTENSION_EBIN)
117117

118118
_XML_COMMAND = "command"
119119
_XML_CONTROL_TYPE = "control_type"

0 commit comments

Comments
 (0)