From b949324d5aa031e405e0f2c8ad6bb318edba3e33 Mon Sep 17 00:00:00 2001 From: Jerry Zhao Date: Fri, 6 Oct 2023 17:55:14 -0700 Subject: [PATCH] Fix FireSim UARTBridge --- generators/firechip/src/main/scala/BridgeBinders.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generators/firechip/src/main/scala/BridgeBinders.scala b/generators/firechip/src/main/scala/BridgeBinders.scala index a709ee4b..7982a75d 100644 --- a/generators/firechip/src/main/scala/BridgeBinders.scala +++ b/generators/firechip/src/main/scala/BridgeBinders.scala @@ -86,7 +86,7 @@ class WithNICBridge extends HarnessBinder({ class WithUARTBridge extends HarnessBinder({ case (th: FireSim, port: UARTPort) => val uartSyncClock = th.harnessClockInstantiator.requestClockMHz("uart_clock", port.freqMHz) - UARTBridge(uartSyncClock, port.io, th.harnessBinderReset.asBool)(th.p) + UARTBridge(uartSyncClock, port.io, th.harnessBinderReset.asBool, port.freqMHz)(th.p) }) class WithBlockDeviceBridge extends HarnessBinder({