forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Open
Labels
Milestone
Description
CircuitPython version and board name
boot_out.txt:
Adafruit CircuitPython 10.0.3 on 2025-10-17; PCA10059 nRF52840 Dongle with nRF52840
Board ID:pca10059
UID:AC2D4B6D80A68DEA
boot.py output:
boot.py:
import storage
import supervisor
storage.disable_usb_drive()
supervisor.runtime.autoreload = TrueCode/REPL
x # Yes - this program makes pca10059 crash!Behavior
No response, board hangs and has to be powercycled
Description
Expected behaviour
>>> x
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'x' is not defined
This expected behavior is observed on:
- pca10059 9.2.9
- Seeed XIAO nRF52840 Sense with nRF52840, 9.2.9, 10.0.1, 10.0.2, 10.0.3
However the crash is observed on
- pca10059 10.0.1, 10.0.2, 10.0.3
Additional information
No response