Skip to content

Commit 44a29dc

Browse files
Merge pull request #56 from PoOyaKhandel/master
handling Receive Packet Frame added
2 parents 5643255 + 8c3d1c2 commit 44a29dc

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

xbee/backend/ieee.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,15 @@ class XBee(object):
157157
('parameter', lambda xbee, original: xbee._parse_IS_at_response(original)) # noqa
158158
]
159159
},
160+
b'\x90': {
161+
'name': 'rx',
162+
'structure':[
163+
{'name': 'source_addr_long', 'len':8},
164+
{'name': 'source_addr', 'len':2},
165+
{'name': 'options', 'len':1},
166+
{'name': 'rf_data', 'len': None}
167+
]
168+
},
160169
b'\x97': {
161170
'name': 'remote_at_response',
162171
'structure': [

0 commit comments

Comments
 (0)