Don't arbitrarily exclude components from BOM

We already exclude components based on the schematic property when
generating the XML.  Don't make a hidden second pass in the python
netlist reader by default

Fixes https://gitlab.com/kicad/code/kicad/issues/9326
This commit is contained in:
Seth Hillbrand 2021-10-06 12:54:00 -07:00
parent 27765cd584
commit b5cd976845
1 changed files with 5 additions and 5 deletions

View File

@ -48,17 +48,17 @@ excluded_fields = [
# regular expressions which match component 'Reference' fields of components that # regular expressions which match component 'Reference' fields of components that
# are to be excluded from the BOM. # are to be excluded from the BOM.
excluded_references = [ excluded_references = [
'TP[0-9]+' # all test points # 'TP[0-9]+' # all test points
] ]
# regular expressions which match component 'Value' fields of components that # regular expressions which match component 'Value' fields of components that
# are to be excluded from the BOM. # are to be excluded from the BOM.
excluded_values = [ excluded_values = [
'MOUNTHOLE', # 'MOUNTHOLE',
'SCOPETEST', # 'SCOPETEST',
'MOUNT_HOLE', # 'MOUNT_HOLE',
'SOLDER_BRIDGE.*' # 'SOLDER_BRIDGE.*'
] ]