mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-05 15:55:20 +02:00
f2824f1d35
- bom/lib/captol.inc: translation of all capacitor tolerance values - bom/lib/e12.inc: translation of E12 values (for pico-based scale for now) - bom/avx.gen, bom/johanson.gen, bom/murata.gen, bom/tdk.gen, bom/yageo.gen: include libraries instead of copying the same tables
20 lines
583 B
PHP
20 lines
583 B
PHP
# E12 scale, base multiplier is 10^-12 (pico)
|
|
|
|
_E12_P=(??)8 -> _E12=${_E12_P:1}0f
|
|
_E12_P=(?)(?)9 -> _E12=$_E12_P:1.${_E12_P:2}p
|
|
_E12_P=(??)0 -> _E12=${_E12_P:1}p
|
|
_E12_P=(??)1 -> _E12=${_E12_P:1}0p
|
|
_E12_P=(?)(?)2 -> _E12=$_E12_P:1.${_E12_P:2}n
|
|
_E12_P=(??)3 -> _E12=${_E12_P:1}n
|
|
_E12_P=(??)4 -> _E12=${_E12_P:1}0n
|
|
_E12_P=(?)(?)5 -> _E12=$_E12_P:1.${_E12_P:2}u
|
|
_E12_P=(??)6 -> _E12=${_E12_P:1}u
|
|
_E12_P=(??)7 -> _E12=${_E12_P:1}0u
|
|
_E12_P=(?)R(?) -> _E12=$_E12_P:1.${_E12_P:2}p # strange
|
|
|
|
# remove trailing zeroes
|
|
|
|
_E12=(*).0([fpnu]) -> _E12=$_E12:1$_E12:2
|
|
_E12=(*).0 -> _E12=$_E12:1
|
|
|