Browse Source

Check reference designator type when comparing comp

example: prevents a 10K NTC resistor from getting grouped with a 10K SMD resistor
pull/16/head
Frank Severinsen 6 years ago
committed by Ian McInerney
parent
commit
9ca61b50b6
  1. 4
      eeschema/plugins/python_scripts/kicad_netlist_reader.py

4
eeschema/plugins/python_scripts/kicad_netlist_reader.py

@ -21,6 +21,7 @@ import sys
import xml.sax as sax
import re
import pdb
import string
#-----<Configure>----------------------------------------------------------------
@ -335,7 +336,8 @@ class comp():
result = False
if self.getValue() == other.getValue():
if self.getFootprint() == other.getFootprint():
result = True
if self.getRef().rstrip(string.digits) == other.getRef().rstrip(string.digits):
result = True
return result
def setLibPart(self, part):

Loading…
Cancel
Save