add honyar mp1 devtype 0x4ef7

This commit is contained in:
hackers365 2017-06-17 17:24:18 +08:00 committed by Matthew Garrett
parent 4f902342e7
commit 1d7fba3d06

View file

@ -51,7 +51,7 @@ def gendevice(devtype, host, mac):
return rm(host=host, mac=mac) return rm(host=host, mac=mac)
elif devtype == 0x2714: # A1 elif devtype == 0x2714: # A1
return a1(host=host, mac=mac) return a1(host=host, mac=mac)
elif devtype == 0x4EB5: # MP1 elif devtype == 0x4EB5 or devtype == 0x4EF7: # MP1: 0x4eb5, honyar oem mp1: 0x4ef7
return mp1(host=host, mac=mac) return mp1(host=host, mac=mac)
else: else:
return device(host=host, mac=mac) return device(host=host, mac=mac)