KiCad PCB EDA Suite
Loading...
Searching...
No Matches
erc.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2009 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 2011 Wayne Stambaugh <[email protected]>
6 * Copyright (C) 2009-2020 KiCad Developers, see change_log.txt for contributors.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, you may find one here:
20 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
21 * or you may search the http://www.gnu.org website for the version 2 license,
22 * or you may write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 */
25
30#ifndef _ERC_H
31#define _ERC_H
32
33#include <erc_settings.h>
34
35
36class NETLIST_OBJECT;
37class NETLIST_OBJECT_LIST;
38class SCH_SHEET_LIST;
39class SCHEMATIC;
41class SCH_EDIT_FRAME;
43
44
45extern const wxString CommentERC_H[];
46extern const wxString CommentERC_V[];
47
48
50{
51public:
52
53 ERC_TESTER( SCHEMATIC* aSchematic ) :
54 m_schematic( aSchematic )
55 {
56 }
57
68 void TestOthersItems( NETLIST_OBJECT_LIST* aList, unsigned aNetItemRef, unsigned aNetStart,
69 int* aMinConnexion );
70
79 int TestDuplicateSheetNames( bool aCreateMarker );
80
84 void TestTextVars( DS_PROXY_VIEW_ITEM* aDrawingSheet );
85
95
101
107 int TestNoConnectPins();
108
113 int TestPinToPin();
114
120
125 int TestSimilarLabels();
126
132
137 int TestOffGridEndpoints( int aGridSize );
138
142 int TestSimModelIssues();
143
147 int TestMissingUnits();
148
149 void RunTests( DS_PROXY_VIEW_ITEM* aDrawingSheet, SCH_EDIT_FRAME* aEditFrame,
150 PROGRESS_REPORTER* aProgressReporter );
151
152private:
153
155};
156
157
158#endif // _ERC_H
Definition: erc.h:50
int TestLibSymbolIssues()
Test symbols for changed library symbols and broken symbol library links.
Definition: erc.cpp:884
void TestTextVars(DS_PROXY_VIEW_ITEM *aDrawingSheet)
Check for any unresolved text variable references.
Definition: erc.cpp:174
int TestPinToPin()
Checks the full netlist against the pin-to-pin connectivity requirements.
Definition: erc.cpp:618
int TestSimilarLabels()
Checks for labels that differ only in capitalization.
Definition: erc.cpp:828
void RunTests(DS_PROXY_VIEW_ITEM *aDrawingSheet, SCH_EDIT_FRAME *aEditFrame, PROGRESS_REPORTER *aProgressReporter)
Definition: erc.cpp:1097
int TestDuplicateSheetNames(bool aCreateMarker)
Inside a given sheet, one cannot have sheets with duplicate names (file names can be duplicated).
Definition: erc.cpp:128
int TestMultUnitPinConflicts()
Checks if shared pins on multi-unit symbols have been connected to different nets.
Definition: erc.cpp:768
int TestOffGridEndpoints(int aGridSize)
Test pins and wire ends for being off grid.
Definition: erc.cpp:974
int TestConflictingBusAliases()
Check that there are no conflicting bus alias definitions in the schematic.
Definition: erc.cpp:298
int TestNoConnectPins()
In KiCad 5 and earlier, you could connect stuff up to pins with NC electrical type.
Definition: erc.cpp:550
int TestSimModelIssues()
Test SPICE models for various issues.
Definition: erc.cpp:1046
ERC_TESTER(SCHEMATIC *aSchematic)
Definition: erc.h:53
SCHEMATIC * m_schematic
Definition: erc.h:154
void TestOthersItems(NETLIST_OBJECT_LIST *aList, unsigned aNetItemRef, unsigned aNetStart, int *aMinConnexion)
Perform ERC testing for electrical conflicts between NetItemRef and other items (mainly pin) on the s...
int TestMissingUnits()
Test for uninstantiated units of multi unit symbols.
Definition: erc.cpp:410
int TestMultiunitFootprints()
Test if all units of each multiunit symbol have the same footprint assigned.
Definition: erc.cpp:345
A progress reporter interface for use in multi-threaded environments.
Holds all the data relating to one schematic.
Definition: schematic.h:75
Schematic editor (Eeschema) main window.
A container for handling SCH_SHEET_PATH objects in a flattened hierarchy.
const wxString CommentERC_V[]
Definition: erc.cpp:84
const wxString CommentERC_H[]
Definition: erc.cpp:67