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