Disable receiver input when not enabled

This commit is contained in:
Andrew Kay
2020-07-09 17:21:30 -05:00
parent 28fc1c0cef
commit 32419dd760

View File

@@ -104,7 +104,7 @@ module top (
.CLOCKS_PER_BIT(16) .CLOCKS_PER_BIT(16)
) coax_rx ( ) coax_rx (
.clk(clk_38mhz), .clk(clk_38mhz),
.rx(rx_1), .rx(rx_enable ? rx_1 : 0),
.reset(reset), .reset(reset),
.active(rx_active), .active(rx_active),
.error(rx_error), .error(rx_error),