drc: parse diff pair constranits
This commit is contained in:
parent
cb2dfcde83
commit
adf7d3260d
|
@ -285,6 +285,8 @@ void DRC_RULES_PARSER::parseConstraint( DRC_RULE* aRule )
|
||||||
case T_length: constraint.m_Type = DRC_CONSTRAINT_TYPE_LENGTH; break;
|
case T_length: constraint.m_Type = DRC_CONSTRAINT_TYPE_LENGTH; break;
|
||||||
case T_skew: constraint.m_Type = DRC_CONSTRAINT_TYPE_SKEW; break;
|
case T_skew: constraint.m_Type = DRC_CONSTRAINT_TYPE_SKEW; break;
|
||||||
case T_via_count: constraint.m_Type = DRC_CONSTRAINT_TYPE_VIA_COUNT; break;
|
case T_via_count: constraint.m_Type = DRC_CONSTRAINT_TYPE_VIA_COUNT; break;
|
||||||
|
case T_diff_pair_gap: constraint.m_Type = DRC_CONSTRAINT_TYPE_DIFF_PAIR_GAP; break;
|
||||||
|
case T_diff_pair_uncoupled: constraint.m_Type = DRC_CONSTRAINT_TYPE_DIFF_PAIR_MAX_UNCOUPLED; break;
|
||||||
default:
|
default:
|
||||||
// fixme: message
|
// fixme: message
|
||||||
msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ),
|
msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ),
|
||||||
|
|
Loading…
Reference in New Issue