After the latest Ubuntu update (using 19.04) I get an extraordinary lag when using my Logitech M720 mouse connected via Bluetooth.
When using the USB dongle it works flawless.
Any ideas on why this might have occurred? (tried removing it, pairing it again and so forth)
13 Answers
After trying to downgrade the bluetooth package to see if that made a difference, I decided/realized that while it may have improved somewhat, it did not fix the issue. Continued researching and found: .
Suggestion is:
echo "options iwlwifi bt_coex_active=0" | sudo tee /etc/modprobe.d/iwlopt.conf
Then restart.
Seems to be working substantially better
3I am using a Logitech MX Ergo on Pop OS 19.10 (running on a ThinkPad E15) and
echo "options iwlwifi bt_coex_active=0" | sudo tee /etc/modprobe.d/iwlopt.confsolved it for me. It improved both issues that I was experiencing:
- an occasional lag of around 0.5 seconds where the pointer completely stopped moving,
- the mouse pointer generally became much more fluid, there were many micro-stutters before.
Thanks to BHuber!
The above workaround worked for me for a while, but, few days ago, my mouse started to lag again.
I found this tutorial, that seems to work.
In resume:
- Find the address of your mouse:
bluetoothctl devices | cut -f2 -d' ' | while read uuid; do bluetoothctl info $uuid; done|grep -e "Device\|Connected\|Name"sudo nano /var/lib/bluetooth/<you mouse address>/info- Change the MinInterval and MaxInterval. I changed to 5, you may want to play with numbers here.
- Restart Bluetooth adapte:
rfkill block bluetooth
rfkill unblock bluetoothI hope it helps.