Changed the readspice (annotation) script so that it uses the exact

label name with "port make", resolving any issues that might arise
if the label overlaps another.
This commit is contained in:
Tim Edwards 2020-11-12 13:59:22 -05:00
parent b0616e9f0e
commit cd3d765f9d
1 changed files with 2 additions and 2 deletions

View File

@ -182,7 +182,7 @@ proc readspice {netfile} {
if {[string tolower $testpin] == [string tolower $pin]} {
goto $testpin
set pinidx -1
port make $n
port $testpin make $n
break
}
}
@ -199,7 +199,7 @@ proc readspice {netfile} {
} else {
set layer [goto $pin]
if {$layer != ""} {
port make $n
port $pin make $n
incr n
set changed true
}