Skip to content

Commit 1e8bf2a

Browse files
committed
doc: DRC stands for Design Rules Check in KiCAD
No code changes where done as part of this commit. Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
1 parent 181c90a commit 1e8bf2a

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/samples/generic_plot.kibot.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ preflight:
8080
# [boolean|dict=false] Use a boolean for simple cases or fine-tune its behavior.
8181
draw_stackup: true
8282
# DRC
83-
# Runs the DRC (Distance Rules Check) to ensure we have a valid PCB.
83+
# Runs the DRC (Design Rules Check) to ensure we have a valid PCB.
8484
# You need a valid *fp-lib-table* installed. If not KiBot will try to temporarily install the template.
8585
# This is a replacement for the *run_drc* preflight that needs KiCad 8 or newer.
8686
# GUI exclusions and schematic parity are supported .
@@ -141,7 +141,7 @@ preflight:
141141
before: 'Git hash: <'
142142
after: '>'
143143
# Run DRC (**Deprecated for KiCad 8**)
144-
# Runs the DRC (Distance Rules Check) to ensure we have a valid PCB.
144+
# Runs the DRC (Design Rules Check) to ensure we have a valid PCB.
145145
# For KiCad 8 use *drc*
146146
# The report file name is controlled by the global output pattern (%i=drc %x=txt).
147147
# Note that the KiCad 6+ *Test for parity between PCB and schematic* option is not supported.

kibot/pre_drc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
@pre_class
2222
class DRC(XRC): # noqa: F821
2323
""" DRC
24-
Runs the DRC (Distance Rules Check) to ensure we have a valid PCB.
24+
Runs the DRC (Design Rules Check) to ensure we have a valid PCB.
2525
You need a valid *fp-lib-table* installed. If not KiBot will try to temporarily install the template.
2626
This is a replacement for the *run_drc* preflight that needs KiCad 8 or newer.
2727
GUI exclusions and schematic parity are supported """

kibot/pre_run_drc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def __init__(self):
3939
@pre_class
4040
class Run_DRC(BasePreFlight): # noqa: F821
4141
""" Run DRC (**Deprecated for KiCad 8**)
42-
Runs the DRC (Distance Rules Check) to ensure we have a valid PCB.
42+
Runs the DRC (Design Rules Check) to ensure we have a valid PCB.
4343
For KiCad 8 use *drc*
4444
The report file name is controlled by the global output pattern (%i=drc %x=txt).
4545
Note that the KiCad 6+ *Test for parity between PCB and schematic* option is not supported.

0 commit comments

Comments
 (0)