de     

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
en:projects:la [2011/07/30 17:12] strijaren:projects:la [2011/08/04 13:01] – Analizer => Analyzer trygvis
Line 1: Line 1:
-===== Logic Analizer =====+===== Logic Analyzer =====
  
 The Logic Analyzer supports 32 channels with 6K sample memory. The included Java client application allows waveform exploration as well as SPI and I2C protocol analysis. The Logic Analyzer supports 32 channels with 6K sample memory. The included Java client application allows waveform exploration as well as SPI and I2C protocol analysis.
Line 42: Line 42:
 Here you see the test signals are generated in top.vhd: Here you see the test signals are generated in top.vhd:
  
-  * [0:7] 8-bit counter +  process (clock) begin 
-  * [8] clock +    if rising_edge(clock) then 
-  * [9] simple shift data +      if rst = '1' then 
 +        counter <= (others => '0'); 
 +        shift <= "10110000"; 
 +      else 
 +        counter <= counter + 1; 
 +        shift <= shift(6 downto 0) & shift(7); 
 +      end if; 
 +    end if; 
 +  end process; 
 +   
 +  input(7 downto 0) <= counter; 
 +  input(8) <= clk; 
 +  input(9) <= shift(0);
 
en/projects/la.txt · Last modified: 2017/09/19 10:29 by 188.162.64.48
 
Recent changes RSS feed Creative Commons License Powered by PHP Debian Driven by DokuWiki
[ZTEX Home] [Imprint] [Privacy policy]