Move G28W0 to messages

No change in memory
This commit is contained in:
Guðni Már Gilbert 2023-03-18 16:48:30 +00:00
parent 466a6a8fc3
commit 733bc874fb
3 changed files with 2 additions and 1 deletions

View File

@ -255,7 +255,6 @@ uint8_t host_keepalive_interval = HOST_KEEPALIVE_INTERVAL;
const char errormagic[] PROGMEM = "Error:";
const char echomagic[] PROGMEM = "echo:";
const char G28W0[] PROGMEM = "G28 W0";
// Define some coordinates outside the clamp limits (making them invalid past the parsing stage) so
// that they can be used later for various logical checks

View File

@ -230,6 +230,7 @@ const char MSG_LCD_STATUS_CHANGED[] PROGMEM_N1 = "LCD status changed";
const char MSG_UNKNOWN_CODE[] PROGMEM_N1 = "Unknown %c code: %s\n";
// Common G-gcodes
const char G28W0[] PROGMEM_N1 = "G28 W0";
const char MSG_M23[] PROGMEM_N1 = "M23 %s";
const char MSG_M24[] PROGMEM_N1 = "M24";
const char MSG_M83[] PROGMEM_N1 = "M83";

View File

@ -236,6 +236,7 @@ extern const char MSG_LCD_STATUS_CHANGED[];
extern const char MSG_UNKNOWN_CODE[];
// Common G-gcodes
extern const char G28W0[];
extern const char MSG_M23[];
extern const char MSG_M24[];
extern const char MSG_M83[];