2017-04-18 02:21:47 -04:00
|
|
|
# test the micropython.kbd_intr() function
|
|
|
|
|
|
|
|
import micropython
|
|
|
|
|
|
|
|
try:
|
|
|
|
micropython.kbd_intr
|
|
|
|
except AttributeError:
|
2020-03-22 22:26:08 -04:00
|
|
|
print("SKIP")
|
2017-06-10 13:14:16 -04:00
|
|
|
raise SystemExit
|
2017-04-18 02:21:47 -04:00
|
|
|
|
|
|
|
# just check we can actually call it
|
|
|
|
micropython.kbd_intr(3)
|