Only in ps2gc-for-emc/: gcode diff -r -u ps2gc/gcode.c ps2gc-for-emc/gcode.c --- ps2gc/gcode.c 2003-02-06 08:15:46.000000000 -0600 +++ ps2gc-for-emc/gcode.c 2006-02-04 10:14:30.000000000 -0600 @@ -134,7 +134,7 @@ } i++; // next argument } // While - printf("i : %d argc : %d\n",i,argc); + fprintf(stderr, "i : %d argc : %d\n",i,argc); // argc == 1 IN=STDIN OUT=STDOUT // argc == 2 IN= argv[1] OUT=STDOUT @@ -175,7 +175,7 @@ close(file); close(infile); - printf("Max x (inches) %f Max y (inches) %f\n",xpos(max_x), ypos(max_y)); + fprintf(stderr, "Max x (inches) %f Max y (inches) %f\n",xpos(max_x), ypos(max_y)); // End of Task @@ -305,10 +305,9 @@ fprintf(file,"G20\n"); // Select inches fprintf(file,"G17 "); // X-Y plane fprintf(file,"G40 G49 "); // Cancel tool lengh & cutter dia compensation - fprintf(file,"G53 "); // Motion in machine co-ordinate system - fprintf(file,"G80\n"); // Cancel any existing motion cycle fprintf(file,"G90\n"); // Absolute distance mode + fprintf(file,"F20\n"); // Set feed rate } Only in ps2gc-for-emc/: .gcode.c.swo Only in ps2gc-for-emc/: .gcode.c.swp Only in ps2gc-for-emc/: gcode.o Only in ps2gc-for-emc/: test.ngc Only in ps2gc-for-emc/: test.ps Only in ps2gc-for-emc/: .test.ps.swp