Merge pull request #3936 from wavexx/tm_cal_htemp

TM: Do not restrict autotune temperature
This commit is contained in:
3d-gussner 2023-01-24 14:20:55 +01:00 committed by GitHub
commit 7b163cf464
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -7394,7 +7394,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();