write_driver: Allow custom pin names

we don't want to propagate the write driver bl/br names out of the
write_driver_array. Thus the write_driver_array gets them named as
"bl"/"br" again.

Signed-off-by: Bastian Koppelmann <[email protected]>
This commit is contained in:
Bastian Koppelmann
2020-02-17 14:25:00 +01:00
parent c06cb2bfc2
commit 9a12b68680
4 changed files with 225 additions and 7 deletions
+2 -2
View File
@@ -38,11 +38,11 @@ class write_driver_array(design.design):
self.create_layout()
def get_bl_name(self):
bl_name = self.driver.get_bl_names()
bl_name = "bl"
return bl_name
def get_br_name(self):
br_name = self.driver.get_br_names()
br_name = "br"
return br_name
@property