diff --git a/README.md b/README.md index 51656e4..c80ab9c 100644 --- a/README.md +++ b/README.md @@ -41,11 +41,13 @@ 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 | |:---- | :------ | :-------| | BCM2045A0 Bluetooth 4.1 | 0x0a5c | 0x6412 | +| Marvell AVASTAR | 0x1286 | 0x204C | ## Install 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/lib/usb.js b/lib/usb.js index c7d2193..59ea6b5 100644 --- a/lib/usb.js +++ b/lib/usb.js @@ -25,6 +25,8 @@ 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 + {vid: 0x8087, pid: 0x0025 }, // Dell Precision 5530 ]; function BluetoothHciSocket() { 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",