From 5f3623b8dd26b37b9ea6011bf71467b2a608b5ff Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Mon, 20 May 2019 22:46:45 +0200 Subject: common_fact_types: Adding key for footprint. functions: o Changing the structure of the functions, they're now factories that will be given kwargs and must return a function that processes the parts. o Adding new function to default set; 'map_footprint' that maps the KiCAD footprints to common footprints. part_validate_parts: Using only common keys. --- src/ee/tools/templates/build.ninja.j2 | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'src/ee/tools/templates') diff --git a/src/ee/tools/templates/build.ninja.j2 b/src/ee/tools/templates/build.ninja.j2 index 1f9ba35..0aaa76f 100644 --- a/src/ee/tools/templates/build.ninja.j2 +++ b/src/ee/tools/templates/build.ninja.j2 @@ -26,12 +26,15 @@ rule pn-part-search-list command = $ee pn-part-search-list --in $in --out $out --supplier $supplier rule part-apply-function - command = $ee part-apply-function --in $in --out $out $functions + command = $ee part-apply-function --in $in --out $out $functions $arguments rule part-find-requirements description = part-find-requirements command = $ee part-find-requirements --in $in --out $out +rule part-validate-parts + command = $ee part-validate-parts --in $in --out $out + rule digikey-search-parts description = digikey-search-parts command = $ee digikey-search-parts --in $in --out $out @@ -83,8 +86,15 @@ build ee/sch.xml: part-apply-function ee/kicad-sch.xml {%- else %} functions = --function ee.kicad.functions.default {%- endif %} +{%- if project.cfg["kicad-project"]["function-arguments"] %} + arguments = --argument {{ project.cfg["kicad-project"]["function-arguments"] }} +{%- else %} + arguments = --argument "" +{%- endif %} {%- endif %} +build $report_dir/part-validate-parts.rst: part-validate-parts ee/sch.xml + build ee/requirements.xml: part-find-requirements ee/sch.xml {% for s in distributors %} -- cgit v1.2.3