Merge pull request #1187 from fjullien/efinix_fix
efinix: fix pull up/down constraint
This commit is contained in:
commit
ccd3ab17be
|
@ -104,6 +104,7 @@ class EfinixPlatform(GenericPlatform):
|
||||||
if o.misc in ["WEAK_PULLUP", "WEAK_PULLDOWN"]:
|
if o.misc in ["WEAK_PULLUP", "WEAK_PULLDOWN"]:
|
||||||
prop = "PULL_OPTION"
|
prop = "PULL_OPTION"
|
||||||
val = o.misc
|
val = o.misc
|
||||||
|
ret.append((prop, val))
|
||||||
if "DRIVE_STRENGTH" in o.misc:
|
if "DRIVE_STRENGTH" in o.misc:
|
||||||
prop = "DRIVE_STRENGTH"
|
prop = "DRIVE_STRENGTH"
|
||||||
val = o.misc.split("=")[1]
|
val = o.misc.split("=")[1]
|
||||||
|
|
Loading…
Reference in New Issue