summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/pyb/dac.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/pyb/dac.py b/tests/pyb/dac.py
index 6f03bbc64..ca68ec709 100644
--- a/tests/pyb/dac.py
+++ b/tests/pyb/dac.py
@@ -12,3 +12,7 @@ dac.write(0)
dac.write_timed(bytearray(10), 100, mode=pyb.DAC.NORMAL)
pyb.delay(20)
dac.write(0)
+
+# test buffering arg
+dac = pyb.DAC(1, buffering=True)
+dac.write(0)