]> jspc29.x-matter.uni-frankfurt.de Git - trbnet.git/commitdiff
fix timer in ECP5 media interface
authorJan Michel <michel@physik.uni-frankfurt.de>
Thu, 15 Feb 2024 11:46:43 +0000 (12:46 +0100)
committerJan Michel <michel@physik.uni-frankfurt.de>
Thu, 15 Feb 2024 11:46:43 +0000 (12:46 +0100)
media_interfaces/med_ecp5_sfp_sync_2.vhd

index 57c09d7000387234e528a9f384f9145b4c6bbb56..5cb2354c263b4e79eabe7747144be3c3543b5723 100644 (file)
@@ -397,7 +397,7 @@ THE_MED_CONTROL : entity work.med_sync_control
   
   PROC_TIMER : process begin
     wait until rising_edge(SYSCLK);
-    if stat_fsm_reset_i(i*32+8) = '1' or stat_fsm_reset_i(i*32+9) = '1' then
+    if stat_fsm_reset_i(i*32+8) = '0' or stat_fsm_reset_i(i*32+9) = '0' then
       timer(i) <= (others => '0');
     else 
       timer(i) <= timer(i) + 1;