From 589c6284f6af6447cc8d7c4ec1d1ea2566b418a6 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Sat, 17 Feb 2024 16:05:23 -0300 Subject: [PATCH] [DOCs] Made clear erc_grid is just for KiCad 7 --- docs/source/configuration/sup_globals.rst | 3 +-- kibot/globals.py | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/source/configuration/sup_globals.rst b/docs/source/configuration/sup_globals.rst index 97326f84..e16a1475 100644 --- a/docs/source/configuration/sup_globals.rst +++ b/docs/source/configuration/sup_globals.rst @@ -83,8 +83,7 @@ - ``erc_grid`` :index:`: ` [number=50] Grid size used for the ERC. This value must be in mils. This is needed for KiCad 7 in order to run the off grid check. - Shouldn't be needed in KiCad 8. - https://gitlab.com/kicad/code/kicad/-/issues/14110. + This value is stored in the project for KiCad 8, no need to specify it. - ``extra_pth_drill`` :index:`: ` [number=0.1] How many millimeters the manufacturer will add to plated holes. This is because the plating reduces the hole, so you need to use a bigger drill. For more information consult: https://www.eurocircuits.com/pcb-design-guidelines/drilled-holes/. diff --git a/kibot/globals.py b/kibot/globals.py index 550fc5b9..1f910ca8 100644 --- a/kibot/globals.py +++ b/kibot/globals.py @@ -296,8 +296,7 @@ class Globals(FiltersOptions): self.erc_grid = 50 """ Grid size used for the ERC. This value must be in mils. This is needed for KiCad 7 in order to run the off grid check. - Shouldn't be needed in KiCad 8. - https://gitlab.com/kicad/code/kicad/-/issues/14110 """ + This value is stored in the project for KiCad 8, no need to specify it """ self.kicad_dnp_applied = True """ The KiCad v7 PCB flag *Do Not Populate* is applied to our fitted flag before running any filter """ self.kicad_dnp_applies_to_3D = True