mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-29 23:24:20 +08:00
tools: Check class of device value for 3D display
This commit is contained in:
parent
9116f11020
commit
1f8fb96a65
@ -138,6 +138,10 @@ static void ext_inquiry_result(const void *data, uint8_t size, void *user_data)
|
||||
{
|
||||
const struct bt_hci_evt_ext_inquiry_result *evt = data;
|
||||
|
||||
if (evt->dev_class[0] != 0x3c || evt->dev_class[1] != 0x04
|
||||
|| evt->dev_class[2] != 0x08)
|
||||
return;
|
||||
|
||||
if (evt->data[0]) {
|
||||
struct bt_hci_cmd_truncated_page cmd;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user