ctp_comm.ctp_comm_arc Architecture Reference

Interface to CTP (Central Trigger Processor). More...

Inheritance diagram for ctp_comm.ctp_comm_arc:

Inheritance graph
[legend]

List of all members.


Processes

ctp_set  ( CLK , RESET )
 setting outputs


Detailed Description

Interface to CTP (Central Trigger Processor).

This entity provides an interface to the ATLAS CTP to which we provide 9 bits of input information per LHC bunch. It also provides the possibility of setting the output to a particular value.

Definition at line 51 of file ctp_comm.vhd.


Member Function Documentation

[Process]
ctp_set ( CLK ,
RESET )

setting outputs

Definition at line 56 of file ctp_comm.vhd.

00056   ctp_set : process (CLK, RESET)
00057   begin  -- process ctp_set
00058     if RESET = '1' then                 -- asynchronous reset (active high)
00059       CTP_OUT <= (others => '0');
00060     elsif CLK'event and CLK = '1' then  -- rising clock edge
00061       if SET_EN = '1' then
00062         CTP_OUT <= SET_VAL;
00063       end if;
00064     end if;
00065   end process ctp_set;


The documentation for this class was generated from the following file:

Author: M.Niegl
Generated on Tue Nov 4 00:49:23 2008 for BCM-AAA by doxygen 1.5.7.1-20081012