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

Method probe_error_stop

Marlin/src/module/probe.cpp:518–528  ·  view source on GitHub ↗

* Print an error and stop() */

Source from the content-addressed store, hash-verified

516 * Print an error and stop()
517 */
518void 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

Callers 2

deploy_procMethod · 0.80
stow_procMethod · 0.80

Calls 2

SERIAL_ERROR_STARTFunction · 0.85
stopFunction · 0.85

Tested by

no test coverage detected