From 98598df78e97a190065c863a0391c996d33fece0 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 10 Jan 2017 16:12:32 -0600 Subject: [PATCH] rtio: keep retrying on get FIFO space timeout --- artiq/gateware/drtio/rt_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/gateware/drtio/rt_controller.py b/artiq/gateware/drtio/rt_controller.py index ffb8d96e5..f7ae6a378 100644 --- a/artiq/gateware/drtio/rt_controller.py +++ b/artiq/gateware/drtio/rt_controller.py @@ -192,7 +192,7 @@ class RTController(Module): timeout_counter.wait.eq(1), If(timeout_counter.done, signal_fifo_space_timeout.eq(1), - NextState("IDLE") + NextState("GET_FIFO_SPACE") ) )