I can connect to Wi-Fi when I use RPi 3B but when I boot the system with 3B+ it doesn't connect to Wi-Fi automatically and when I click on the top right to connect it to Wi-Fi, I see the error:
no wireless interfaces found.
We tried
sudo rpi-update
sudo apt-get update
sudo apt-get upgrade
and some other common solutions on the internet but none of them solved the problem. I can connect to internet via Ethernet but I need to connect to Wi-Fi. I also tried to set the country code but it did not work.
Are there any other solutions we can try?
"In normal circumstances there is NEVER a need to run rpi-update as it always gets you to the leading edge firmware and kernel and because that may be a testing version it could leave your RPi unbootable". https://www.raspberrypi.org/forums/viewtopic.php?p=916911#p916911
Even the rpi-update documentation now warns "Even on Raspbian you should only use this with a good reason. This gets you the latest bleeding edge kernel/firmware."
– Milliways Jul 06 '18 at 08:06sudo apt-get update; sudo apt-get install --reinstall raspberrypi-bootloader raspberrypi-kernel
will put it back to the latest supported kernel/bootcode. THEN you can start solving your problem. – Milliways Jul 06 '18 at 08:06