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 2 3 4 5 6 7 8 9 10 11 12 | entity uart_bclk is
generic (
CLOCK_FREQ : FREQ := 100 MHz;
BAUDRATE : BAUD := 115200 Bd
);
port (
clk : in std_logic;
rst : in std_logic;
bclk : out std_logic;
bclk_x8 : out std_logic
);
end entity;
|