|
@ -45,6 +45,9 @@ |
|
|
#include "../../inc/MarlinConfig.h" |
|
|
#include "../../inc/MarlinConfig.h" |
|
|
#include "../marlinui.h" |
|
|
#include "../marlinui.h" |
|
|
#include "../../gcode/gcode.h" |
|
|
#include "../../gcode/gcode.h" |
|
|
|
|
|
#if M600_PURGE_MORE_RESUMABLE |
|
|
|
|
|
#include "../../feature/pause.h" |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
namespace ExtUI { |
|
|
namespace ExtUI { |
|
|
|
|
|
|
|
@ -79,7 +82,8 @@ namespace ExtUI { |
|
|
void injectCommands(char * const); |
|
|
void injectCommands(char * const); |
|
|
bool commandsInQueue(); |
|
|
bool commandsInQueue(); |
|
|
|
|
|
|
|
|
GcodeSuite::MarlinBusyState getMachineBusyState(); |
|
|
GcodeSuite::MarlinBusyState getHostKeepaliveState(); |
|
|
|
|
|
bool getHostKeepaliveIsPaused(); |
|
|
|
|
|
|
|
|
bool isHeaterIdle(const heater_t); |
|
|
bool isHeaterIdle(const heater_t); |
|
|
bool isHeaterIdle(const extruder_t); |
|
|
bool isHeaterIdle(const extruder_t); |
|
@ -228,6 +232,10 @@ namespace ExtUI { |
|
|
bool awaitingUserConfirm(); |
|
|
bool awaitingUserConfirm(); |
|
|
void setUserConfirmed(); |
|
|
void setUserConfirmed(); |
|
|
|
|
|
|
|
|
|
|
|
#if M600_PURGE_MORE_RESUMABLE |
|
|
|
|
|
void setPauseMenuResponse(PauseMenuResponse); |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
#if ENABLED(LIN_ADVANCE) |
|
|
#if ENABLED(LIN_ADVANCE) |
|
|
float getLinearAdvance_mm_mm_s(const extruder_t); |
|
|
float getLinearAdvance_mm_mm_s(const extruder_t); |
|
|
void setLinearAdvance_mm_mm_s(const_float_t, const extruder_t); |
|
|
void setLinearAdvance_mm_mm_s(const_float_t, const extruder_t); |
|
@ -309,7 +317,7 @@ namespace ExtUI { |
|
|
float getPIDValues_Ki(const extruder_t); |
|
|
float getPIDValues_Ki(const extruder_t); |
|
|
float getPIDValues_Kd(const extruder_t); |
|
|
float getPIDValues_Kd(const extruder_t); |
|
|
void setPIDValues(const_float_t, const_float_t , const_float_t , extruder_t); |
|
|
void setPIDValues(const_float_t, const_float_t , const_float_t , extruder_t); |
|
|
void startPIDTune(const_float_t, extruder_t); |
|
|
void startPIDTune(const celsius_t, extruder_t); |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
#if ENABLED(PIDTEMPBED) |
|
|
#if ENABLED(PIDTEMPBED) |
|
@ -317,7 +325,7 @@ namespace ExtUI { |
|
|
float getBedPIDValues_Ki(); |
|
|
float getBedPIDValues_Ki(); |
|
|
float getBedPIDValues_Kd(); |
|
|
float getBedPIDValues_Kd(); |
|
|
void setBedPIDValues(const_float_t, const_float_t , const_float_t); |
|
|
void setBedPIDValues(const_float_t, const_float_t , const_float_t); |
|
|
void startBedPIDTune(const_float_t ); |
|
|
void startBedPIDTune(const celsius_t); |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
/**
|
|
|
/**
|
|
|