Gerber files: ensure the "level polarity dark" is set in each file (this is the default, but ensuring that is better and can avoid issues when panneling files)

This commit is contained in:
jean-pierre charras 2016-04-14 09:32:35 +02:00
parent 36b53a50e9
commit 829fa97f3c
1 changed files with 5 additions and 1 deletions

View File

@ -148,8 +148,12 @@ bool GERBER_PLOTTER::StartPlot()
else
fputs( "%MOMM*%\n", outputFile );
/* Specify linear interpol (G01) */
// Be sure the usual dark polarity is selected:
fputs( "%LPD*%\n", outputFile );
// Specify linear interpol (G01):
fputs( "G01*\n", outputFile );
fputs( "G04 APERTURE LIST*\n", outputFile );
/* Select the default aperture */
SetCurrentLineWidth( -1 );