allow get pos to show A axis for E1 and B for E2, M114 still shows E instead
[clinton/Smoothieware.git] / src / modules / utils / simpleshell / SimpleShell.cpp
index 9fc55cf..07add3a 100644 (file)
@@ -816,7 +816,7 @@ void SimpleShell::get_command( string parameters, StreamOutput *stream)
         }
 
    } else if (what == "pos") {
-        // convenience to call all the various M114 variants
+        // convenience to call all the various M114 variants, shows ABC axis where relevant
         std::string buf;
         THEROBOT->print_position(0, buf); stream->printf("last %s\n", buf.c_str()); buf.clear();
         THEROBOT->print_position(1, buf); stream->printf("realtime %s\n", buf.c_str()); buf.clear();