Pascal de Bruijn
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
7 additions and
1 deletions
-
Marlin/src/lcd/menu/menu_advanced.cpp
|
@ -169,7 +169,13 @@ void menu_cancelobject(); |
|
|
#if ENABLED(PID_AUTOTUNE_MENU) |
|
|
#if ENABLED(PID_AUTOTUNE_MENU) |
|
|
|
|
|
|
|
|
#if ENABLED(PIDTEMP) |
|
|
#if ENABLED(PIDTEMP) |
|
|
int16_t autotune_temp[HOTENDS] = ARRAY_BY_HOTENDS1(150); |
|
|
#ifdef PREHEAT_1_TEMP_HOTEND |
|
|
|
|
|
#define PID_TUNE_TEMP PREHEAT_1_TEMP_HOTEND |
|
|
|
|
|
#else |
|
|
|
|
|
#define PID_TUNE_TEMP 200 |
|
|
|
|
|
#endif |
|
|
|
|
|
int16_t autotune_temp[HOTENDS] = ARRAY_BY_HOTENDS1(PID_TUNE_TEMP); |
|
|
|
|
|
#undef PID_TUNE_TEMP |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
#if ENABLED(PIDTEMPBED) |
|
|
#if ENABLED(PIDTEMPBED) |
|
|