]> jspc29.x-matter.uni-frankfurt.de Git - trbnet.git/commitdiff
fixed write bug in SCI reader
authorMichael Boehmer <mboehmer@ph.tum.de>
Sun, 20 Mar 2022 07:35:22 +0000 (08:35 +0100)
committerMichael Boehmer <mboehmer@ph.tum.de>
Sun, 20 Mar 2022 07:35:22 +0000 (08:35 +0100)
media_interfaces/sync/sci_reader.vhd

index 79221ae4b6bcc2ec98267da9d148229c956c2bb8..6aed2f8f857f497153ac734ac0f44fd2d6245681 100644 (file)
@@ -111,13 +111,13 @@ begin
         sci_state     <= SCTRL_WAIT;
       end if;
     when SCTRL_WAIT   =>
+      next_sci_wr     <= '0';
       sci_state       <= SCTRL_WAIT2;
     when SCTRL_WAIT2  =>
       sci_state       <= SCTRL_FINISH;
     when SCTRL_FINISH =>
       BUS_TX.data(7 downto 0) <= SCI_RDDATA;
       BUS_TX.ack      <= '1';
-      next_sci_wr     <= '0';
       SCI_RD          <= '0';
       sci_state       <= IDLE;