🧑‍💻 Combined axis strings

This commit is contained in:
Scott Lahteine
2022-05-23 21:59:36 -05:00
parent 639b1f64c6
commit 31413a7d77
8 changed files with 10 additions and 10 deletions

View File

@@ -113,7 +113,7 @@
* With multiple extruders use T to specify which one.
*/
void GcodeSuite::M201() {
if (!parser.seen("T" LOGICAL_AXES_STRING))
if (!parser.seen("T" STR_AXES_LOGICAL))
return M201_report();
const int8_t target_extruder = get_target_extruder_from_command();
@@ -167,7 +167,7 @@ void GcodeSuite::M201_report(const bool forReplay/*=true*/) {
* With multiple extruders use T to specify which one.
*/
void GcodeSuite::M203() {
if (!parser.seen("T" LOGICAL_AXES_STRING))
if (!parser.seen("T" STR_AXES_LOGICAL))
return M203_report();
const int8_t target_extruder = get_target_extruder_from_command();