We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 432b507 commit bfcb36fCopy full SHA for bfcb36f
top.v
@@ -89,7 +89,7 @@ module nanoV_top (
89
wire uart_tx_start = is_data && connect_uart;
90
wire [7:0] uart_tx_data = reversed_data_out[7:0];
91
92
- uart_tx #(.CLK_HZ(12_000_000), .BIT_RATE(28_800)) i_uart_tx(
+ uart_tx #(.CLK_HZ(12_000_000), .BIT_RATE(93_750)) i_uart_tx(
93
.clk(cpu_clk),
94
.resetn(rstn),
95
.uart_txd(uart_txd),
@@ -98,7 +98,7 @@ module nanoV_top (
98
.uart_tx_busy(uart_tx_busy)
99
);
100
101
- uart_rx #(.CLK_HZ(12_000_000), .BIT_RATE(28_800)) i_uart_rx(
+ uart_rx #(.CLK_HZ(12_000_000), .BIT_RATE(93_750)) i_uart_rx(
102
103
104
.uart_rxd(uart_rxd),
0 commit comments