mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2025-04-21 12:27:27 +03:00
Avoid leading zeroes in resistance and capacitance values (except 0R)
- boom/lib/e12.inc: several rules produces mal-formed results with leading zeroes - boom/manu/Makefile.common (spotless): added new target to remove $(NAME).chr - boom/manu/Makefile.common (MALFORMED): test for leading zeroes, allowing only 0R as an exception - boom/manu/stackpole/stackpole.gen: catch values < 1 R and convert them to mR
This commit is contained in:
@@ -39,6 +39,7 @@ RNCP* -> T=R {
|
||||
|
||||
# Adjust multipliers
|
||||
|
||||
_R=R(???) -> _R=${_R:1}m
|
||||
_R=(*)R(*) -> _R=0$_R:1.$_R:2
|
||||
_R=(*)K(*) -> _R=$_R:1.${_R:2}k
|
||||
_R=(*)M(*) -> _R=$_R:1.${_R:2}M
|
||||
|
||||
Reference in New Issue
Block a user