From: Andreas Neiser Date: Mon, 2 Mar 2015 12:29:02 +0000 (+0100) Subject: Lets try without the state debug stuff X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=0354f969565a0ed1756c43904b56bedcebab9d06;p=trb3.git Lets try without the state debug stuff --- diff --git a/ADC/source/adc_ad9219.vhd b/ADC/source/adc_ad9219.vhd index bc251c5..ae9e2c7 100644 --- a/ADC/source/adc_ad9219.vhd +++ b/ADC/source/adc_ad9219.vhd @@ -324,7 +324,7 @@ begin proc_debug : process begin wait until rising_edge(clk_rd); - state_qq(i) <= state_q(i); + --state_qq(i) <= state_q(i); counter_q(i) <= counter(i); DEBUG(i * 32 + 31 downto i * 32 + 4) <= std_logic_vector(counter_q(i)); case state_qq(i) is diff --git a/ADC/source/adc_processor_cfd.vhd b/ADC/source/adc_processor_cfd.vhd index ffa7c23..45039ea 100644 --- a/ADC/source/adc_processor_cfd.vhd +++ b/ADC/source/adc_processor_cfd.vhd @@ -228,7 +228,7 @@ begin end process; statebits <= std_logic_vector(to_unsigned(state_t'pos(state), 8)) when rising_edge(CLK_SYS); - statebits_adc <= statebits when rising_edge(CLK_ADC); + --statebits_adc <= statebits when rising_edge(CLK_ADC); PROC_DEBUG_BUFFER : process variable c : integer range 0 to 3;