parent
466a6a8fc3
commit
733bc874fb
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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[];
|
||||
|
|
|
|||
Loading…
Reference in New Issue