0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-31 14:12:52 +00:00

Use delay() in serial temp report

This commit is contained in:
Scott Lahteine 2018-01-20 14:12:30 -06:00 committed by GitHub
parent eb3a05c437
commit 6ed2840615
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2200,7 +2200,7 @@ void Temperature::isr() {
SERIAL_PROTOCOLPAIR(" (", r / OVERSAMPLENR);
SERIAL_PROTOCOLCHAR(')');
#endif
safe_delay(2);
delay(2);
}
extern uint8_t target_extruder;