13 lines
254 B
Python
13 lines
254 B
Python
|
# test micropython.heap_locked()
|
||
|
|
||
|
import micropython
|
||
|
|
||
|
if not hasattr(micropython, "heap_locked"):
|
||
|
print("SKIP")
|
||
|
raise SystemExit
|
||
|
|
||
|
micropython.heap_lock()
|
||
|
print(micropython.heap_locked())
|
||
|
micropython.heap_unlock()
|
||
|
print(micropython.heap_locked())
|