Move more strings to PROGMEM
This commit is contained in:
@ -56,10 +56,10 @@ void GcodeSuite::M355() {
|
||||
// always report case light status
|
||||
SERIAL_ECHO_START();
|
||||
if (!case_light_on) {
|
||||
SERIAL_ECHOLN("Case light: off");
|
||||
SERIAL_ECHOLNPGM("Case light: off");
|
||||
}
|
||||
else {
|
||||
if (!USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)) SERIAL_ECHOLN("Case light: on");
|
||||
if (!USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)) SERIAL_ECHOLNPGM("Case light: on");
|
||||
else SERIAL_ECHOLNPAIR("Case light: ", case_light_brightness);
|
||||
}
|
||||
#else
|
||||
|
@ -73,7 +73,7 @@ void GcodeSuite::M261() {
|
||||
}
|
||||
else {
|
||||
SERIAL_ERROR_START();
|
||||
SERIAL_ERRORLN("Bad i2c request");
|
||||
SERIAL_ERRORLNPGM("Bad i2c request");
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user