You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
423 B
28 lines
423 B
# test machine module
|
|
|
|
try:
|
|
try:
|
|
import umachine as machine
|
|
except ImportError:
|
|
import machine
|
|
except ImportError:
|
|
print("SKIP")
|
|
import sys
|
|
sys.exit()
|
|
|
|
print(machine.mem8)
|
|
|
|
try:
|
|
machine.mem16[1]
|
|
except ValueError:
|
|
print("ValueError")
|
|
|
|
try:
|
|
machine.mem16[1] = 1
|
|
except ValueError:
|
|
print("ValueError")
|
|
|
|
try:
|
|
del machine.mem8[0]
|
|
except TypeError:
|
|
print("TypeError")
|
|
|