PoC.io.uart.tx
UART Transmitter: 1 Start + 8 Data + 1 Stop
Entity Declaration:
1-- limitations under the License.
2-- =============================================================================
3
4library IEEE;
5use IEEE.std_logic_1164.all;
6
7use work.uart.all;
8
9entity uart_tx is
10 generic(
11 PARITY : T_UART_PARITY_MODE := PARITY_NONE --PARITY_EVEN, PARITY_ODD,PARITY_NONE
12 );
13 port (
14 -- Global Control
15 clk : in std_logic;
16 rst : in std_logic;