mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-05 07:03:07 +02:00
01a9f2ce2c
- bom/atrf.chr, bom/dk/digi-key.equ: added crystal and inductors for atusb - bom/atrf.equ: is C8051F326 C8051F326-GM - bom/atrf.inv, bom/atrf.sub: added printed component PAD_2mm - bom/atrf.sub: tentatively added translation for crystals (X*) - bom/atrf.sub: hack to turn rare 0.82 pF capacitors into more common 0.8 pF - bom/Makefile (all, vpath, spotless): added atusb - bom/Makefile (spotless): also remove cntr.par and cntr.ord
83 lines
1.5 KiB
Plaintext
83 lines
1.5 KiB
Plaintext
#SUB
|
|
|
|
# Taken from gta02-core. Left in the hacks, since we may use similar components
|
|
# in the future.
|
|
|
|
-> T=unknown
|
|
|
|
R[0-9P]* { # also handle RP...
|
|
-> T=R
|
|
VAL=$R -> R=$VAL
|
|
# -> TOL=5%
|
|
FN=$% -> TOL=$FN
|
|
}
|
|
|
|
RP[0-9]* {
|
|
-> T=RA
|
|
RP220[123] -> ARRAY=4
|
|
# the other parameters have already been taken care of by R*
|
|
}
|
|
|
|
C[0-9]* {
|
|
-> T=C
|
|
VAL=*F -> C=$VAL
|
|
FN=*V -> V=>=$FN
|
|
}
|
|
|
|
L[0-9]* {
|
|
-> T=L
|
|
VAL=*H -> L=$VAL
|
|
FN=*A -> I=>=$FN
|
|
}
|
|
|
|
B[0-9]* {
|
|
-> T=FILTER M=BEAD
|
|
VAL=$R -> R=$VAL
|
|
FN=*A -> I=$FN
|
|
FN=*R -> Rdc=$FN
|
|
FN=0.45R -> Rdc=450mR # hack
|
|
}
|
|
|
|
D[0-9]* {
|
|
-> T=D
|
|
VAL=*F { # heuristic to detect TVS
|
|
-> M=TVS
|
|
VAL=*F -> C=<=$VAL
|
|
FN=(*V)ac -> Vac=$FN:1
|
|
FN=(*V)dc -> Vdc=$FN:1
|
|
|
|
#
|
|
# Hack: some companies specify the class of varistors with Vdc = 9 V
|
|
# as Vac = 6.5 V while others use Vac = 7 V. Sometimes, Vac is even
|
|
# omitted entirely.
|
|
#
|
|
# Here, we work around the issue that Karmax use Vac = 6.5 V,
|
|
# Cooper/Bussmann use Vac = 7V if at all, and out schematics specify
|
|
# Vac = 6.5 V.
|
|
#
|
|
Vac=6.5V {
|
|
-> Vac=
|
|
-> Vdc=9V
|
|
}
|
|
}
|
|
}
|
|
|
|
VR[0-9]* -> T=D M=TVS {
|
|
VAL=$V -> Vdc=$VAL # neither clean nor consistent with the above
|
|
}
|
|
|
|
X[0-9]* {
|
|
-> T=XTAL
|
|
VAL=*Hz -> F=$VAL
|
|
FN=*F -> C=$FN
|
|
FN=*ppm -> TOL=<=$FN
|
|
}
|
|
|
|
|
|
T=C C=820fF -> C=800fF # we can't get 0.82 pF, but there's plenty of 0.8 pF :)
|
|
|
|
FP=meander -> VAL=meander
|
|
FP=uSD-Card -> VAL=uSD-Card
|
|
FP=PAD_120x60 -> VAL=PAD_120x60
|
|
FP=PAD_2mm -> VAL=PAD_2mm
|