Skip to content

Commit 6a73a7e

Browse files
authored
Merge pull request #13 from mrstegeman/merges
Merge several PRs from upstream
2 parents c4d8150 + fba1201 commit 6a73a7e

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,13 @@ Note:
4141
| Intel Wireless Bluetooth 7265 | 0x8087 | 0x0a2a |
4242
| Intel Wireless Bluetooth 8265 | 0x8087 | 0x0a2b |
4343
| Belkin BCM20702A0 | 0x050D | 0x065A |
44+
| Dell Precision 5530| 0x8087 | 0x0025 |
4445

4546
#### Compatible Bluetooth 4.1 USB Adapter's
4647
| Name | USB VID | USB PID |
4748
|:---- | :------ | :-------|
4849
| BCM2045A0 Bluetooth 4.1 | 0x0a5c | 0x6412 |
50+
| Marvell AVASTAR | 0x1286 | 0x204C |
4951

5052
## Install
5153

binding.gyp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
'targets': [
33
{
4-
'target_name': 'binding',
4+
'target_name': 'bluetooth_hci_socket',
55
'conditions': [
66
['OS=="linux" or OS=="android" or OS=="freebsd"', {
77
'sources': [

lib/usb.js

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ var VENDOR_DEVICE_LIST = [
2525
{vid: 0x0489, pid: 0xe07a }, // Broadcom BCM20702A1
2626
{vid: 0x0a5c, pid: 0x6412 }, // Broadcom BCM2045A0
2727
{vid: 0x050D, pid: 0x065A }, // Belkin BCM20702A0
28+
{vid: 0x1286, pid: 0x204C }, // Marvell AVASTAR
29+
{vid: 0x8087, pid: 0x0025 }, // Dell Precision 5530
2830
];
2931

3032
function BluetoothHciSocket() {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"test": "jshint lib/*.js && node test.js"
4242
},
4343
"binary": {
44-
"module_name": "binding",
44+
"module_name": "bluetooth_hci_socket",
4545
"module_path": "./lib/binding/",
4646
"host": "https://github.com/abandonware/node-bluetooth-hci-socket/releases/download/",
4747
"package_name": "{module_name}-{version}-{node_abi}-{platform}-{arch}.tar.gz",

0 commit comments

Comments
 (0)