Skip to content

Commit 7b9c592

Browse files
authored
Merge pull request #4045 from ashnaaseth2325-oss/fix/apb-uart-rx-threshold
fix: APB_UART RX FIFO threshold uses wrong register
2 parents bac20e6 + 843726a commit 7b9c592

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flow/designs/src/chameleon/IPs/APB_UART.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ module APB_UART(
142142
32'hDEADDEAD;
143143

144144
wire tx_less_threshold = (tx_level < TXFIFOTR);
145-
wire rx_more_threshold = (rx_level > TXFIFOTR);
145+
wire rx_more_threshold = (rx_level > RXFIFOTR);
146146

147147

148148
assign uart_irq = IMASK[0] & ( (~rx_empty & IMASK[2]) |

0 commit comments

Comments
 (0)