All Downloads are FREE. Search and download functionalities are using the official Maven repository.

spinal.scalaTest.UartTester.scala Maven / Gradle / Ivy

The newest version!
package spinal.scalaTest


import spinal._
import spinal.lib._
import spinal.lib.com.uart.{UartCtrl, UartCtrlIo}

class UartTester extends Component {
  val io = new Bundle {
    val uart = new UartCtrlIo()
  }
  val uartCtrl = new UartCtrl()
  io.uart <> uartCtrl.io
}



class UartTesterBoot extends SpinalTesterBase {
  override def getName: String = "UartTester"
  override def createToplevel: Component = new UartTester
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy