diff --git a/lib/uart/uart_xil.vhd b/lib/uart/uart_xil.vhd index 1ad2ce7..989bd55 100644 --- a/lib/uart/uart_xil.vhd +++ b/lib/uart/uart_xil.vhd @@ -42,6 +42,7 @@ baud_timer: process(clk) begin if rising_edge(clk) then + en_16_x_baud <= '0'; if rst = '1' then baud_count <= (others => '0'); elsif baud_count = ctrl.baudrate then @@ -49,7 +50,6 @@ begin en_16_x_baud <= '1'; else baud_count <= baud_count + 1; - en_16_x_baud <= '0'; end if; end if; end process;