Route ring pad wires, even if there is no pad on that side.
This commit is contained in:
parent
0bc7b3203a
commit
e38e3f46f2
|
@ -437,6 +437,10 @@ class Side ( object ):
|
||||||
startCorner += self.conf.ioPadHeight
|
startCorner += self.conf.ioPadHeight
|
||||||
stopCorner -= self.conf.ioPadHeight
|
stopCorner -= self.conf.ioPadHeight
|
||||||
if len(self.pads) == 0:
|
if len(self.pads) == 0:
|
||||||
|
for irail in range(len(self.corona.padRails)):
|
||||||
|
self._createSegment( self.corona.padRails[ irail ]
|
||||||
|
, startCorner
|
||||||
|
, stopCorner )
|
||||||
return
|
return
|
||||||
padAb = self.conf.getInstanceAb( self.pads[0][1] )
|
padAb = self.conf.getInstanceAb( self.pads[0][1] )
|
||||||
for irail in range(len(self.corona.padRails)):
|
for irail in range(len(self.corona.padRails)):
|
||||||
|
|
Loading…
Reference in New Issue