You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have two recently-purchased Interstate 75 W boards, which both fail to activate their wireless network interface when using the latest Pimoroni picow Micropython release:
MicroPython v1.24.0, picow v1.24.0-beta1 on 2024-10-31; Raspberry Pi Pico W with RP2040
Type "help()" for more information.
>>> import network
>>> wlan = network.WLAN(network.STA_IF)
>>> wlan.active(True)
[CYW43] Failed to start CYW43
>>> print(wlan.active())
False
>>>
Whereas the network interface was successfully activated with vanilla Micropython:
MicroPython v1.24.1 on 2024-11-29; Raspberry Pi Pico W with RP2040
Type "help()" for more information.
>>> import network
>>> wlan = network.WLAN(network.STA_IF)
>>> wlan.active(True)
>>> print(wlan.active())
True
>>>
I raised this on the Pimoroni forum and tried all of Hel's suggestions, without success.
After nuking the I75W flash and reloading the latest Pimoroni picow MP image, it didn't produce the error message, but still failed to activate the wireless interface.
The text was updated successfully, but these errors were encountered:
I have two recently-purchased Interstate 75 W boards, which both fail to activate their wireless network interface when using the latest Pimoroni picow Micropython release:
Whereas the network interface was successfully activated with vanilla Micropython:
I raised this on the Pimoroni forum and tried all of Hel's suggestions, without success.
After nuking the I75W flash and reloading the latest Pimoroni picow MP image, it didn't produce the error message, but still failed to activate the wireless interface.
The text was updated successfully, but these errors were encountered: