Skip to content
Snippets Groups Projects
Commit ab2aedae authored by Peter Švihra's avatar Peter Švihra
Browse files

added CMD readback

parent bdbccd7d
Branches
No related merge requests found
......@@ -787,16 +787,20 @@ class CommandFormat(PayloadFormat):
param: float = 0.0
def fromByteArray(self, byteArray):
cmd = 0
code = 0
tmp_payload_type = 0
(self.version,
self.timestamp,
tmp_payload_type,
self.cmd_type,
self.cmd_code,
cmd,
code,
self.param) = self._dataStruct.unpack(byteArray)
self.checkVersion()
self.payload_type = PAYLOAD_TYPE(tmp_payload_type)
self.cmd_type = CMD_TYPE(cmd)
self.cmd_code = CMD_MAP[self.cmd_type.name].value(code)
self._byteArray = byteArray
......
......@@ -67,6 +67,7 @@ class HEVServer(object):
PAYLOAD_TYPE.DEBUG,
PAYLOAD_TYPE.IVT,
PAYLOAD_TYPE.PERSONAL,
PAYLOAD_TYPE.CMD
]
if payload_type in whitelist:
# fork data to broadcast threads
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment