🎨 Apply F() to serial macros
This commit is contained in:
@ -29,10 +29,10 @@
|
||||
inline void report_workspace_plane() {
|
||||
SERIAL_ECHO_START();
|
||||
SERIAL_ECHOPGM("Workspace Plane ");
|
||||
SERIAL_ECHOPGM_P(
|
||||
gcode.workspace_plane == GcodeSuite::PLANE_YZ ? PSTR("YZ\n")
|
||||
: gcode.workspace_plane == GcodeSuite::PLANE_ZX ? PSTR("ZX\n")
|
||||
: PSTR("XY\n")
|
||||
SERIAL_ECHOF(
|
||||
gcode.workspace_plane == GcodeSuite::PLANE_YZ ? F("YZ\n")
|
||||
: gcode.workspace_plane == GcodeSuite::PLANE_ZX ? F("ZX\n")
|
||||
: F("XY\n")
|
||||
);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user