diff options
Diffstat (limited to 'tests/pyb/pyb1.py')
-rw-r--r-- | tests/pyb/pyb1.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/pyb/pyb1.py b/tests/pyb/pyb1.py index 0087ec0507..184acbdc43 100644 --- a/tests/pyb/pyb1.py +++ b/tests/pyb/pyb1.py @@ -27,16 +27,15 @@ print((pyb.millis() - start) // 5) # should print 3 pyb.disable_irq() pyb.enable_irq() -print(pyb.freq()) - print(pyb.have_cdc()) pyb.hid((0, 0, 0, 0)) # won't do anything -pyb.rng() - pyb.sync() print(len(pyb.unique_id())) pyb.wfi() + +pyb.fault_debug(True) +pyb.fault_debug(False) |