MCPcopy Create free account
hub / github.com/MarlinFirmware/Marlin / dwell

Method dwell

Marlin/src/gcode/gcode.cpp:248–251  ·  view source on GitHub ↗

* Dwell waits immediately. It does not synchronize. */

Source from the content-addressed store, hash-verified

246 * Dwell waits immediately. It does not synchronize.
247 */
248void GcodeSuite::dwell(const millis_t time) {
249 const millis_t start_ms = millis();
250 while (PENDING(millis(), start_ms, time)) idle();
251}
252
253/**
254 * When G29_RETRY_AND_RECOVER is enabled, call G29() in

Callers 4

switching_toolhead_lockFunction · 0.80
filament_swap_coolingFunction · 0.80

Calls 2

idleFunction · 0.85
millisFunction · 0.50

Tested by

no test coverage detected