Skip to content

Commit

Permalink
const
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Jul 9, 2021
1 parent 6bd2b00 commit 9c60bf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/lcd/extui/ui_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -317,15 +317,15 @@ namespace ExtUI {
float getPIDValues_Ki(const extruder_t);
float getPIDValues_Kd(const extruder_t);
void setPIDValues(const_float_t, const_float_t , const_float_t , extruder_t);
void startPIDTune(celsius_t, extruder_t);
void startPIDTune(const celsius_t, extruder_t);
#endif

#if ENABLED(PIDTEMPBED)
float getBedPIDValues_Kp();
float getBedPIDValues_Ki();
float getBedPIDValues_Kd();
void setBedPIDValues(const_float_t, const_float_t , const_float_t);
void startBedPIDTune(celsius_t);
void startBedPIDTune(const celsius_t);
#endif

/**
Expand Down

0 comments on commit 9c60bf8

Please sign in to comment.