Merge pull request #3763 from gudnimg/optimisation-float-conversions

optimisation: TCodes accepts `uint8_t` not `float`
This commit is contained in:
Guðni Már Gilbert 2022-11-18 19:52:22 +00:00 committed by GitHub
commit 411d1da3c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8687,7 +8687,7 @@ Sigma_Exit:
@n Tc Load to nozzle after filament was prepared by Tc and extruder nozzle is already heated.
*/
else if(code_seen('T')){
TCodes(strchr_pointer, code_value());
TCodes(strchr_pointer, code_value_uint8());
} // end if(code_seen('T')) (end of T codes)
/*!
#### End of T-Codes