Allow micro-via to begin/end in middle layers

Microvias can be drilled through adjacent layer pairs, not just F_Cu and
B_Cu
This commit is contained in:
Seth Hillbrand 2020-07-30 11:27:19 -07:00
parent 41edf5c5bf
commit 2c8d20207e
1 changed files with 2 additions and 0 deletions

View File

@ -136,6 +136,8 @@ void DRC::doSingleViaDRC( BOARD_COMMIT& aCommit, VIA* aRefVia )
err = false;
else if( layer1 == F_Cu && layer2 == In1_Cu )
err = false;
else if ( layer1 == layer2 - 1 )
err = false;
if( err )
{