Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/samples/generic_plot.kibot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ preflight:
# [boolean|dict=false] Use a boolean for simple cases or fine-tune its behavior.
draw_stackup: true
# DRC
# Runs the DRC (Distance Rules Check) to ensure we have a valid PCB.
# Runs the DRC (Design Rules Check) to ensure we have a valid PCB.
# You need a valid *fp-lib-table* installed. If not KiBot will try to temporarily install the template.
# This is a replacement for the *run_drc* preflight that needs KiCad 8 or newer.
# GUI exclusions and schematic parity are supported .
Expand Down Expand Up @@ -141,7 +141,7 @@ preflight:
before: 'Git hash: <'
after: '>'
# Run DRC (**Deprecated for KiCad 8**)
# Runs the DRC (Distance Rules Check) to ensure we have a valid PCB.
# Runs the DRC (Design Rules Check) to ensure we have a valid PCB.
# For KiCad 8 use *drc*
# The report file name is controlled by the global output pattern (%i=drc %x=txt).
# Note that the KiCad 6+ *Test for parity between PCB and schematic* option is not supported.
Expand Down
2 changes: 1 addition & 1 deletion kibot/pre_drc.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
@pre_class
class DRC(XRC): # noqa: F821
""" DRC
Runs the DRC (Distance Rules Check) to ensure we have a valid PCB.
Runs the DRC (Design Rules Check) to ensure we have a valid PCB.
You need a valid *fp-lib-table* installed. If not KiBot will try to temporarily install the template.
This is a replacement for the *run_drc* preflight that needs KiCad 8 or newer.
GUI exclusions and schematic parity are supported """
Expand Down
2 changes: 1 addition & 1 deletion kibot/pre_run_drc.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self):
@pre_class
class Run_DRC(BasePreFlight): # noqa: F821
""" Run DRC (**Deprecated for KiCad 8**)
Runs the DRC (Distance Rules Check) to ensure we have a valid PCB.
Runs the DRC (Design Rules Check) to ensure we have a valid PCB.
For KiCad 8 use *drc*
The report file name is controlled by the global output pattern (%i=drc %x=txt).
Note that the KiCad 6+ *Test for parity between PCB and schematic* option is not supported.
Expand Down
Loading