TM: Do not restrict autotune temperature
Fix a wrong type that prevents running TM autotune at temps >127
This commit is contained in:
parent
d3aa40a575
commit
679208b29e
|
|
@ -7400,7 +7400,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