We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 337aa50 + fcfadb4 commit f9fb9fdCopy full SHA for f9fb9fd
src/main/scala/shell/xilinx/XilinxShell.scala
@@ -46,6 +46,9 @@ class XDC(val name: String)
46
def addDriveStrength(io: IOPin, drive: String) {
47
addConstraint(s"set_property DRIVE {${drive}} ${io.sdcPin}")
48
}
49
+ def addIbufLowPower(io: IOPin, value: String) {
50
+ addConstraint(s"set_property IBUF_LOW_PWR ${value} ${io.sdcPin}")
51
+ }
52
53
54
abstract class XilinxShell()(implicit p: Parameters) extends IOShell
0 commit comments