Hello Everyone
Posting this in case it helps others using Raspberry Pi CM5 (in my case on uConsole).
Initially, Wi-Fi performance felt very slow, and it turned out the system was connecting to 2.4 GHz by default.
Problem
Out of the box, Wi-Fi showed:
freq: 2427
This means 2.4 GHz, which is:
-
Crowded
-
Limited in bandwidth
-
Often slow, especially in compact or metal enclosures
How I fixed it
First, I checked which band was being used:
iw dev wlan0 link
Then I forced the connection to use 5 GHz via NetworkManager:
nmcli connection show
nmcli connection modify "<connection-name>" 802-11-wireless.band a
nmcli connection up "<connection-name>"
I’m also using an external SMA antenna, installed via a Wi-Fi mod from Printables, which helped improve signal quality compared to the onboard antenna.
Result
After reconnecting, the link now shows:
freq: 5180
This confirms the CM5 is connecting to 5 GHz, and Wi-Fi performance is noticeably better and more stable.
Summary
-
CM5 may connect to 2.4 GHz by default, which feels slow
-
iw dev wlan0 linkclearly shows which band is in use -
Forcing 5 GHz and using an external SMA antenna significantly improves performance