PoC.io.GlitchFilter

This module filters glitches on a wire. The high and low spike suppression cycle counts can be configured.

Entity Declaration:

 1  generic (
 2    HIGH_SPIKE_SUPPRESSION_CYCLES     : natural       := 5;
 3    LOW_SPIKE_SUPPRESSION_CYCLES      : natural       := 5
 4  );
 5  port (
 6    Clock   : in  std_logic;
 7    Input   : in  std_logic;
 8    Output  : out std_logic
 9  );
10end entity;