dss_comm.dss_comm_arc Architecture Reference

Interface to DSS (Detector Safety System) This entity provides the two redundant signals to the DSS. Outputs are settable from the outside. More...

Inheritance diagram for dss_comm.dss_comm_arc:

Inheritance graph
[legend]

List of all members.


Processes

abort_set  ( CLK , RESET )
 setting abort
warn_set  ( CLK , RESET )
 setting warning


Detailed Description

Interface to DSS (Detector Safety System) This entity provides the two redundant signals to the DSS. Outputs are settable from the outside.

Definition at line 51 of file dss_comm.vhd.


Member Function Documentation

[Process]
abort_set ( CLK ,
RESET )

setting abort

Definition at line 56 of file dss_comm.vhd.

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

[Process]
warn_set ( CLK ,
RESET )

setting warning

Definition at line 70 of file dss_comm.vhd.

00070   warn_set : process (CLK, RESET)
00071   begin  -- process ctp_set
00072     if RESET = '1' then                 -- asynchronous reset (active high)
00073       DSS_WARNING_1 <= '0';
00074       DSS_WARNING_2 <= '0';
00075     elsif CLK'event and CLK = '1' then  -- rising clock edge
00076       if SET_EN(0) = '1' then
00077         DSS_WARNING_1 <= SET(0);
00078         DSS_WARNING_2 <= SET(0);
00079       end if;
00080     end if;
00081   end process warn_set;


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

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