PoC.io.uart.bclk

Todo

No documentation available.

old comments:

UART BAUD rate generator bclk_r = bit clock is rising bclk_x8_r = bit clock times 8 is rising

Entity Declaration:

 1  generic (
 2    CLOCK_FREQ    : FREQ      := 100 MHz;
 3    BAUDRATE      : BAUD      := 115200 Bd
 4  );
 5  port (
 6    clk       : in  std_logic;
 7    rst       : in  std_logic;
 8    bclk      : out std_logic;
 9    bclk_x8   : out std_logic
10  );
11end entity;