Hello,
I’m designing a high-impedance board where I want to remove the solder mask in certain places. This works well by placing e.g. polygons on the *.Mask layers.
However, the DRC (rightfully) flags lots of “… solder mask aperture bridges items with different nets”. Rather than disabling the rule globally I’d like to specify an exception for the specific areas.
I have accomplished this for silk screen errors using the rule
(rule testrule
(severity ignore)
(condition "A.intersectsArea('silk_clip_ok')")
(constraint silk_clearance)
)
where silk_clip_ok
are the rule areas where I don’t want the check to be performed. However, I couldn’t find the constraint
name for disabling the solder mask aperture bridge rule and therefore created a feature request in the issue tracker (see Issue 21732).
I was referred to the severity
clause and the issue was closed, but I do not understand the response. I know that severity ignore
can be used to avoid flagging the errors (like above), but what constraint matches the solder mask aperture check?
Before bothering the devs again, I decided to ask here, if anyone has a clue for me.