Closed
Description
CircuitPython version
Adafruit CircuitPython 8.2.9 on 2023-12-06; Raspberry Pi Pico W with rp2040
Board ID:raspberry_pi_pico_w
UID:E6616407E353582C
MAC:28:CD:C1:07:71:81
Code/REPL
import time
import wifi
wifi.Radio.enabled: True
radio = wifi.radio
radio.stop_station()
#setting up ssid, password, channel and authmode
ssid = 'RPPW'
password = 'RPPW1234'
channel = 1
authmode = (wifi.AuthMode.WPA2, wifi.AuthMode.PSK)
print('activating access point')
radio.start_ap(ssid, password, channel=channel, authmode=authmode)
time.sleep(1000)
Behavior
Runs ok and Access Point starts. I can log in via wifi. When program ends, I get the message:
You are in safe mode because:
CircuitPython core code crashed hard. Whoops!
Heap allocation when VM not running.
Description
No response
Additional information
No response