Fix nextion compile error (#21884)
This commit is contained in:
parent
9336517258
commit
90f1436764
|
@ -26,12 +26,12 @@
|
|||
* Nextion TFT support for Marlin
|
||||
*/
|
||||
|
||||
#include "../../inc/MarlinConfigPre.h"
|
||||
#include "../../../inc/MarlinConfigPre.h"
|
||||
|
||||
#if ENABLED(NEXTION_TFT)
|
||||
|
||||
#include "ui_api.h"
|
||||
#include "lib/nextion/nextion_tft.h"
|
||||
#include "../ui_api.h"
|
||||
#include "nextion_tft.h"
|
||||
|
||||
namespace ExtUI {
|
||||
|
||||
|
|
|
@ -645,6 +645,9 @@ void NextionTFT::UpdateOnChange() {
|
|||
last_flow_speed = getFlow_percent(getActiveTool());
|
||||
}
|
||||
|
||||
// tmppage Axis
|
||||
static float last_get_axis_position_mmX = 999, last_get_axis_position_mmY = 999, last_get_axis_position_mmZ = 999;
|
||||
|
||||
// tmppage Progress + Layer + Time
|
||||
if (isPrinting()) {
|
||||
|
||||
|
@ -679,9 +682,6 @@ void NextionTFT::UpdateOnChange() {
|
|||
}
|
||||
}
|
||||
|
||||
// tmppage Axis
|
||||
static float last_get_axis_position_mmX = 999, last_get_axis_position_mmY = 999, last_get_axis_position_mmZ = 999;
|
||||
|
||||
if (!WITHIN(last_get_axis_position_mmX - getAxisPosition_mm(X), -0.1, 0.1)) {
|
||||
if (ELAPSED(ms, next_event_ms)) {
|
||||
next_event_ms = ms + 30;
|
||||
|
@ -723,9 +723,9 @@ void NextionTFT::UpdateOnChange() {
|
|||
last_homedZ = isAxisPositionKnown(Z);
|
||||
}
|
||||
|
||||
// tmppage IDEX Mode
|
||||
static uint8_t last_IDEX_Mode = 99;
|
||||
#if ENABLED(DUAL_X_CARRIAGE)
|
||||
// tmppage IDEX Mode
|
||||
static uint8_t last_IDEX_Mode = 99;
|
||||
if (last_IDEX_Mode != getIDEX_Mode()) {
|
||||
SEND_VAL("tmppage.idexmode", getIDEX_Mode());
|
||||
last_IDEX_Mode = getIDEX_Mode();
|
||||
|
|
Loading…
Reference in a new issue