Skip to content

Commit 5a04904

Browse files
author
Scytmo
committed
Add Extended Modem Status frame type (0x98)
This commit adds support for the Extended Modem Status frame type 0x98 as implemented in XBee S2C modules. Reporting of Extended Modem Status is enabled with the ATDC10 command.
1 parent f8cbcfd commit 5a04904

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

xbee/zigbee.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,13 @@ class ZigBee(XBeeBase):
162162
{'name':'status', 'len':1}
163163
]
164164
},
165+
b'\x98': {
166+
'name': 'extended_status',
167+
'structure': [
168+
{'name': 'status', 'len': 1},
169+
{'name': 'data', 'len': None}
170+
]
171+
},
165172
b'\x8D': {
166173
'name': 'route_information',
167174
'structure': [

0 commit comments

Comments
 (0)