GPIO Pins needs clone type.
This commit is contained in:
parent
5d1e9b793a
commit
77df75f4ed
@ -11,9 +11,15 @@ import sifive.blocks.devices.pinctrl.{Pin}
|
||||
// type of pad this connects to.
|
||||
class GPIOSignals[T <: Data] (pingen: ()=> T, c: GPIOParams) extends Bundle {
|
||||
val pins = Vec(c.width, pingen())
|
||||
|
||||
override def cloneType: this.type =
|
||||
this.getClass.getConstructors.head.newInstance(pingen, c).asInstanceOf[this.type]
|
||||
}
|
||||
|
||||
class GPIOPins[T <: Pin] (pingen: ()=> T, c: GPIOParams) extends GPIOSignals[T](pingen, c)
|
||||
class GPIOPins[T <: Pin] (pingen: ()=> T, c: GPIOParams) extends GPIOSignals[T](pingen, c) {
|
||||
override def cloneType: this.type =
|
||||
this.getClass.getConstructors.head.newInstance(pingen, c).asInstanceOf[this.type]
|
||||
}
|
||||
|
||||
object GPIOPinsFromPort {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user