gcode_process.c: fix comment typos.

This commit is contained in:
Markus Hitter 2011-08-22 18:20:08 +02:00
parent a241ef2fa3
commit 24ba72e5d2
1 changed files with 3 additions and 1 deletions

View File

@ -345,7 +345,7 @@ void process_gcode_command() {
case 0: case 0:
//? --- M0: machine stop --- //? --- M0: machine stop ---
//? //?
//? Example: M112 //? Example: M0
//? //?
//? http://linuxcnc.org/handbook/RS274NGC_3/RS274NGC_33a.html#1002379 //? http://linuxcnc.org/handbook/RS274NGC_3/RS274NGC_33a.html#1002379
//? Unimplemented, especially the restart after the stop. Fall trough to M2. //? Unimplemented, especially the restart after the stop. Fall trough to M2.
@ -354,6 +354,8 @@ void process_gcode_command() {
case 2: case 2:
//? --- M2: program end --- //? --- M2: program end ---
//? //?
//? Example: M2
//?
//? http://linuxcnc.org/handbook/RS274NGC_3/RS274NGC_33a.html#1002379 //? http://linuxcnc.org/handbook/RS274NGC_3/RS274NGC_33a.html#1002379
//? //?
queue_wait(); queue_wait();