KiCad PCB EDA Suite
Loading...
Searching...
No Matches
erc_settings.cpp
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) 2024 CERN
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 * @author Jon Evans <[email protected]>
7 *
8 * This program is free software: you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation, either version 3 of the License, or (at your
11 * option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * 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, see <https://www.gnu.org/licenses/>.
20 */
21
22#include <algorithm>
23#include <tuple>
24#include <erc/erc_item.h>
25#include <erc/erc_settings.h>
26#include <schematic.h>
27#include <sch_marker.h>
28#include <sch_screen.h>
30#include <settings/parameters.h>
31
33
34
35
36#define OK PIN_ERROR::OK
37#define ERR PIN_ERROR::PP_ERROR
38#define WAR PIN_ERROR::WARNING
39
44{
45/* I, O, Bi, 3S, Pas, NIC, UnS, PwrI, PwrO, OC, OE, NC */
46/* I */ { OK, OK, OK, OK, OK, OK, WAR, OK, OK, OK, OK, ERR },
47/* O */ { OK, ERR, OK, WAR, OK, OK, WAR, OK, ERR, ERR, ERR, ERR },
48/* Bi */ { OK, OK, OK, OK, OK, OK, WAR, OK, WAR, OK, WAR, ERR },
49/* 3S */ { OK, WAR, OK, OK, OK, OK, WAR, WAR, ERR, WAR, WAR, ERR },
50/*Pas */ { OK, OK, OK, OK, OK, OK, WAR, OK, OK, OK, OK, ERR },
51/*NIC */ { OK, OK, OK, OK, OK, OK, OK, OK, OK, OK, OK, ERR },
52/*UnS */ { WAR, WAR, WAR, WAR, WAR, OK, WAR, WAR, WAR, WAR, WAR, ERR },
53/*PwrI*/ { OK, OK, OK, WAR, OK, OK, WAR, OK, OK, OK, OK, ERR },
54/*PwrO*/ { OK, ERR, WAR, ERR, OK, OK, WAR, OK, ERR, ERR, ERR, ERR },
55/* OC */ { OK, ERR, OK, WAR, OK, OK, WAR, OK, ERR, OK, OK, ERR },
56/* OE */ { OK, ERR, WAR, WAR, OK, OK, WAR, OK, ERR, OK, OK, ERR },
57/* NC */ { ERR, ERR, ERR, ERR, ERR, ERR, ERR, ERR, ERR, ERR, ERR, ERR }
58};
59
60
72{
73/* I, O, Bi, 3S, Pas, NIC, UnS, PwrI, PwrO, OC, OE, NC */
74/* I */ { NOD, DRV, DRV, DRV, DRV, NOD, DRV, NOD, DRV, DRV, DRV, NPI },
75/* O */ { DRV, DRV, DRV, DRV, DRV, NOD, DRV, DRV, DRV, DRV, DRV, NPI },
76/* Bi */ { DRV, DRV, DRV, DRV, DRV, NOD, DRV, NOD, DRV, DRV, DRV, NPI },
77/* 3S */ { DRV, DRV, DRV, DRV, DRV, NOD, DRV, NOD, DRV, DRV, DRV, NPI },
78/*Pas */ { DRV, DRV, DRV, DRV, DRV, NOD, DRV, NOD, DRV, DRV, DRV, NPI },
79/*NIC */ { NOD, NOD, NOD, NOD, NOD, NOD, NOD, NOD, NOD, NOD, NOD, NPI },
80/*UnS */ { DRV, DRV, DRV, DRV, DRV, NOD, DRV, NOD, DRV, DRV, DRV, NPI },
81/*PwrI*/ { NOD, DRV, NOD, NOD, NOD, NOD, NOD, NOD, DRV, NOD, NOD, NPI },
82/*PwrO*/ { DRV, DRV, DRV, DRV, DRV, NOD, DRV, DRV, DRV, DRV, DRV, NPI },
83/* OC */ { DRV, DRV, DRV, DRV, DRV, NOD, DRV, NOD, DRV, DRV, DRV, NPI },
84/* OE */ { DRV, DRV, DRV, DRV, DRV, NOD, DRV, NOD, DRV, DRV, DRV, NPI },
85/* NC */ { NPI, NPI, NPI, NPI, NPI, NPI, NPI, NPI, NPI, NPI, NPI, NPI }
86};
87
88
89ERC_SETTINGS::ERC_SETTINGS( JSON_SETTINGS* aParent, const std::string& aPath ) :
90 NESTED_SETTINGS( "erc", ercSettingsSchemaVersion, aParent, aPath, false )
91{
93
94 for( int i = ERCE_FIRST; i <= ERCE_LAST; ++i )
96
97 // Error is the default setting so set non-error priorities here.
132
133 m_params.emplace_back( new PARAM_LAMBDA<nlohmann::json>( "rule_severities",
134 [&]() -> nlohmann::json
135 {
136 nlohmann::json ret = {};
137
138 for( const RC_ITEM& item : ERC_ITEM::GetItemsWithSeverities() )
139 {
140 wxString name = item.GetSettingsKey();
141 int code = item.GetErrorCode();
142
143 if( name.IsEmpty() || m_ERCSeverities.count( code ) == 0 )
144 continue;
145
146 ret[std::string( name.ToUTF8() )] = SeverityToString( m_ERCSeverities[code] );
147 }
148
149 return ret;
150 },
151 [&]( const nlohmann::json& aJson )
152 {
153 if( !aJson.is_object() )
154 return;
155
156 for( const RC_ITEM& item : ERC_ITEM::GetItemsWithSeverities() )
157 {
158 int code = item.GetErrorCode();
159 wxString name = item.GetSettingsKey();
160
161 std::string key( name.ToUTF8() );
162
163 if( aJson.contains( key ) )
164 m_ERCSeverities[code] = SeverityFromString( aJson[key] );
165 }
166 },
167 {} ) );
168
169 m_params.emplace_back( new PARAM_LAMBDA<nlohmann::json>( "erc_exclusions",
170 [&]() -> nlohmann::json
171 {
172 nlohmann::json js = nlohmann::json::array();
173
174 for( const ERC_EXCLUSION& exclusion : m_ErcExclusions )
175 js.push_back( exclusion );
176
177 return js;
178 },
179 [&]( const nlohmann::json& aObj )
180 {
181 m_ErcExclusions.clear();
182
183 if( !aObj.is_array() )
184 return;
185
186 for( const nlohmann::json& entry : aObj )
187 {
188 if( !entry.is_object() )
189 continue;
190
191 ERC_EXCLUSION exclusion = entry.get<ERC_EXCLUSION>();
192
193 if( !exclusion.GetSortKey().empty() )
194 m_ErcExclusions.insert( exclusion );
195 }
196 },
197 {} ) );
198
199 m_params.emplace_back( new PARAM_LAMBDA<nlohmann::json>( "pin_map",
200 [&]() -> nlohmann::json
201 {
202 nlohmann::json ret = nlohmann::json::array();
203
204 for( int i = 0; i < ELECTRICAL_PINTYPES_TOTAL; i++ )
205 {
206 nlohmann::json inner = nlohmann::json::array();
207
208 for( int j = 0; j < ELECTRICAL_PINTYPES_TOTAL; j++ )
209 inner.push_back( static_cast<int>( GetPinMapValue( i, j ) ) );
210
211 ret.push_back( inner );
212 }
213
214 return ret;
215 },
216 [&]( const nlohmann::json& aJson )
217 {
218 if( !aJson.is_array() || aJson.size() != ELECTRICAL_PINTYPES_TOTAL )
219 return;
220
221 for( size_t i = 0; i < ELECTRICAL_PINTYPES_TOTAL; i++ )
222 {
223 if( i > aJson.size() - 1 )
224 break;
225
226 nlohmann::json inner = aJson[i];
227
228 if( !inner.is_array() || inner.size() != ELECTRICAL_PINTYPES_TOTAL )
229 return;
230
231 for( size_t j = 0; j < ELECTRICAL_PINTYPES_TOTAL; j++ )
232 {
233 if( inner[j].is_number_integer() )
234 {
235 int val = inner[j].get<int>();
236
237 if( val >= 0 && val <= static_cast<int>( PIN_ERROR::UNCONNECTED ) )
238 SetPinMapValue( i, j, static_cast<PIN_ERROR>( val ) );
239 }
240 }
241 }
242 },
243 {} ) );
244
245 registerMigration( 0, 1, std::bind( &ERC_SETTINGS::migrateSchema0to1, this ) );
246
247 // Pin weights used for sorting. Take care, sorting is descending!
260
262}
263
264
266{
267 // Schema 0 to 1: convert ERC exclusions from legacy pipe-delimited strings to ProtoJSON
268 std::optional<nlohmann::json> opt = Get<nlohmann::json>( "erc_exclusions" );
269
270 if( !opt )
271 return true;
272
273 m_ErcExclusionsLegacy.clear();
274
275 for( const nlohmann::json& entry : *opt )
276 {
277 if( entry.is_array() && entry.size() > 0 )
278 {
279 wxString markerData = entry[0].get<wxString>();
280 wxString comment = entry.size() > 1 ? entry[1].get<wxString>() : wxString();
281
282 if( !markerData.IsEmpty() )
283 m_ErcExclusionsLegacy.emplace( markerData, comment );
284 }
285 else if( entry.is_string() )
286 {
287 wxString markerData = entry.get<wxString>();
288
289 if( !markerData.IsEmpty() )
290 m_ErcExclusionsLegacy.emplace( markerData, wxString() );
291 }
292 }
293
294 Set( "erc_exclusions", nlohmann::json::array() );
295
296 return true;
297}
298
299
301{
302 if( m_parent )
303 {
304 m_parent->ReleaseNestedSettings( this );
305 m_parent = nullptr;
306 }
307}
308
309
310SEVERITY ERC_SETTINGS::GetSeverity( int aErrorCode ) const
311{
312 // Special-case duplicate pin error. Multiple pins with the same number are allowed
313 // if they share the same net, but having them on different nets is always an error.
314 if( aErrorCode == ERCE_DUPLICATE_PIN_ERROR )
315 {
316 return RPT_SEVERITY_ERROR;
317 }
318 // Pin-to-pin codes carry independent ignore state but a fixed reported severity.
319 // Warning-or-error is controlled by which errorCode it is, so each slot's stored
320 // value is consulted only to determine ignore-vs-active.
321 else if( aErrorCode == ERCE_PIN_TO_PIN_ERROR )
322 {
323 auto it = m_ERCSeverities.find( ERCE_PIN_TO_PIN_ERROR );
324
325 if( it != m_ERCSeverities.end() && it->second == RPT_SEVERITY_IGNORE )
326 return RPT_SEVERITY_IGNORE;
327
328 return RPT_SEVERITY_ERROR;
329 }
330 else if( aErrorCode == ERCE_PIN_TO_PIN_WARNING )
331 {
333
334 if( it != m_ERCSeverities.end() && it->second == RPT_SEVERITY_IGNORE )
335 return RPT_SEVERITY_IGNORE;
336
338 }
339 else if( aErrorCode == ERCE_GENERIC_WARNING )
340 {
342 }
343 else if( aErrorCode == ERCE_GENERIC_ERROR )
344 {
345 return RPT_SEVERITY_ERROR;
346 }
347
348 wxCHECK_MSG( m_ERCSeverities.count( aErrorCode ), RPT_SEVERITY_IGNORE,
349 wxS( "Missing severity from map in ERC_SETTINGS!" ) );
350
351 return m_ERCSeverities.at( aErrorCode );
352}
353
354
355void ERC_SETTINGS::SetSeverity( int aErrorCode, SEVERITY aSeverity )
356{
357 m_ERCSeverities[ aErrorCode ] = aSeverity;
358}
359
360
362{
363 memcpy( m_PinMap, m_defaultPinMap, sizeof( m_PinMap ) );
364}
365
366
367void SHEETLIST_ERC_ITEMS_PROVIDER::visitMarkers( std::function<void( SCH_MARKER* )> aVisitor ) const
368{
369 std::set<SCH_SCREEN*> seenScreens;
370
371 for( const SCH_SHEET_PATH& sheet : m_schematic->BuildUnorderedSheetList() )
372 {
373 bool firstTime = seenScreens.count( sheet.LastScreen() ) == 0;
374
375 if( firstTime )
376 seenScreens.insert( sheet.LastScreen() );
377
378 std::map<std::tuple<int, int, std::string>, SCH_MARKER*> orderedMarkers;
379
380 for( SCH_ITEM* item : sheet.LastScreen()->Items().OfType( SCH_MARKER_T ) )
381 {
382 SCH_MARKER* marker = static_cast<SCH_MARKER*>( item );
383
384 if( marker->GetMarkerType() != MARKER_BASE::MARKER_ERC )
385 continue;
386
387 const VECTOR2I& position = marker->GetPosition();
388 orderedMarkers.emplace( std::make_tuple( position.x, position.y,
389 ERC_EXCLUSION::FromMarker( *marker ).GetSortKey() ), marker );
390 }
391
392 for( const auto& [key, marker] : orderedMarkers )
393 {
394 std::shared_ptr<const ERC_ITEM> ercItem =
395 std::static_pointer_cast<const ERC_ITEM>( marker->GetRCItem() );
396
397 // Only show sheet-specific markers on the owning sheet
398 if( ercItem->IsSheetSpecific() )
399 {
400 if( ercItem->GetSpecificSheetPath() != sheet )
401 continue;
402 }
403
404 // Don't show non-specific markers more than once
405 if( !firstTime && !ercItem->IsSheetSpecific() )
406 continue;
407
408 aVisitor( marker );
409 }
410 }
411}
412
413
415{
416 if( aMarker->IsExcluded() )
418
419 return m_schematic->ErcSettings().GetSeverity( aMarker->GetRCItem()->GetErrorCode() );
420}
421
422
424{
425 switch( aSeverity )
426 {
427 case RPT_SEVERITY_ERROR: m_errorCount += aDelta; break;
428 case RPT_SEVERITY_WARNING: m_warningCount += aDelta; break;
429 case RPT_SEVERITY_EXCLUSION: m_exclusionCount += aDelta; break;
430 default: break;
431 }
432}
433
434
436{
437 m_severities = aSeverities;
438
439 m_filteredMarkers.clear();
440 m_errorCount = 0;
441 m_warningCount = 0;
443
445 [&]( SCH_MARKER* aMarker )
446 {
447 SEVERITY severity = markerSeverity( aMarker );
448
449 adjustCount( severity, 1 );
450
451 if( severity & m_severities )
452 m_filteredMarkers.push_back( aMarker );
453 } );
454
455 // Sort markers so that errors appear before warnings
456 std::stable_sort( m_filteredMarkers.begin(), m_filteredMarkers.end(),
457 []( const SCH_MARKER* a, const SCH_MARKER* b )
458 {
459 return a->GetSeverity() > b->GetSeverity();
460 } );
461}
462
463
468
469
471{
472 if( aSeverity < 0 )
473 return m_filteredMarkers.size();
474
475 int count = 0;
476
477 if( aSeverity & RPT_SEVERITY_ERROR )
478 count += m_errorCount;
479
480 if( aSeverity & RPT_SEVERITY_WARNING )
481 count += m_warningCount;
482
483 if( aSeverity & RPT_SEVERITY_EXCLUSION )
484 count += m_exclusionCount;
485
486 return count;
487}
488
489
490std::shared_ptr<ERC_ITEM> SHEETLIST_ERC_ITEMS_PROVIDER::GetERCItem( int aIndex ) const
491{
492 SCH_MARKER* marker = m_filteredMarkers[ aIndex ];
493
494 return marker ? std::static_pointer_cast<ERC_ITEM>( marker->GetRCItem() ) : nullptr;
495}
496
497
498std::shared_ptr<RC_ITEM> SHEETLIST_ERC_ITEMS_PROVIDER::GetItem( int aIndex ) const
499{
500 return GetERCItem( aIndex );
501}
502
503
505 const wxString& aComment )
506{
507 // Toggling the exclusion moves the marker between the exclusion bucket and its error/warning
508 // bucket, so the cached counts must follow the transition. Route the mutation through here so
509 // the old severity is captured before the marker flips.
510 if( aMarker->IsExcluded() == aExcluded )
511 {
512 aMarker->SetExcluded( aExcluded, aComment );
513 return;
514 }
515
516 adjustCount( markerSeverity( aMarker ), -1 );
517 aMarker->SetExcluded( aExcluded, aComment );
518 adjustCount( markerSeverity( aMarker ), 1 );
519}
520
521
522void SHEETLIST_ERC_ITEMS_PROVIDER::DeleteItem( int aIndex, bool aDeep )
523{
524 SCH_MARKER* marker = m_filteredMarkers[ aIndex ];
525 m_filteredMarkers.erase( m_filteredMarkers.begin() + aIndex );
526
527 adjustCount( markerSeverity( marker ), -1 );
528
529 if( aDeep )
530 {
531 SCH_SCREENS screens( m_schematic->Root() );
532 screens.DeleteMarker( marker );
533 }
534}
535
const char * name
Container for an ERC exclusion, which is a SCH_MARKER plus an optional comment.
static ERC_EXCLUSION FromMarker(const SCH_MARKER &aMarker)
std::string GetSortKey() const
static std::vector< std::reference_wrapper< RC_ITEM > > GetItemsWithSeverities()
Definition erc_item.h:72
ERC_PIN_SORTING_METRIC m_ERCSortingMetric
The type of sorting used by the ERC checker to resolve multi-pin errors.
std::map< ELECTRICAL_PINTYPE, int > m_PinTypeWeights
Weights for electrical pins used in ERC to decide which pin gets the marker in case of a multi-pin er...
static PIN_ERROR m_defaultPinMap[ELECTRICAL_PINTYPES_TOTAL][ELECTRICAL_PINTYPES_TOTAL]
Default Look up table which gives the ERC error level for a pair of connected pins.
SEVERITY GetSeverity(int aErrorCode) const
ERC_SETTINGS(JSON_SETTINGS *aParent, const std::string &aPath)
std::set< std::pair< wxString, wxString > > m_ErcExclusionsLegacy
void SetSeverity(int aErrorCode, SEVERITY aSeverity)
virtual ~ERC_SETTINGS()
std::set< ERC_EXCLUSION, ERC_EXCLUSION_COMPARE > m_ErcExclusions
PIN_ERROR GetPinMapValue(int aFirstType, int aSecondType) const
std::map< int, SEVERITY > m_ERCSeverities
bool migrateSchema0to1()
static int m_PinMinDrive[ELECTRICAL_PINTYPES_TOTAL][ELECTRICAL_PINTYPES_TOTAL]
Look up table which gives the minimal drive for a pair of connected pins on a net.
void SetPinMapValue(int aFirstType, int aSecondType, PIN_ERROR aValue)
PIN_ERROR m_PinMap[ELECTRICAL_PINTYPES_TOTAL][ELECTRICAL_PINTYPES_TOTAL]
void Set(const std::string &aPath, ValueType aVal)
Stores a value into the JSON document Will throw an exception if ValueType isn't something that the l...
std::vector< PARAM_BASE * > m_params
The list of parameters (owned by this object)
void registerMigration(int aOldSchemaVersion, int aNewSchemaVersion, std::function< bool(void)> aMigrator)
Registers a migration from one schema version to another.
JSON_SETTINGS(const wxString &aFilename, SETTINGS_LOC aLocation, int aSchemaVersion)
bool IsExcluded() const
Definition marker_base.h:89
std::shared_ptr< RC_ITEM > GetRCItem() const
void SetExcluded(bool aExcluded, const wxString &aComment=wxEmptyString)
Definition marker_base.h:90
enum MARKER_T GetMarkerType() const
Definition marker_base.h:87
JSON_SETTINGS * m_parent
A pointer to the parent object to load and store from.
NESTED_SETTINGS(const std::string &aName, int aSchemaVersion, JSON_SETTINGS *aParent, const std::string &aPath, bool aLoadFromFile=true)
Like a normal param, but with custom getter and setter functions.
Definition parameters.h:299
A holder for a rule check item, DRC in Pcbnew or ERC in Eeschema.
Definition rc_item.h:79
int GetErrorCode() const
Definition rc_item.h:158
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition sch_item.h:165
VECTOR2I GetPosition() const override
Definition sch_marker.h:104
Container class that holds multiple SCH_SCREEN objects in a hierarchy.
Definition sch_screen.h:758
void DeleteMarker(SCH_MARKER *aMarker)
Delete a specific marker.
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
void adjustCount(SEVERITY aSeverity, int aDelta)
int GetCount(int aSeverity=-1) const override
SEVERITY markerSeverity(SCH_MARKER *aMarker) const
void SetSeverities(int aSeverities) override
void visitMarkers(std::function< void(SCH_MARKER *)> aVisitor) const
void SetMarkerExcluded(SCH_MARKER *aMarker, bool aExcluded, const wxString &aComment=wxEmptyString)
Set the exclusion state of a marker while keeping the cached severity counts in sync.
void DeleteItem(int aIndex, bool aDeep) override
Remove (and optionally deletes) the indexed item from the list.
std::shared_ptr< ERC_ITEM > GetERCItem(int aIndex) const
std::vector< SCH_MARKER * > m_filteredMarkers
std::shared_ptr< RC_ITEM > GetItem(int aIndex) const override
Retrieve a RC_ITEM by index.
int GetSeverities() const override
const int ercSettingsSchemaVersion
#define ERR
#define WAR
#define OK
#define DRV
@ ERCE_UNSPECIFIED
@ ERCE_DRIVER_CONFLICT
Conflicting drivers (labels, etc) on a subgraph.
@ ERCE_SIMILAR_POWER
2 power pins are equal for case insensitive comparisons.
@ ERCE_UNCONNECTED_WIRE_ENDPOINT
A label is connected to more than one wire.
@ ERCE_GROUND_PIN_NOT_GROUND
A ground-labeled pin is not on a ground net while another pin is.
@ ERCE_SIMILAR_LABELS
2 labels are equal for case insensitive comparisons.
@ ERCE_VARIANT_SYMBOL_INCOMPATIBLE
Variant symbol override fails pin compatibility.
@ ERCE_STACKED_PIN_SYNTAX
Pin name resembles stacked pin notation.
@ ERCE_FIRST
@ ERCE_ENDPOINT_OFF_GRID
Pin or wire-end off grid.
@ ERCE_EMPTY_LABEL_NAME
Label has an empty or whitespace-only name.
@ ERCE_SAME_LOCAL_GLOBAL_LABEL
2 labels are equal for case insensitive comparisons.
@ ERCE_LAST
@ ERCE_SIMILAR_LABEL_AND_POWER
label and pin are equal for case insensitive comparisons.
@ ERCE_SAME_LOCAL_GLOBAL_POWER
Local power port and global power port have the same name.
@ ERCE_LABEL_SINGLE_PIN
A label is connected only to a single pin.
@ ERCE_BUS_ENTRY_CONFLICT
A wire connected to a bus doesn't match the bus.
@ ERCE_FOOTPRINT_LINK_ISSUES
The footprint link is invalid, or points to a missing (or inactive) footprint or library.
@ ERCE_DUPLICATE_PIN_ERROR
@ ERCE_NOCONNECT_NOT_CONNECTED
A no connect symbol is not connected to anything.
@ ERCE_FOUR_WAY_JUNCTION
A four-way junction was found.
@ ERCE_SIMULATION_MODEL
An error was found in the simulation model.
@ ERCE_LIB_SYMBOL_MISMATCH
Symbol doesn't match copy in library.
@ ERCE_GENERIC_ERROR
@ ERCE_NOCONNECT_CONNECTED
A no connect symbol is connected to more than 1 pin.
@ ERCE_PIN_TO_PIN_WARNING
@ ERCE_MISSING_INPUT_PIN
Symbol has input pins that are not placed.
@ ERCE_MISSING_UNIT
Symbol has units that are not placed on the schematic.
@ ERCE_FIELD_NAME_WHITESPACE
Field name has leading or trailing whitespace.
@ ERCE_PIN_MAP_STALE_PIN
Pin map references a pin number not on the symbol.
@ ERCE_MISSING_BIDI_PIN
Symbol has bi-directional pins that are not placed.
@ ERCE_LIB_SYMBOL_ISSUES
Symbol not found in active libraries.
@ ERCE_FOOTPRINT_FILTERS
The assigned footprint doesn't match the footprint filters.
@ ERCE_GENERIC_WARNING
@ ERCE_VARIANT_SYMBOL_INVALID
Variant symbol override LIB_ID cannot be resolved.
@ ERCE_SINGLE_GLOBAL_LABEL
A label only exists once in the schematic.
@ ERCE_PIN_MAP_UNMAPPED_PIN
A connected pin resolves to no footprint pad.
@ ERCE_LABEL_MULTIPLE_WIRES
A label is connected to more than one wire.
@ ERCE_PIN_TO_PIN_ERROR
PIN_ERROR
The values a pin-to-pin entry in the pin matrix can take on.
#define NOD
#define NPI
Types of drive on a net (used for legacy ERC)
template KICOMMON_API std::optional< nlohmann::json > JSON_SETTINGS::Get< nlohmann::json >(const std::string &aPath) const
@ PT_INPUT
usual pin input: must be connected
Definition pin_type.h:33
@ PT_NC
not connected (must be left open)
Definition pin_type.h:46
@ PT_OUTPUT
usual output
Definition pin_type.h:34
@ PT_TRISTATE
tri state bus pin
Definition pin_type.h:36
@ PT_NIC
not internally connected (may be connected to anything)
Definition pin_type.h:40
@ PT_BIDI
input or output (like port for a microprocessor)
Definition pin_type.h:35
@ PT_OPENEMITTER
pin type open emitter
Definition pin_type.h:45
@ PT_POWER_OUT
output of a regulator: intended to be connected to power input pins
Definition pin_type.h:43
@ PT_OPENCOLLECTOR
pin type open collector
Definition pin_type.h:44
@ PT_POWER_IN
power input (GND, VCC for ICs). Must be connected to a power output.
Definition pin_type.h:42
@ PT_UNSPECIFIED
unknown electrical properties: creates always a warning when connected
Definition pin_type.h:41
@ PT_PASSIVE
pin for passive symbols: must be connected, and can be connected to any pin.
Definition pin_type.h:39
#define ELECTRICAL_PINTYPES_TOTAL
Definition pin_type.h:52
SEVERITY
@ RPT_SEVERITY_WARNING
@ RPT_SEVERITY_ERROR
@ RPT_SEVERITY_UNDEFINED
@ RPT_SEVERITY_EXCLUSION
@ RPT_SEVERITY_IGNORE
@ SCH_MARKER_T
Definition typeinfo.h:154
SEVERITY SeverityFromString(const wxString &aSeverity)
Definition ui_common.cpp:56
wxString SeverityToString(const SEVERITY &aSeverity)
Definition ui_common.cpp:67
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683