Skip to content

Commit bfcb36f

Browse files
committed
Bit rate power of 2 divisor
1 parent 432b507 commit bfcb36f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

top.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ module nanoV_top (
8989
wire uart_tx_start = is_data && connect_uart;
9090
wire [7:0] uart_tx_data = reversed_data_out[7:0];
9191

92-
uart_tx #(.CLK_HZ(12_000_000), .BIT_RATE(28_800)) i_uart_tx(
92+
uart_tx #(.CLK_HZ(12_000_000), .BIT_RATE(93_750)) i_uart_tx(
9393
.clk(cpu_clk),
9494
.resetn(rstn),
9595
.uart_txd(uart_txd),
@@ -98,7 +98,7 @@ module nanoV_top (
9898
.uart_tx_busy(uart_tx_busy)
9999
);
100100

101-
uart_rx #(.CLK_HZ(12_000_000), .BIT_RATE(28_800)) i_uart_rx(
101+
uart_rx #(.CLK_HZ(12_000_000), .BIT_RATE(93_750)) i_uart_rx(
102102
.clk(cpu_clk),
103103
.resetn(rstn),
104104
.uart_rxd(uart_rxd),

0 commit comments

Comments
 (0)