Don't flag pin missing driver when there is an NC

The NC flag indicates user intention to override the lack of connection
to input pins
This commit is contained in:
Seth Hillbrand 2022-04-07 09:29:02 -07:00
parent 821fe6ea42
commit e02229a234
1 changed files with 5 additions and 1 deletions

View File

@ -439,9 +439,13 @@ int ERC_TESTER::TestPinToPin()
{
std::vector<SCH_PIN*> pins;
std::unordered_map<EDA_ITEM*, SCH_SCREEN*> pinToScreenMap;
bool has_noconnect = false;
for( CONNECTION_SUBGRAPH* subgraph: net.second )
{
if( subgraph->m_no_connect )
has_noconnect = true;
for( EDA_ITEM* item : subgraph->m_items )
{
if( item->Type() == SCH_PIN_T )
@ -538,7 +542,7 @@ int ERC_TESTER::TestPinToPin()
}
}
if( needsDriver && !hasDriver )
if( needsDriver && !hasDriver && !has_noconnect )
{
int err_code = ispowerNet ? ERCE_POWERPIN_NOT_DRIVEN : ERCE_PIN_NOT_DRIVEN;