1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-07-05 02:22:21 +03:00

Adjusted parsing of component values. Now all capacitors get properly selected.

- bom/atrf.sub: adjusted setting of capacitance and inductivity to
  conventions used in these projects
This commit is contained in:
Werner Almesberger 2010-09-12 16:43:33 -03:00
parent 66e5aa5a90
commit 636011c23d

View File

@ -1,6 +1,6 @@
#SUB #SUB
# Taked from gta02-core. Left in the hacks, since we may use similar components # Taken from gta02-core. Left in the hacks, since we may use similar components
# in the future. # in the future.
-> T=unknown -> T=unknown
@ -20,13 +20,13 @@ RP[0-9]* {
C[0-9]* { C[0-9]* {
-> T=C -> T=C
VAL=$F -> C=$VAL VAL=*F -> C=$VAL
FN=*V -> V=>=$FN FN=*V -> V=>=$FN
} }
L[0-9]* { L[0-9]* {
-> T=L -> T=L
VAL=$H -> L=$VAL VAL=*H -> L=$VAL
FN=*A -> I=>=$FN FN=*A -> I=>=$FN
} }