From d8616fd539749a0fd72711793b475ad81427b706 Mon Sep 17 00:00:00 2001 From: Daniil Zaru Date: Mon, 18 Mar 2019 15:03:58 +0100 Subject: [PATCH] Add support for bluetooth adapter of Dell Precision 5530 --- README.md | 1 + lib/usb.js | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index e3427b6..c80ab9c 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ Note: | Intel Wireless Bluetooth 7265 | 0x8087 | 0x0a2a | | Intel Wireless Bluetooth 8265 | 0x8087 | 0x0a2b | | Belkin BCM20702A0 | 0x050D | 0x065A | +| Dell Precision 5530| 0x8087 | 0x0025 | #### Compatible Bluetooth 4.1 USB Adapter's | Name | USB VID | USB PID | diff --git a/lib/usb.js b/lib/usb.js index 56013e5..59ea6b5 100644 --- a/lib/usb.js +++ b/lib/usb.js @@ -26,6 +26,7 @@ var VENDOR_DEVICE_LIST = [ {vid: 0x0a5c, pid: 0x6412 }, // Broadcom BCM2045A0 {vid: 0x050D, pid: 0x065A }, // Belkin BCM20702A0 {vid: 0x1286, pid: 0x204C }, // Marvell AVASTAR + {vid: 0x8087, pid: 0x0025 }, // Dell Precision 5530 ]; function BluetoothHciSocket() {