TM: Do not restrict autotune temperature
Fix a wrong type that prevents running TM autotune at temps >127
This commit is contained in:
parent
87118c1042
commit
6058de4ae0
@ -7607,7 +7607,8 @@ Sigma_Exit:
|
||||
{
|
||||
// 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();
|
||||
|
Loading…
Reference in New Issue
Block a user