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

tests/pyb: Add test for ExtInt when doing swint while disabled.

parent 1ba516f4
No related branches found
No related tags found
No related merge requests found
import pyb
# test basic functionality
ext = pyb.ExtInt('X1', pyb.ExtInt.IRQ_RISING, pyb.Pin.PULL_DOWN, lambda l:print('line:', l))
ext.disable()
ext.enable()
print(ext.line())
ext.swint()
# test swint while disabled, then again after re-enabled
ext.disable()
ext.swint()
ext.enable()
ext.swint()
# disable now that the test is finished
ext.disable()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment