* Print an error and stop() */
| 516 | * Print an error and stop() |
| 517 | */ |
| 518 | void Probe::probe_error_stop() { |
| 519 | SERIAL_ERROR_START(); |
| 520 | SERIAL_ECHOPGM(STR_STOP_PRE); |
| 521 | #if ANY(Z_PROBE_SLED, Z_PROBE_ALLEN_KEY) |
| 522 | SERIAL_ECHOPGM(STR_STOP_UNHOMED); |
| 523 | #elif ENABLED(BLTOUCH) |
| 524 | SERIAL_ECHOPGM(STR_STOP_BLTOUCH); |
| 525 | #endif |
| 526 | SERIAL_ECHOLNPGM(STR_STOP_POST); |
| 527 | stop(); |
| 528 | } |
| 529 | |
| 530 | /** |
| 531 | * Attempt to deploy or stow the probe |
no test coverage detected