We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Current implementation https://github.com/noble/node-bluetooth-hci-socket/blob/master/lib/usb.js#L94:
this._aclDataOutEndpoint = this._usbDeviceInterface.endpoint(0x02); this._hciEventEndpoint = this._usbDeviceInterface.endpoint(0x81); this._aclDataInEndpoint = this._usbDeviceInterface.endpoint(0x82);
Marvell AVASTAR adapter has endpoints in the different address then default addresses are
this._aclDataOutEndpoint = this._usbDeviceInterface.endpoint(0x04); this._hciEventEndpoint = this._usbDeviceInterface.endpoint(0x83); this._aclDataInEndpoint = this._usbDeviceInterface.endpoint(0x84);
this._usbDeviceInterface:
Interface { device: Device { busNumber: 1, deviceAddress: 4, deviceDescriptor: { bLength: 18, bDescriptorType: 1, bcdUSB: 512, bDeviceClass: 224, bDeviceSubClass: 1, bDeviceProtocol: 1, bMaxPacketSize0: 64, idVendor: 4742, idProduct: 8268, bcdDevice: 12801, iManufacturer: 1, iProduct: 2, iSerialNumber: 3, bNumConfigurations: 1 portNumbers: [ 6 ], interfaces: [ [Circular] _configDescriptor: { bLength: 9, bDescriptorType: 2, wTotalLength: 177, bNumInterfaces: 2, bConfigurationValue: iConfiguration: 0, bmAttributes: 224, bMaxPower: 250, extra: <Buffer >, interfaces: [Array] } id: 0, altSetting: 0, descriptor: { bLength: 9, bDescriptorType: 4, bInterfaceNumber: 0, bAlternateSetting: 0, bNumEndpoints: 3, bInterfaceClass: 224, bInterfaceSubClass: 1, bInterfaceProtocol: 1, iInterface: 0, extra: <Buffer >, endpoints: [ [Object], [ interfaceNumber: 0, endpoints: [ InEndpoint { device: [Device], descriptor: [Object], address: 131, transferType: 3 }, InEndpoint { device: [Device], descriptor: [Object], address: 132, transferType: 2 }, OutEndpoint { device: [Device], descriptor: [Object], address: 4, transferType: 2 } ] }
The text was updated successfully, but these errors were encountered:
Please compare to @abandonware fork and comment
#123
Sorry, something went wrong.
No branches or pull requests
Current implementation https://github.com/noble/node-bluetooth-hci-socket/blob/master/lib/usb.js#L94:
Marvell AVASTAR adapter has endpoints in the different address then default addresses are
this._usbDeviceInterface:
The text was updated successfully, but these errors were encountered: