From 7be301211872384b144dc6e4bb66b67b9dfd74a3 Mon Sep 17 00:00:00 2001 From: Tomi Tuhkanen Date: Thu, 1 Mar 2018 00:20:49 +0200 Subject: [PATCH 1/3] Add Marvell AVASTAR adapter --- README.md | 1 + lib/usb.js | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 51656e4..e3427b6 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,7 @@ Note: | Name | USB VID | USB PID | |:---- | :------ | :-------| | BCM2045A0 Bluetooth 4.1 | 0x0a5c | 0x6412 | +| Marvell AVASTAR | 0x1286 | 0x204C | ## Install diff --git a/lib/usb.js b/lib/usb.js index c7d2193..56013e5 100644 --- a/lib/usb.js +++ b/lib/usb.js @@ -25,6 +25,7 @@ var VENDOR_DEVICE_LIST = [ {vid: 0x0489, pid: 0xe07a }, // Broadcom BCM20702A1 {vid: 0x0a5c, pid: 0x6412 }, // Broadcom BCM2045A0 {vid: 0x050D, pid: 0x065A }, // Belkin BCM20702A0 + {vid: 0x1286, pid: 0x204C }, // Marvell AVASTAR ]; function BluetoothHciSocket() { From d8616fd539749a0fd72711793b475ad81427b706 Mon Sep 17 00:00:00 2001 From: Daniil Zaru Date: Mon, 18 Mar 2019 15:03:58 +0100 Subject: [PATCH 2/3] 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() { From fba12019642340248e690619fd48e54dce54de45 Mon Sep 17 00:00:00 2001 From: Dominique Date: Tue, 15 May 2018 02:43:06 +0200 Subject: [PATCH 3/3] rename binding --- binding.gyp | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/binding.gyp b/binding.gyp index 241f117..342b273 100644 --- a/binding.gyp +++ b/binding.gyp @@ -1,7 +1,7 @@ { 'targets': [ { - 'target_name': 'binding', + 'target_name': 'bluetooth_hci_socket', 'conditions': [ ['OS=="linux" or OS=="android" or OS=="freebsd"', { 'sources': [ diff --git a/package.json b/package.json index 7d84802..c058c0a 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "test": "jshint lib/*.js && node test.js" }, "binary": { - "module_name": "binding", + "module_name": "bluetooth_hci_socket", "module_path": "./lib/binding/", "host": "https://github.com/abandonware/node-bluetooth-hci-socket/releases/download/", "package_name": "{module_name}-{version}-{node_abi}-{platform}-{arch}.tar.gz",