Skip to content

Commit

Permalink
Merge pull request MarlinFirmware#3763 from gudnimg/optimisation-floa…
Browse files Browse the repository at this point in the history
…t-conversions

optimisation: TCodes accepts `uint8_t` not `float`
  • Loading branch information
gudnimg authored Nov 18, 2022
2 parents 58775b8 + 509813f commit 411d1da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Firmware/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8687,7 +8687,7 @@ SERIAL_PROTOCOLPGM("\n\n");
@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
Expand Down

0 comments on commit 411d1da

Please sign in to comment.