Update ExtUI, add test under DUE (#15298)
This commit is contained in:
@ -819,6 +819,9 @@ namespace ExtUI {
|
||||
#endif
|
||||
}
|
||||
}
|
||||
void onMeshUpdate(const uint8_t xpos, const uint8_t ypos, const float zval) {
|
||||
UNUSED(xpos); UNUSED(ypos); UNUSED(zval);
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
@ -96,7 +96,7 @@ namespace ExtUI {
|
||||
void setAxisCurrent_mA(const float, const axis_t);
|
||||
void setAxisCurrent_mA(const float, const extruder_t);
|
||||
|
||||
int getTMCBumpSensitivity(const axis_t);
|
||||
int getTMCBumpSensitivity(const axis_t);
|
||||
void setTMCBumpSensitivity(const float, const axis_t);
|
||||
#endif
|
||||
|
||||
@ -272,7 +272,7 @@ namespace ExtUI {
|
||||
void changeDir(const char * const dirname);
|
||||
void upDir();
|
||||
bool isAtRootDir();
|
||||
uint16_t count();
|
||||
uint16_t count();
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -57,7 +57,7 @@ namespace ExtUI {
|
||||
void onPrintTimerStarted() {}
|
||||
void onPrintTimerPaused() {}
|
||||
void onPrintTimerStopped() {}
|
||||
void onFilamentRunout() {}
|
||||
void onFilamentRunout(const extruder_t extruder) {}
|
||||
|
||||
void onUserConfirmRequired(const char *msg) {
|
||||
if (msg) {
|
||||
|
@ -447,7 +447,7 @@ namespace ExtUI {
|
||||
void onPrintTimerStarted() {}
|
||||
void onPrintTimerPaused() {}
|
||||
void onPrintTimerStopped() {}
|
||||
void onFilamentRunout() {}
|
||||
void onFilamentRunout(const extruder_t extruder) {}
|
||||
void onUserConfirmRequired(const char * const msg) { UNUSED(msg); }
|
||||
void onFactoryReset() {}
|
||||
void onStoreSettings(char *buff) { UNUSED(buff); }
|
||||
|
Reference in New Issue
Block a user