From 2799faf52bf393c8bc3cf1f8e4763548a39b25eb Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Fri, 18 Sep 2020 22:39:30 +0100 Subject: [PATCH] Add syntax example using "not". Fixes https://gitlab.com/kicad/code/kicad/issues/5694 --- pcbnew/dialogs/panel_setup_rules_help.txt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pcbnew/dialogs/panel_setup_rules_help.txt b/pcbnew/dialogs/panel_setup_rules_help.txt index 240e543f42..c8ba59b5fc 100644 --- a/pcbnew/dialogs/panel_setup_rules_help.txt +++ b/pcbnew/dialogs/panel_setup_rules_help.txt @@ -35,12 +35,16 @@ pad hole graphic text zone (rule HV (constraint clearance (min 1.5mm)) - (condition "A.netclass == 'HV'")) + (condition "A.NetClass == 'HV'")) (rule HV_HV # wider clearance between HV tracks (constraint clearance (min "1.5mm + 2.0mm")) - (condition "A.netclass == 'HV' && B.netclass == 'HV'")) + (condition "A.NetClass == 'HV' && B.NetClass == 'HV'")) + +(rule HV_unshielded + (constraint clearance (min 2mm)) + (condition "A.NetClass == 'HV' && not A.insideArea('Shield*'))) # ---- Notes