eFEX firmware  1.7.3
ATLAS l1-calo - electron and tau feature extraction firmware for eFEX boards

Back to eFEX documentation
watchdog_package_imp.vhd
1 library IEEE;
2 use IEEE.STD_LOGIC_1164.all;
3 
4 -- 2018/02/07: implementation timer constants
5 
6 package watchdog is
7 
8  constant TIMEBASE: natural := 31250 ;-- = 1 millisecond
9  constant DEFAULT_TIMEOUT: natural := 250 ;-- = 0.25 seconds
10 
11 end watchdog;
12