the problem is 100% this:
This command disables the Enhanced Re-Transmission Mode (ERTM) of the Bluetooth module, with it, enabled the Xbox Controller won’t pair correctly.
echo 'options bluetooth disable_ertm=Y' | sudo tee -a /etc/modprobe.d/bluetooth.conf
(from:
https://pimylifeup.com/xbox-controllers-raspberry-pi/)
on
lakka i did this to deactivate it:
First add the following line to your autostart.sh file located in /storage/.config/autostart.sh
Code: Select all
nano /storage/.config/autostart.sh
then add the line:
Code: Select all
bash -c ‘echo 1 > /sys/module/bluetooth/parameters/disable_ertm’
then change the executable permission:
Code: Select all
chmod +x /storage/.config/autostart.sh
then finally execute it:
now, try pairng again, should work on
lakka... for raspian i think the more advanced users could provide a equivalent guide.
UPDATE
Well, thanks to some readings on internet i got it to work on raspian, here's how if anyone's interested:
Create a new file using nano...
sudo nano /etc/modprobe.d/bluetooth.conf
Add a single line to the new file...
options bluetooth disable_ertm=Y
Exit nano, saving the file in the process.
Profit.