Skip to content

Instantly share code, notes, and snippets.

@marcelrv
Last active November 14, 2024 16:57
Show Gist options
  • Save marcelrv/06057a48e86a06b5bc4b65b96f148d42 to your computer and use it in GitHub Desktop.
Save marcelrv/06057a48e86a06b5bc4b65b96f148d42 to your computer and use it in GitHub Desktop.
RPI Zero 2W Bluetooth and SSH

RPI Zero 2W Bluetooth and SSH issues

Fix Bluetooth not working

Add to the /boot/boot_config the following

[all]
dtoverlay=miniuart-bt
core_freq=250

Fix SSH freezing after login

see also https://forums.raspberrypi.com/viewtopic.php?f=28&t=138631&start=100#p939040

Add to /etc/ssh/sshd_config IPQoS cs0 cs0

e.g with command
echo "IPQoS cs0 cs0" | sudo tee -a /etc/ssh/sshd_config

restart sshd:
sudo service ssh restart

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment