aboutsummaryrefslogtreecommitdiff
path: root/src/ee/kicad
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2019-05-29 18:58:14 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2019-05-29 18:58:14 +0200
commitee2b510b37d2832a67bb13cf27cbe520adff6b71 (patch)
treebb693c627fbe999b48bf301809222c3f039cca41 /src/ee/kicad
parent75e5bbd0679f4212ad6e9a402c9c68b7b5f40cae (diff)
downloadee-python-ee2b510b37d2832a67bb13cf27cbe520adff6b71.tar.gz
ee-python-ee2b510b37d2832a67bb13cf27cbe520adff6b71.tar.bz2
ee-python-ee2b510b37d2832a67bb13cf27cbe520adff6b71.tar.xz
ee-python-ee2b510b37d2832a67bb13cf27cbe520adff6b71.zip
kicad.dl: Classifying net-ties and test points as such.
pn-part-search-list: Better value-based searches. Better filtering of irrelevant parts.
Diffstat (limited to 'src/ee/kicad')
-rw-r--r--src/ee/kicad/make_bom.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ee/kicad/make_bom.py b/src/ee/kicad/make_bom.py
index de1412c..ded3e5f 100644
--- a/src/ee/kicad/make_bom.py
+++ b/src/ee/kicad/make_bom.py
@@ -66,7 +66,7 @@ def work(sch, out: Path, project_uuid: UUID, new_mode, pretty):
part.facts.add(sch_fact_types.footprint_name, footprint)
for f in c.named_fields:
- if f.is_custom and f.value is not None and len(f.value):
+ if f.is_custom and f.value is not None and len(f.value) and f.value != "~":
part.facts.add(sch_fact_types.make_custom_field_key(f.name), f.value)
parts.add_entry(part, True)