Build square external pins instead of "flattened" ones.

* Change: In Cumulus/plugins.block.Block, for standalone block,
    the external Pin where created non-square, the "perpandicular"
    side made a half wire width. But in case the wire width was an
    odd number of physical grid, it was leading to offgrid screaming
    in the GDS driver.
      Now, just make them square...
This commit is contained in:
Jean-Paul Chaput 2021-10-16 13:44:51 +02:00
parent 4b9c095ae9
commit e80df4538d
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ class Side ( object ):
, pinPos.getX()
, pinPos.getY()
, gauge.getWireWidth()
, gauge.getWireWidth() // 2
, gauge.getWireWidth() # // 2
)
NetExternalComponents.setExternal( pin )
self.append( pin )