Add PID_PARAMS_PER_EXTRUDER conditional
This commit is contained in:
parent
2d6fa9ce80
commit
c610471b0c
@ -806,6 +806,7 @@ static void lcd_control_menu()
|
||||
}
|
||||
|
||||
#ifdef PIDTEMP
|
||||
|
||||
// Helpers for editing PID Ki & Kd values
|
||||
// grab the PID value out of the temp variable; scale it; then update the PID driver
|
||||
void copy_and_scalePID_i(int e) {
|
||||
@ -818,6 +819,7 @@ static void lcd_control_menu()
|
||||
}
|
||||
void copy_and_scalePID_i_E1() { copy_and_scalePID_i(0); }
|
||||
void copy_and_scalePID_d_E1() { copy_and_scalePID_d(0); }
|
||||
#ifdef PID_PARAMS_PER_EXTRUDER
|
||||
#if EXTRUDERS > 1
|
||||
void copy_and_scalePID_i_E2() { copy_and_scalePID_i(1); }
|
||||
void copy_and_scalePID_d_E2() { copy_and_scalePID_d(1); }
|
||||
@ -827,10 +829,12 @@ static void lcd_control_menu()
|
||||
#if EXTRUDERS > 3
|
||||
void copy_and_scalePID_i_E4() { copy_and_scalePID_i(3); }
|
||||
void copy_and_scalePID_d_E5() { copy_and_scalePID_d(3); }
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
#endif //EXTRUDERS > 3
|
||||
#endif //EXTRUDERS > 2
|
||||
#endif //EXTRUDERS > 1
|
||||
#endif //PID_PARAMS_PER_EXTRUDER
|
||||
|
||||
#endif //PIDTEMP
|
||||
|
||||
static void lcd_control_temperature_menu()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user