]> jspc29.x-matter.uni-frankfurt.de Git - trbnet.git/commitdiff
*** empty log message ***
authorhadeshyp <hadeshyp>
Wed, 29 Sep 2010 15:26:11 +0000 (15:26 +0000)
committerhadeshyp <hadeshyp>
Wed, 29 Sep 2010 15:26:11 +0000 (15:26 +0000)
special/handler_lvl1.vhd

index e4ed5ce3645509dd01664eb20740792ec754fe2d..a38ae95cdad4a3d9856b8ba8c5d11119bd435fc5 100644 (file)
@@ -77,7 +77,6 @@ signal CURRENT_STATE, NEXT_STATE: STATES;
 signal toc_ce               : std_logic; -- count enable for TRG/LVL1 timeout
 signal next_toc_ce          : std_logic;
 signal toc_save             : std_logic; -- count enable for TRG/LVL1 timeout
-signal next_toc_save        : std_logic;
 signal toc_rst              : std_logic; -- reset for timout
 signal next_toc_rst         : std_logic;
 signal trg_rel              : std_logic; -- release LVL1 channel
@@ -329,7 +328,6 @@ begin
                        CURRENT_STATE  <= NEXT_STATE;
                        toc_ce         <= next_toc_ce;
                        toc_rst        <= next_toc_rst;
-                       toc_save       <= next_toc_save;
                        trg_rel        <= next_trg_rel;
                        trg_rst        <= next_trg_rst;
                        val_trg        <= next_val_trg;
@@ -349,7 +347,6 @@ begin
        NEXT_STATE       <= IDLE; -- avoid latches
        next_toc_ce      <= '0';
        next_toc_rst     <= '0';
-  next_toc_save     <= toc_save;
        next_trg_rel     <= '0';
        next_trg_rst     <= '0';
        next_val_trg     <= '0';
@@ -397,11 +394,10 @@ begin
                                        next_spurious_trg <= '1';
                                end if;
 -- was commented out
-                       elsif( timeout_found = '1' ) then
+                       --elsif( timeout_found = '1' ) then
                                -- LVL1 did not arrive in time
-                               NEXT_STATE       <= TRGFND; --TOCFND;  -- gk 29.09.10
-                               next_toc_save    <= '1';
-                               next_toc_rst     <= '1';
+                               --NEXT_STATE       <= TRGFND; --TOCFND;  -- gk 29.09.10
+                               --next_toc_rst     <= '1';  -- gk 29.09.10
                                --next_trg_rst     <= '1';  -- gk 21.09.10
                                --next_invalid_trg <= '1';
 ----------------------------