Sync enqueue_and_echo_command with 2.0.x
This commit is contained in:
parent
e5b928f574
commit
349cf3ee5a
@ -193,7 +193,7 @@ extern bool Running;
|
|||||||
inline bool IsRunning() { return Running; }
|
inline bool IsRunning() { return Running; }
|
||||||
inline bool IsStopped() { return !Running; }
|
inline bool IsStopped() { return !Running; }
|
||||||
|
|
||||||
bool enqueue_and_echo_command(const char* cmd, bool say_ok=false); // Add a single command to the end of the buffer. Return false on failure.
|
bool enqueue_and_echo_command(const char* cmd); // Add a single command to the end of the buffer. Return false on failure.
|
||||||
void enqueue_and_echo_commands_P(const char * const cmd); // Set one or more commands to be prioritized over the next Serial/SD command.
|
void enqueue_and_echo_commands_P(const char * const cmd); // Set one or more commands to be prioritized over the next Serial/SD command.
|
||||||
void clear_command_queue();
|
void clear_command_queue();
|
||||||
|
|
||||||
|
@ -871,8 +871,8 @@ inline bool _enqueuecommand(const char* cmd, bool say_ok=false) {
|
|||||||
/**
|
/**
|
||||||
* Enqueue with Serial Echo
|
* Enqueue with Serial Echo
|
||||||
*/
|
*/
|
||||||
bool enqueue_and_echo_command(const char* cmd, bool say_ok/*=false*/) {
|
bool enqueue_and_echo_command(const char* cmd) {
|
||||||
if (_enqueuecommand(cmd, say_ok)) {
|
if (_enqueuecommand(cmd)) {
|
||||||
SERIAL_ECHO_START();
|
SERIAL_ECHO_START();
|
||||||
SERIAL_ECHOPAIR(MSG_ENQUEUEING, cmd);
|
SERIAL_ECHOPAIR(MSG_ENQUEUEING, cmd);
|
||||||
SERIAL_CHAR('"');
|
SERIAL_CHAR('"');
|
||||||
|
@ -332,7 +332,7 @@ void process_lcd_s_command(const char* command) {
|
|||||||
|
|
||||||
case 'H':
|
case 'H':
|
||||||
// Home all axis
|
// Home all axis
|
||||||
enqueue_and_echo_command("G28", false);
|
enqueue_and_echo_command("G28");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'L': {
|
case 'L': {
|
||||||
|
Loading…
Reference in New Issue
Block a user