Skip to content
Snippets Groups Projects
Commit c7c14f16 authored by Damien George's avatar Damien George
Browse files

tests/micropython: Add test for micropython.kbd_intr().

parent bbb4b982
No related branches found
No related tags found
No related merge requests found
# test the micropython.kbd_intr() function
import micropython
try:
micropython.kbd_intr
except AttributeError:
print('SKIP')
import sys
sys.exit()
# just check we can actually call it
micropython.kbd_intr(3)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment