File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Marlin/src/lcd/e3v2/proui Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ static constexpr size_t eeprom_data_size = sizeof(HMI_data_t);
142
142
typedef struct {
143
143
int8_t Color[3 ]; // Color components
144
144
#if HAS_PID_HEATING
145
- tempcontrol_t pidresult = PID_DONE;
145
+ pidresult_t pidresult = PID_DONE;
146
146
#endif
147
147
uint8_t Select = 0 ; // Auxiliary selector variable
148
148
AxisEnum axis = X_AXIS; // Axis Select
@@ -358,12 +358,11 @@ void Draw_Steps_Menu();
358
358
359
359
// PID
360
360
#if HAS_PID_HEATING
361
- void DWIN_PidTuning (tempcontrol_t result);
361
+ void DWIN_PidTuning (pidresult_t result);
362
362
#if ENABLED(PIDTEMP)
363
363
void Draw_HotendPID_Menu ();
364
364
#endif
365
365
#if ENABLED(PIDTEMPBED)
366
366
void Draw_BedPID_Menu ();
367
367
#endif
368
368
#endif
369
- #endif
You can’t perform that action at this time.
0 commit comments