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
|
# 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.*'
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue