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

tests: Add test for pyb.disable_irq and pyb.enable_irq.

parent 34e43c7e
No related branches found
No related tags found
No related merge requests found
import pyb
def test_irq():
# test basic disable/enable
i1 = pyb.disable_irq()
print(i1)
pyb.enable_irq() # by default should enable IRQ
# check that interrupts are enabled by waiting for ticks
pyb.delay(10)
# check nested disable/enable
i1 = pyb.disable_irq()
i2 = pyb.disable_irq()
print(i1, i2)
pyb.enable_irq(i2)
pyb.enable_irq(i1)
# check that interrupts are enabled by waiting for ticks
pyb.delay(10)
test_irq()
True
True False
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment