mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
build/generic_platform/ConnectorManager: allows to search recursively pins through connectors dictionary
This commit is contained in:
parent
d3368d7fab
commit
fc0f0be679
1 changed files with 4 additions and 1 deletions
|
@ -168,7 +168,10 @@ class ConnectorManager:
|
|||
if pn.isdigit():
|
||||
pn = int(pn)
|
||||
|
||||
r.append(self.connector_table[conn][pn])
|
||||
conn_pn = self.connector_table[conn][pn]
|
||||
if ":" in conn_pn:
|
||||
conn_pn = self.resolve_identifiers([conn_pn])[0]
|
||||
r.append(conn_pn)
|
||||
else:
|
||||
r.append(identifier)
|
||||
|
||||
|
|
Loading…
Reference in a new issue