Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge several PRs from upstream #13

Merged
merged 3 commits into from
Mar 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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