1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2025-04-21 12:27:27 +03:00

Added more resistor choices to BOM processor.

- bom/Makefile, bom/stackpole.chr: added Stackpole 0R 0402 resistor
- bom/Makefile, bom/panasonic.gen: added Panasonic 5% resistors
This commit is contained in:
Werner Almesberger
2010-09-12 18:46:43 -03:00
parent 499df0ea40
commit 6b5d239bf5
3 changed files with 42 additions and 2 deletions

View File

@@ -4,8 +4,8 @@ KITS=1
EQU=atrf.equ dk/digi-key.equ
INV=atrf.inv dk/digi-key.inv
GEN=avx.gen johanson.gen murata.gen tdk.gen yageo.gen
CHR=$(GEN:%.gen=%.chr)
GEN=avx.gen johanson.gen murata.gen panasonic.gen tdk.gen yageo.gen
CHR=$(GEN:%.gen=%.chr) stackpole.chr
.PHONY: all again show-atusd spotless
@@ -37,6 +37,10 @@ murata.chr: dk/digi-key.equ murata.gen
$(BOOM) gen2chr MURATA dk/digi-key.equ murata.gen >$@ || \
{ rm -f $@; exit 1; }
panasonic.chr: dk/digi-key.equ panasonic.gen
$(BOOM) gen2chr PANASONIC dk/digi-key.equ panasonic.gen >$@ || \
{ rm -f $@; exit 1; }
tdk.chr: dk/digi-key.equ tdk.gen
$(BOOM) gen2chr TDK dk/digi-key.equ tdk.gen >$@ || \
{ rm -f $@; exit 1; }