Skip to content

Commit

Permalink
Merge pull request noble#13 from mrstegeman/merges
Browse files Browse the repository at this point in the history
Merge several PRs from upstream
  • Loading branch information
mrstegeman authored Mar 19, 2020
2 parents c4d8150 + fba1201 commit 6a73a7e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion binding.gyp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
'targets': [
{
'target_name': 'binding',
'target_name': 'bluetooth_hci_socket',
'conditions': [
['OS=="linux" or OS=="android" or OS=="freebsd"', {
'sources': [
Expand Down
2 changes: 2 additions & 0 deletions lib/usb.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 6a73a7e

Please sign in to comment.