/** * Marlin 3D Printer Firmware * Copyright (c) 2019 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 . * */ #include "../gcode.h" #include "../../Marlin.h" // for pin_is_protected and idle() #include "../../module/stepper.h" #if defined(LULZBOT_M226_NON_ARDUINO_PINS_WORKAROUND) #include "../../module/endstops.h" bool _digitalRead(const int pin_number) { #if ENABLED(LULZBOT_EMI_MITIGATION) enable_emi_pins(true); #endif delayMicroseconds(10); bool val; #define TEST_PIN(PIN) case PIN##_PIN: val = READ(PIN##_PIN) != PIN##_ENDSTOP_INVERTING; break switch(pin_number) { #if HAS_X_MIN TEST_PIN(X_MIN); #endif #if HAS_X_MAX TEST_PIN(X_MAX); #endif #if HAS_Y_MIN TEST_PIN(Y_MIN); #endif #if HAS_Y_MAX TEST_PIN(Y_MAX); #endif #if HAS_Z_MIN TEST_PIN(Z_MIN); #endif #if HAS_Z_PROBE TEST_PIN(Z_PROBE); #endif #if HAS_Z_MAX TEST_PIN(Z_MAX); #endif default: val = extDigitalRead(pin_number); break; } #if ENABLED(LULZBOT_EMI_MITIGATION) enable_emi_pins(false); #endif return val; } #undef extDigitalRead #define extDigitalRead _digitalRead #endif /** * M226: Wait until the specified pin reaches the state required (M226 P S) */ void GcodeSuite::M226() { if (parser.seen('P')) { const int pin_number = PARSED_PIN_INDEX('P', 0), pin_state = parser.intval('S', -1); // required pin state - default is inverted const pin_t pin = GET_PIN_MAP_PIN(pin_number); if (WITHIN(pin_state, -1, 1) && pin > -1) { #if !defined(LULZBOT_M226_PIN_PROTECTION_WORKAROUND) if (pin_is_protected(pin)) protected_pin_err(); else #endif { int target = LOW; planner.synchronize(); #if !defined(LULZBOT_M226_PIN_PROTECTION_WORKAROUND) // Don't switch pin mode. Since we are disabling protection, // we should only poll pins that already are inputs. pinMode(pin, INPUT); #endif switch (pin_state) { case 1: target = HIGH; break; case 0: target = LOW; break; case -1: target = !extDigitalRead(pin); break; } while (int(extDigitalRead(pin)) != target) idle(); } } // pin_state -1 0 1 && pin > -1 } // parser.seen('P') }