PoC.misc.StrobeLimiter
Todo
No documentation available.
Entity Declaration:
1entity misc_StrobeLimiter is
2 generic (
3 MIN_STROBE_PERIOD_CYCLES : positive := 16;
4 INITIAL_LOCKED : boolean := FALSE;
5 INITIAL_STROBE : boolean := TRUE
6 );
7 port (
8 Clock : in std_logic;
9 Input_Strobe : in std_logic;
10 Output_Strobe : out std_logic
11 );
12end entity;