Use Preheat 1 as M303 default (#18407)

This commit is contained in:
Pascal de Bruijn 2020-06-25 02:20:07 +02:00 committed by GitHub
parent eb5f8b693b
commit b0aad414ec
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)