diff options
Diffstat (limited to 'usrp2/control_lib/settings_readback_bus_fifo_ctrl.v')
-rw-r--r-- | usrp2/control_lib/settings_readback_bus_fifo_ctrl.v | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usrp2/control_lib/settings_readback_bus_fifo_ctrl.v b/usrp2/control_lib/settings_readback_bus_fifo_ctrl.v index 89efd2203..24c618d79 100644 --- a/usrp2/control_lib/settings_readback_bus_fifo_ctrl.v +++ b/usrp2/control_lib/settings_readback_bus_fifo_ctrl.v @@ -251,7 +251,8 @@ module settings_readback_bus_fifo_ctrl end WAIT_CMD: begin - if (now || late) out_state <= ACTION_EVENT; + if (clear) out_state <= LOAD_CMD; + else if (now || late) out_state <= ACTION_EVENT; end ACTION_EVENT: begin // poking and peeking happens here! |