We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bugfix-2.0.x
Yes, and the problem still exists.
The gcode reporting output format M503, like for example the output of GcodeSuite::M906_report is a mess:
echo: M906X:900Y:900Z:900
I think this is because of the macro in serial.cpp, line 38
#define _SP_N_STR(N) PGMSTR(SP_##N##_STR, STR_##N ":");
which should be:
#define _SP_N_STR(N) PGMSTR(SP_##N##_STR, " " STR_##N);
this will correct the output to:
echo: M906 X900 Y900 Z900
I'm not sure if it causes other side effects.
Don't know
Proper gcode reporting output
Incorrect reporting output:
Check the output of M503
Marlin 2.0.9.3 latest bugfix
Custom
No response
The text was updated successfully, but these errors were encountered:
fixed in #24259
Sorry, something went wrong.
Great job, thanks!
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
Did you test the latest
bugfix-2.0.x
code?Yes, and the problem still exists.
Bug Description
The gcode reporting output format M503, like for example the output of GcodeSuite::M906_report is a mess:
I think this is because of the macro in serial.cpp, line 38
#define _SP_N_STR(N) PGMSTR(SP_##N##_STR, STR_##N ":");
which should be:
#define _SP_N_STR(N) PGMSTR(SP_##N##_STR, " " STR_##N);
this will correct the output to:
I'm not sure if it causes other side effects.
Bug Timeline
Don't know
Expected behavior
Proper gcode reporting output
Actual behavior
Incorrect reporting output:
Steps to Reproduce
Check the output of M503
Version of Marlin Firmware
Marlin 2.0.9.3 latest bugfix
Printer model
Custom
Electronics
Custom
Add-ons
No response
Bed Leveling
No response
Your Slicer
No response
Host Software
No response
Additional information & file uploads
No response
The text was updated successfully, but these errors were encountered: