* Dwell waits immediately. It does not synchronize. */
| 246 | * Dwell waits immediately. It does not synchronize. |
| 247 | */ |
| 248 | void 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 |
no test coverage detected