summarylogtreecommitdiffstats
path: root/startbt.sh
blob: d2eed4b7e4e00c20f2056a87cf2adb2483371ac8 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/bash
# manually start the bluetooth device BCM43142A0

# set the vendor and product ID
echo "105b e065" > /sys/bus/usb/drivers/btusb/new_id

# start the device
hciconfig hci0 up

# the device can be stopped with "sudo hciconfig hci0 down"