Closed
Description
CircuitPython version
Adafruit CircuitPython 9.2.0-rc.0 on 2024-10-23; Adafruit Feather RP2350 with rp2350a
ESP-PSRAM-64H soldered on
Code/REPL
>>> from os import urandom
>>> a = urandom(7340032) # 7ish megs, do not reload
>>> import microcontroller
>>> microcontroller.reset()
# Then once it's up
>>> import gc
>>> gc.mem_alloc()
1312
>>> gc.mem_free()
776512
>>>
Behavior
Also cold booting, sends the board to safemode, assuming it doesn't like mem contents.
Booting by upgrading from 9.2.0-beta.1-21-gb7af97ee92
works.
Description
Feels like ram contents matter and are not cleaned on chip init.
Additional information
Adafruit CircuitPython 9.2.0-beta.1-21-gb7af97ee92 on 2024-10-23; Adafruit Feather RP2350 with rp2350a
is good.