Commit 5957cd57 authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

fix

parent b3cd4da4
......@@ -521,6 +521,10 @@ class EzynqMIO:
for signal in iface:
pin=iface[signal]
#see if the same pin was already used in one or several interfaces
if pin['PIN']==63:
continue
if mio[pin['PIN']]['USED_IN'] : #need to add len() >0?
for used_in in mio[pin['PIN']]['USED_IN']:
print ('MIO pin '+str(pin['PIN'])+" is previously used by interface "+used_in['NAME']+
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment