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:
parent
27765cd584
commit
b5cd976845
|
@ -48,17 +48,17 @@ excluded_fields = [
|
|||
# regular expressions which match component 'Reference' fields of components that
|
||||
# are to be excluded from the BOM.
|
||||
excluded_references = [
|
||||
'TP[0-9]+' # all test points
|
||||
# 'TP[0-9]+' # all test points
|
||||
]
|
||||
|
||||
|
||||
# regular expressions which match component 'Value' fields of components that
|
||||
# are to be excluded from the BOM.
|
||||
excluded_values = [
|
||||
'MOUNTHOLE',
|
||||
'SCOPETEST',
|
||||
'MOUNT_HOLE',
|
||||
'SOLDER_BRIDGE.*'
|
||||
# 'MOUNTHOLE',
|
||||
# 'SCOPETEST',
|
||||
# 'MOUNT_HOLE',
|
||||
# 'SOLDER_BRIDGE.*'
|
||||
]
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue