summaryrefslogtreecommitdiff
path: root/emulator/hciemu.c
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2019-09-25 12:56:00 +0300
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2020-02-03 13:26:40 -0800
commitfc1e36b3005eae8c7461bcfddd18c8e9e7dc2609 (patch)
treed3c25c6d36a23b262a1ec629b10c6b8ac488863f /emulator/hciemu.c
parent91e49fbf01472e6c7d0f7ca4f1e21e1f9c316e9e (diff)
downloadbluez-fc1e36b3005eae8c7461bcfddd18c8e9e7dc2609.tar.gz
emulator: Add initial support for BT 5.2
This adds the initial command/event decoding for 5.2.
Diffstat (limited to 'emulator/hciemu.c')
-rw-r--r--emulator/hciemu.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/emulator/hciemu.c b/emulator/hciemu.c
index 1045043f1..23891a2ee 100644
--- a/emulator/hciemu.c
+++ b/emulator/hciemu.c
@@ -335,6 +335,9 @@ struct hciemu *hciemu_new(enum hciemu_type type)
case HCIEMU_TYPE_BREDRLE50:
hciemu->btdev_type = BTDEV_TYPE_BREDRLE50;
break;
+ case HCIEMU_TYPE_BREDRLE60:
+ hciemu->btdev_type = BTDEV_TYPE_BREDRLE60;
+ break;
default:
return NULL;
}