Hi,
I'd like to test a usb dongle that has bluetooth 4.2 and i'd like to turn off the bluetooth included then use the USB. IS that possible if so how ? I mean i did suceed to turn off bluetooth using
dtoverlay=pi3-disable-wifi
dtoverlay=pi3-disable-bt
but sudo hcitool dev does not show any other device, maybe it turns off all bluetooth i mean including the USB one ?
lsusb does show :
Bus 001 Device 005: ID 10c4:ea80 Cygnal Integrated Products, Inc. CP210x UART Bridge
Re: Disable bluetooth and add a USB bluetooth dongle possibl
The 'dtoverlay=pi3-disable-bt' should disable the on-board Bluetooth, and enable a standard USB dongle to be recognized as hci0. However, based on the lsusb output, I don't think you have a standard USB Bluetooth dongle. It might be a serial Bluetooth module with a USB interface. Do you have the full name or a link to the USB device?
[EDIT: Duh, of course, it's in the lsusb output. Yeah, that's a UART adapter that appears to the Pi as a serial port, not a Bluetooth HCI device. You should be able to open it for serial communications, but not as a Bluetooth adapter.]
[EDIT: Duh, of course, it's in the lsusb output. Yeah, that's a UART adapter that appears to the Pi as a serial port, not a Bluetooth HCI device. You should be able to open it for serial communications, but not as a Bluetooth adapter.]
Re: Disable bluetooth and add a USB bluetooth dongle possibl
Hmm i can see that.
I have this device http://makerspot.com/cc2640-bluetooth-l ... a-bled112/
and it is indeed stated
I have this device http://makerspot.com/cc2640-bluetooth-l ... a-bled112/
and it is indeed stated
which seems to fit witht the UART i see. I wonder how i can change that but then again this is writtenThe USB HID dongle is per-flashed with DataExchanger AT firmware
which leads me it should work out of the boxCommunications between the host and the BLE can be done using native HID API or CP2110 libraries. No cumbersome COM port selection, or virtual COM port contention and lock up.
Re: Disable bluetooth and add a USB bluetooth dongle possibl
OK, interesting device. The link says it "enumerates as a generic HID device". I can't tell what you would use it for. It may very well work out of the box, but not as a Bluetooth dongle.
-
- Posts: 10
- Joined: Sat May 27, 2017 5:24 am
Re: Disable bluetooth and add a USB bluetooth dongle possible ?
Hi.donnib wrote: ↑Wed Jul 05, 2017 1:57 pmHi,
I'd like to test a usb dongle that has bluetooth 4.2 and i'd like to turn off the bluetooth included then use the USB. IS that possible if so how ? I mean i did suceed to turn off bluetooth using
dtoverlay=pi3-disable-wifi
dtoverlay=pi3-disable-bt
but sudo hcitool dev does not show any other device, maybe it turns off all bluetooth i mean including the USB one ?
lsusb does show :
Bus 001 Device 005: ID 10c4:ea80 Cygnal Integrated Products, Inc. CP210x UART Bridge
Are you using the dongle with the serial service? Have you tried to use it with other BLE services or Linux raspberry tools like hcitool lescan?