Index: trunk/src_plugins/export_gcode/gcode.c =================================================================== --- trunk/src_plugins/export_gcode/gcode.c (revision 28467) +++ trunk/src_plugins/export_gcode/gcode.c (revision 28468) @@ -111,6 +111,16 @@ pcb_fprintf(gctx.f, "#100=%mm (safe Z for travels above the board)\n", gcode_values[HA_safeZ].crd); pcb_fprintf(gctx.f, "#101=%mm (cutting depth for layers)\n", gcode_values[HA_cutdepth].crd); + pcb_fprintf(gctx.f, + "G17 " /* X-Y plane */ + "G21 " /* mm */ + "G90 " /* absolute coords */ + "G64 " /* best speed path */ + "M03 " /* spindle on, CW */ + "S3000 " /* spindle speed */ + "M07 " /* mist coolant on */ + "F1 " /* feed rate */ + "\n"); linelist_foreach(&tctx->res_path->Line, &it, line) { if ((lastx != line->Point1.X) && (lasty != line->Point1.Y))