Merge pull request #137 from mixelpixx/fix/pwr-flag-orphan-wire-anchor

Treat PWR_FLAG anchors as connected in orphan-wire detection
This commit is contained in:
Eugene Mikhantyev
2026-04-26 16:08:31 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ class BoardLayerCommands:
# Enable inner copper layers by increasing copper layer count (KiCAD 9.0 API) # Enable inner copper layers by increasing copper layer count (KiCAD 9.0 API)
if position == "inner": if position == "inner":
current_count = self.board.GetCopperLayerCount() current_count = self.board.GetCopperLayerCount()
needed_count = 2 + number # F.Cu + B.Cu + inner layers needed_count = 2 + (number or 0) # F.Cu + B.Cu + inner layers
if needed_count > current_count: if needed_count > current_count:
self.board.SetCopperLayerCount(needed_count) self.board.SetCopperLayerCount(needed_count)

View File

@@ -236,7 +236,7 @@ def _parse_virtual_connections(
if not hasattr(symbol, "property") or not hasattr(symbol.property, "Reference"): if not hasattr(symbol, "property") or not hasattr(symbol.property, "Reference"):
continue continue
ref = symbol.property.Reference.value ref = symbol.property.Reference.value
if not ref.startswith("#PWR"): if not (ref.startswith("#PWR") or ref.startswith("#FLG")):
continue continue
if ref.startswith("_TEMPLATE"): if ref.startswith("_TEMPLATE"):
continue continue