Skip to content

Commit

Permalink
Merge pull request MarlinFirmware#3936 from wavexx/tm_cal_htemp
Browse files Browse the repository at this point in the history
TM: Do not restrict autotune temperature
  • Loading branch information
3d-gussner committed Jan 24, 2023
2 parents fab4165 + 679208b commit 7b163cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Firmware/Marlin_main.cpp
Expand Up @@ -7394,7 +7394,8 @@ SERIAL_PROTOCOLPGM("\n\n");
{
// parse all parameters
float P = NAN, C = NAN, R = NAN, E = NAN, W = NAN, T = NAN;
int8_t I = -1, S = -1, B = -1, A = -1, F = -1;
int8_t I = -1, S = -1, B = -1, F = -1;
int16_t A = -1;
if(code_seen('C')) C = code_value();
if(code_seen('P')) P = code_value();
if(code_seen('I')) I = code_value_short();
Expand Down

0 comments on commit 7b163cf

Please sign in to comment.