Skip to content

Commit

Permalink
Use Preheat 1 as M303 default (#18407)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmjdebruijn authored Jun 25, 2020
1 parent eb5f8b6 commit b0aad41
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Marlin/src/lcd/menu/menu_advanced.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,13 @@ void menu_cancelobject();
#if ENABLED(PID_AUTOTUNE_MENU)

#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

#if ENABLED(PIDTEMPBED)
Expand Down

0 comments on commit b0aad41

Please sign in to comment.