Browse Source

Allow micro-via to begin/end in middle layers

Microvias can be drilled through adjacent layer pairs, not just F_Cu and
B_Cu
pull/16/head
Seth Hillbrand 5 years ago
parent
commit
2c8d20207e
  1. 2
      pcbnew/drc/drc_clearance_test_functions.cpp

2
pcbnew/drc/drc_clearance_test_functions.cpp

@ -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 )
{

Loading…
Cancel
Save