summaryrefslogtreecommitdiffstats
path: root/scripts/remote/controller.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/remote/controller.py')
-rw-r--r--scripts/remote/controller.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/remote/controller.py b/scripts/remote/controller.py
index 2ed834613e..1a83909042 100644
--- a/scripts/remote/controller.py
+++ b/scripts/remote/controller.py
@@ -46,6 +46,9 @@ def unpack(data):
elif p_type == BBType.fs_return:
logging.debug("received: fs_return")
return BBPacketFSReturn(raw=data)
+ elif p_type == BBType.md:
+ logging.debug("received: md")
+ return BBPacketMd(raw=data)
elif p_type == BBType.md_return:
logging.debug("received: md_return")
return BBPacketMdReturn(raw=data)