Clarify ExtUI command injection
This commit is contained in:
parent
448d482d3c
commit
de8fee6aea
2 changed files with 2 additions and 2 deletions
|
@ -795,7 +795,7 @@ namespace ExtUI {
|
||||||
|
|
||||||
float getFeedrate_percent() { return feedrate_percentage; }
|
float getFeedrate_percent() { return feedrate_percentage; }
|
||||||
|
|
||||||
void enqueueCommands_P(PGM_P const gcode) {
|
void injectCommands_P(PGM_P const gcode) {
|
||||||
queue.inject_P(gcode);
|
queue.inject_P(gcode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -71,7 +71,7 @@ namespace ExtUI {
|
||||||
bool isMachineHomed(); // Axis position most likely correct, steppers may have deactivated
|
bool isMachineHomed(); // Axis position most likely correct, steppers may have deactivated
|
||||||
bool canMove(const axis_t);
|
bool canMove(const axis_t);
|
||||||
bool canMove(const extruder_t);
|
bool canMove(const extruder_t);
|
||||||
void enqueueCommands_P(PGM_P const);
|
void injectCommands_P(PGM_P const);
|
||||||
bool commandsInQueue();
|
bool commandsInQueue();
|
||||||
|
|
||||||
bool isHeaterIdle(const heater_t);
|
bool isHeaterIdle(const heater_t);
|
||||||
|
|
Reference in a new issue