1
0

GPIO/SPI/I2C: Add sync stages in place of dummy variable since we need them and they are more useful.

This commit is contained in:
Megan Wachs
2017-06-12 17:53:08 -07:00
parent d4bb8a77ea
commit 7c118790cb
2 changed files with 4 additions and 4 deletions

View File

@ -29,8 +29,8 @@ trait HasPeripheryUARTBundle {
uarts.foreach { _.rxd := UInt(1) }
}
def UARTtoGPIOPins(dummy: Int = 1): Seq[UARTGPIOPort] = uarts.map { u =>
val pin = Module(new UARTGPIOPort)
def UARTtoGPIOPins(sync_stages: Int = 0): Seq[UARTGPIOPort] = uarts.map { u =>
val pin = Module(new UARTGPIOPort(sync_stages))
pin.io.uart <> u
pin
}