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:
parent
36b53a50e9
commit
829fa97f3c
|
@ -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 );
|
||||
|
|
Loading…
Reference in New Issue