From b65e9922561dac70827156e1fff3db20fa1eee17 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Sun, 31 Mar 2013 02:36:27 -0700 Subject: [PATCH] Compute solder mask from process clearance in pad_mm_clear Instead of using the user specified clearance (which is often zero), use the process clearance to make sure there is sufficient solder mask clearance around the pad. If the user really wants zero mask, they can use pad_mm_clear_mask Signed-off-by: Keith Packard --- packages/footprint.5c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/footprint.5c b/packages/footprint.5c index 704ae1b..3fd921c 100644 --- a/packages/footprint.5c +++ b/packages/footprint.5c @@ -115,7 +115,7 @@ namespace Footprint { y2 = center_y + (height - width) / 2; } - real mask = thickness + clearance / 2; + real mask = thickness + process_clearance / 2; printf (" Pad["); printf (" %6d %6d %6d %6d", -- 2.47.2