123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379 |
- /**
- * Marlin 3D Printer Firmware
- * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
- *
- * Based on Sprinter and grbl.
- * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- *
- */
-
- #include "../../inc/MarlinConfig.h"
-
- #if ENABLED(PINS_DEBUGGING)
-
- #include "../gcode.h"
- #include "../../MarlinCore.h" // for pin_is_protected
- #include "../../pins/pinsDebug.h"
- #include "../../module/endstops.h"
-
- #if HAS_Z_SERVO_PROBE
- #include "../../module/probe.h"
- #include "../../module/servo.h"
- #endif
-
- #if ENABLED(BLTOUCH)
- #include "../../feature/bltouch.h"
- #endif
-
- #if ENABLED(HOST_PROMPT_SUPPORT)
- #include "../../feature/host_actions.h"
- #endif
-
- #if ENABLED(EXTENSIBLE_UI)
- #include "../../lcd/extui/ui_api.h"
- #endif
-
- #ifndef GET_PIN_MAP_PIN_M43
- #define GET_PIN_MAP_PIN_M43(Q) GET_PIN_MAP_PIN(Q)
- #endif
-
- inline void toggle_pins() {
- const bool ignore_protection = parser.boolval('I');
- const int repeat = parser.intval('R', 1),
- start = PARSED_PIN_INDEX('S', 0),
- end = PARSED_PIN_INDEX('L', NUM_DIGITAL_PINS - 1),
- wait = parser.intval('W', 500);
-
- LOOP_S_LE_N(i, start, end) {
- pin_t pin = GET_PIN_MAP_PIN_M43(i);
- if (!VALID_PIN(pin)) continue;
- if (M43_NEVER_TOUCH(i) || (!ignore_protection && pin_is_protected(pin))) {
- report_pin_state_extended(pin, ignore_protection, true, PSTR("Untouched "));
- SERIAL_EOL();
- }
- else {
- watchdog_refresh();
- report_pin_state_extended(pin, ignore_protection, true, PSTR("Pulsing "));
- #ifdef __STM32F1__
- const auto prior_mode = _GET_MODE(i);
- #else
- const bool prior_mode = GET_PINMODE(pin);
- #endif
- #if AVR_AT90USB1286_FAMILY // Teensy IDEs don't know about these pins so must use FASTIO
- if (pin == TEENSY_E2) {
- SET_OUTPUT(TEENSY_E2);
- for (int16_t j = 0; j < repeat; j++) {
- WRITE(TEENSY_E2, LOW); safe_delay(wait);
- WRITE(TEENSY_E2, HIGH); safe_delay(wait);
- WRITE(TEENSY_E2, LOW); safe_delay(wait);
- }
- }
- else if (pin == TEENSY_E3) {
- SET_OUTPUT(TEENSY_E3);
- for (int16_t j = 0; j < repeat; j++) {
- WRITE(TEENSY_E3, LOW); safe_delay(wait);
- WRITE(TEENSY_E3, HIGH); safe_delay(wait);
- WRITE(TEENSY_E3, LOW); safe_delay(wait);
- }
- }
- else
- #endif
- {
- pinMode(pin, OUTPUT);
- for (int16_t j = 0; j < repeat; j++) {
- watchdog_refresh(); extDigitalWrite(pin, 0); safe_delay(wait);
- watchdog_refresh(); extDigitalWrite(pin, 1); safe_delay(wait);
- watchdog_refresh(); extDigitalWrite(pin, 0); safe_delay(wait);
- watchdog_refresh();
- }
- }
- #ifdef __STM32F1__
- _SET_MODE(i, prior_mode);
- #else
- pinMode(pin, prior_mode);
- #endif
- }
- SERIAL_EOL();
- }
- SERIAL_ECHOLNPGM("Done.");
-
- } // toggle_pins
-
- inline void servo_probe_test() {
-
- #if !(NUM_SERVOS > 0 && HAS_SERVO_0)
-
- SERIAL_ERROR_MSG("SERVO not set up.");
-
- #elif !HAS_Z_SERVO_PROBE
-
- SERIAL_ERROR_MSG("Z_PROBE_SERVO_NR not set up.");
-
- #else // HAS_Z_SERVO_PROBE
-
- const uint8_t probe_index = parser.byteval('P', Z_PROBE_SERVO_NR);
-
- SERIAL_ECHOLNPAIR("Servo probe test\n"
- ". using index: ", int(probe_index),
- ", deploy angle: ", servo_angles[probe_index][0],
- ", stow angle: ", servo_angles[probe_index][1]
- );
-
- bool deploy_state = false, stow_state;
-
- #if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
-
- #define PROBE_TEST_PIN Z_MIN_PIN
- constexpr bool probe_inverting = Z_MIN_ENDSTOP_INVERTING;
-
- SERIAL_ECHOLNPAIR(". Probe Z_MIN_PIN: ", int(PROBE_TEST_PIN));
- SERIAL_ECHOPGM(". Z_MIN_ENDSTOP_INVERTING: ");
-
- #else
-
- #define PROBE_TEST_PIN Z_MIN_PROBE_PIN
- constexpr bool probe_inverting = Z_MIN_PROBE_ENDSTOP_INVERTING;
-
- SERIAL_ECHOLNPAIR(". Probe Z_MIN_PROBE_PIN: ", int(PROBE_TEST_PIN));
- SERIAL_ECHOPGM( ". Z_MIN_PROBE_ENDSTOP_INVERTING: ");
-
- #endif
-
- serialprint_truefalse(probe_inverting);
- SERIAL_EOL();
-
- SET_INPUT_PULLUP(PROBE_TEST_PIN);
-
- // First, check for a probe that recognizes an advanced BLTouch sequence.
- // In addition to STOW and DEPLOY, it uses SW MODE (and RESET in the beginning)
- // to see if this is one of the following: BLTOUCH Classic 1.2, 1.3, or
- // BLTouch Smart 1.0, 2.0, 2.2, 3.0, 3.1. But only if the user has actually
- // configured a BLTouch as being present. If the user has not configured this,
- // the BLTouch will be detected in the last phase of these tests (see further on).
- bool blt = false;
- // This code will try to detect a BLTouch probe or clone
- #if ENABLED(BLTOUCH)
- SERIAL_ECHOLNPGM(". Check for BLTOUCH");
- bltouch._reset();
- bltouch._stow();
- if (probe_inverting == READ(PROBE_TEST_PIN)) {
- bltouch._set_SW_mode();
- if (probe_inverting != READ(PROBE_TEST_PIN)) {
- bltouch._deploy();
- if (probe_inverting == READ(PROBE_TEST_PIN)) {
- bltouch._stow();
- SERIAL_ECHOLNPGM("= BLTouch Classic 1.2, 1.3, Smart 1.0, 2.0, 2.2, 3.0, 3.1 detected.");
- // Check for a 3.1 by letting the user trigger it, later
- blt = true;
- }
- }
- }
- #endif
-
- // The following code is common to all kinds of servo probes.
- // Since it could be a real servo or a BLTouch (any kind) or a clone,
- // use only "common" functions - i.e. SERVO_MOVE. No bltouch.xxxx stuff.
-
- // If it is already recognised as a being a BLTouch, no need for this test
- if (!blt) {
- // DEPLOY and STOW 4 times and see if the signal follows
- // Then it is a mechanical switch
- uint8_t i = 0;
- SERIAL_ECHOLNPGM(". Deploy & stow 4 times");
- do {
- MOVE_SERVO(probe_index, servo_angles[Z_PROBE_SERVO_NR][0]); // Deploy
- safe_delay(500);
- deploy_state = READ(PROBE_TEST_PIN);
- MOVE_SERVO(probe_index, servo_angles[Z_PROBE_SERVO_NR][1]); // Stow
- safe_delay(500);
- stow_state = READ(PROBE_TEST_PIN);
- } while (++i < 4);
-
- if (probe_inverting != deploy_state) SERIAL_ECHOLNPGM("WARNING: INVERTING setting probably backwards.");
-
- if (deploy_state != stow_state) {
- SERIAL_ECHOLNPGM("= Mechanical Switch detected");
- if (deploy_state) {
- SERIAL_ECHOLNPAIR(" DEPLOYED state: HIGH (logic 1)",
- " STOWED (triggered) state: LOW (logic 0)");
- }
- else {
- SERIAL_ECHOLNPAIR(" DEPLOYED state: LOW (logic 0)",
- " STOWED (triggered) state: HIGH (logic 1)");
- }
- #if ENABLED(BLTOUCH)
- SERIAL_ECHOLNPGM("FAIL: BLTOUCH enabled - Set up this device as a Servo Probe with INVERTING set to 'true'.");
- #endif
- return;
- }
- }
-
- // Ask the user for a trigger event and measure the pulse width.
- MOVE_SERVO(probe_index, servo_angles[Z_PROBE_SERVO_NR][0]); // Deploy
- safe_delay(500);
- SERIAL_ECHOLNPGM("** Please trigger probe within 30 sec **");
- uint16_t probe_counter = 0;
-
- // Wait 30 seconds for user to trigger probe
- for (uint16_t j = 0; j < 500 * 30 && probe_counter == 0 ; j++) {
- safe_delay(2);
-
- if (0 == j % (500 * 1)) gcode.reset_stepper_timeout(); // Keep steppers powered
-
- if (deploy_state != READ(PROBE_TEST_PIN)) { // probe triggered
- for (probe_counter = 0; probe_counter < 15 && deploy_state != READ(PROBE_TEST_PIN); ++probe_counter) safe_delay(2);
-
- SERIAL_ECHOPGM(". Pulse width");
- if (probe_counter == 15)
- SERIAL_ECHOLNPGM(": 30ms or more");
- else
- SERIAL_ECHOLNPAIR(" (+/- 4ms): ", probe_counter * 2);
-
- if (probe_counter >= 4) {
- if (probe_counter == 15) {
- if (blt) SERIAL_ECHOPGM("= BLTouch V3.1");
- else SERIAL_ECHOPGM("= Z Servo Probe");
- }
- else SERIAL_ECHOPGM("= BLTouch pre V3.1 (or compatible)");
- SERIAL_ECHOLNPGM(" detected.");
- }
- else SERIAL_ECHOLNPGM("FAIL: Noise detected - please re-run test");
-
- MOVE_SERVO(probe_index, servo_angles[Z_PROBE_SERVO_NR][1]); // Stow
- return;
- }
- }
-
- if (!probe_counter) SERIAL_ECHOLNPGM("FAIL: No trigger detected");
-
- #endif // HAS_Z_SERVO_PROBE
-
- } // servo_probe_test
-
- /**
- * M43: Pin debug - report pin state, watch pins, toggle pins and servo probe test/report
- *
- * M43 - report name and state of pin(s)
- * P<pin> Pin to read or watch. If omitted, reads all pins.
- * I Flag to ignore Marlin's pin protection.
- *
- * M43 W - Watch pins -reporting changes- until reset, click, or M108.
- * P<pin> Pin to read or watch. If omitted, read/watch all pins.
- * I Flag to ignore Marlin's pin protection.
- *
- * M43 E<bool> - Enable / disable background endstop monitoring
- * - Machine continues to operate
- * - Reports changes to endstops
- * - Toggles LED_PIN when an endstop changes
- * - Cannot reliably catch the 5mS pulse from BLTouch type probes
- *
- * M43 T - Toggle pin(s) and report which pin is being toggled
- * S<pin> - Start Pin number. If not given, will default to 0
- * L<pin> - End Pin number. If not given, will default to last pin defined for this board
- * I<bool> - Flag to ignore Marlin's pin protection. Use with caution!!!!
- * R - Repeat pulses on each pin this number of times before continueing to next pin
- * W - Wait time (in miliseconds) between pulses. If not given will default to 500
- *
- * M43 S - Servo probe test
- * P<index> - Probe index (optional - defaults to 0
- */
- void GcodeSuite::M43() {
-
- // 'T' must be first. It uses 'S' and 'E' differently.
- if (parser.seen('T')) return toggle_pins();
-
- // 'E' Enable or disable endstop monitoring and return
- if (parser.seen('E')) {
- endstops.monitor_flag = parser.value_bool();
- SERIAL_ECHOPGM("endstop monitor ");
- serialprintPGM(endstops.monitor_flag ? PSTR("en") : PSTR("dis"));
- SERIAL_ECHOLNPGM("abled");
- return;
- }
-
- // 'S' Run servo probe test and return
- if (parser.seen('S')) return servo_probe_test();
-
- // 'P' Get the range of pins to test or watch
- uint8_t first_pin = PARSED_PIN_INDEX('P', 0),
- last_pin = parser.seenval('P') ? first_pin : NUMBER_PINS_TOTAL - 1;
-
- if (first_pin > last_pin) return;
-
- // 'I' to ignore protected pins
- const bool ignore_protection = parser.boolval('I');
-
- // 'W' Watch until click, M108, or reset
- if (parser.boolval('W')) {
- SERIAL_ECHOLNPGM("Watching pins");
- #ifdef ARDUINO_ARCH_SAM
- NOLESS(first_pin, 2); // Don't hijack the UART pins
- #endif
- uint8_t pin_state[last_pin - first_pin + 1];
- LOOP_S_LE_N(i, first_pin, last_pin) {
- pin_t pin = GET_PIN_MAP_PIN_M43(i);
- if (!VALID_PIN(pin)) continue;
- if (M43_NEVER_TOUCH(i) || (!ignore_protection && pin_is_protected(pin))) continue;
- pinMode(pin, INPUT_PULLUP);
- delay(1);
- /*
- if (IS_ANALOG(pin))
- pin_state[pin - first_pin] = analogRead(DIGITAL_PIN_TO_ANALOG_PIN(pin)); // int16_t pin_state[...]
- else
- //*/
- pin_state[i - first_pin] = extDigitalRead(pin);
- }
-
- #if HAS_RESUME_CONTINUE
- KEEPALIVE_STATE(PAUSED_FOR_USER);
- wait_for_user = true;
- TERN_(HOST_PROMPT_SUPPORT, host_prompt_do(PROMPT_USER_CONTINUE, PSTR("M43 Wait Called"), CONTINUE_STR));
- TERN_(EXTENSIBLE_UI, ExtUI::onUserConfirmRequired_P(PSTR("M43 Wait Called")));
- #endif
-
- for (;;) {
- LOOP_S_LE_N(i, first_pin, last_pin) {
- pin_t pin = GET_PIN_MAP_PIN_M43(i);
- if (!VALID_PIN(pin)) continue;
- if (M43_NEVER_TOUCH(i) || (!ignore_protection && pin_is_protected(pin))) continue;
- const byte val =
- /*
- IS_ANALOG(pin)
- ? analogRead(DIGITAL_PIN_TO_ANALOG_PIN(pin)) : // int16_t val
- :
- //*/
- extDigitalRead(pin);
- if (val != pin_state[i - first_pin]) {
- report_pin_state_extended(pin, ignore_protection, false);
- pin_state[i - first_pin] = val;
- }
- }
-
- if (TERN0(HAS_RESUME_CONTINUE, !wait_for_user)) break;
-
- safe_delay(200);
- }
- }
- else {
- // Report current state of selected pin(s)
- LOOP_S_LE_N(i, first_pin, last_pin) {
- pin_t pin = GET_PIN_MAP_PIN_M43(i);
- if (VALID_PIN(pin)) report_pin_state_extended(pin, ignore_protection, true);
- }
- }
- }
-
- #endif // PINS_DEBUGGING
|