mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2025-04-21 12:27:27 +03:00
Separate the test from the boom/ top-level directory.
- boom/test.mbq, boom/test.sub: moved to boom/test/ - boom/Makefile: moved all items related to running the test to test/Makefile
This commit is contained in:
65
boom/test/test.sub
Normal file
65
boom/test/test.sub
Normal file
@@ -0,0 +1,65 @@
|
||||
#SUB
|
||||
|
||||
# Taken from ben-wpan. Removed anything project-specific but the translation
|
||||
# rules.
|
||||
|
||||
-> T=unknown
|
||||
|
||||
R[0-9P]* { # also handle RP...
|
||||
-> T=R R=required
|
||||
VAL=$R -> R=$VAL
|
||||
# -> TOL=5%
|
||||
FN=$% -> TOL=$FN
|
||||
FN=$ppm/K -> TC=$FN
|
||||
}
|
||||
|
||||
RP[0-9]* {
|
||||
-> T=RA
|
||||
# the other parameters have already been taken care of by R*
|
||||
}
|
||||
|
||||
C[0-9]* {
|
||||
-> T=C C=required
|
||||
VAL=*F -> C=$VAL
|
||||
FN=*V -> V=>=$FN
|
||||
FN=$% -> TOL=$FN
|
||||
FN=(NP0|[XYZ][456789][ABCDEFPRSTUV]) -> M=$FN
|
||||
FN=(NP0|[XYZ][456789][ABCDEFPRSTUV])/(*) -> M=$FN:1 X=$FN:2
|
||||
}
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
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
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user