I am trying to get the Bluetooth to work in Raspberry Pi 3.
I am using buildroot with:
- BlueZ 5.45 ( changed the package to get the latest)
- Not using systemd, but I run
bluetoothd
because the bluez script is for systemd. - In buildroot I enabled the bt firmware.
- I can see the hci_uart.ko file and the Bluetooth firmware hcd file
- I removed the
console=ttyAMA0,115200
from cmdline.txt - I added
rfkill
for busybox but I only see the wifi interface, no Bluetooth interface.
running:
hciattach /dev/ttyAMA0 bcm43xx 921600 noflow -
output showed:
bcm43xx_init
Initialization timed out
tried 115200, the same.
Notes:
- When using BlueZ 3 I am getting
invalid id
- I read that it is somehow related to BlueZ version so I did take the latest
All the above was taken after deep search.
So what I am missing here?
How can I get the Bluetooth to start running in my Raspberry Pi 3 with buildroot as image creator?
Thank you all!