Raspberry Pico W program not working after updating to firmware v1.24 #16202
Unanswered
visogonzalez
asked this question in
RP2040 / Pico
Replies: 2 comments 1 reply
-
please see answer here: Raspberry Pico W program not working after updating to firmware v1.24 - Raspberry Pi Forums Summary (confirmed by the OP to have been successful): turn the station off if you use the AP: sta_if = network.WLAN(network.STA_IF)
sta_if.active(False) |
Beta Was this translation helpful? Give feedback.
0 replies
-
The pm (power management) configuration in ap.config() might be affecting the network behavior in the new firmware. Try removing or modifying the pm configuration: ap.config(essid=ssid, password=password) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have a very simple program for Raspberry Pico W that toogles the state of two GPIO when an UDP message is received through the board WiFi AP. It is not working after updating to the last v1.24 firmware and I really don't know why. I can connect to the Pico AP but it doesn't receive any mesages, It works if I go back to v1.23, so it is clearly something with v1.24. I can't see anything in the firmware documentation that explains this.
Any ideas?
The code:
Beta Was this translation helpful? Give feedback.
All reactions