From ea3af1e20eea98c97f3db5023617d7067c57ca2b Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 27 Mar 2017 16:44:22 +0800 Subject: [PATCH] drtio: remove obsolete CSR accesses from test --- artiq/gateware/test/drtio/test_full_stack.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/artiq/gateware/test/drtio/test_full_stack.py b/artiq/gateware/test/drtio/test_full_stack.py index c8ef2be12..e3c08d630 100644 --- a/artiq/gateware/test/drtio/test_full_stack.py +++ b/artiq/gateware/test/drtio/test_full_stack.py @@ -123,10 +123,8 @@ class TestFullStack(unittest.TestCase): while status: status = yield from kcsrs.o_status.read() if status & 2: - yield from kcsrs.o_underflow_reset.write(1) raise RTIOUnderflow if status & 4: - yield from kcsrs.o_sequence_error_reset.write(1) raise RTIOSequenceError yield wlen += 1