My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pinsDebug.h 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. */
  19. /**
  20. * Support routines for LPC1768
  21. */
  22. /**
  23. * Translation of routines & variables used by pinsDebug.h
  24. */
  25. #define NUMBER_PINS_TOTAL NUM_DIGITAL_PINS
  26. #define pwm_details(pin) pin = pin // do nothing // print PWM details
  27. #define pwm_status(pin) false //Print a pin's PWM status. Return true if it's currently a PWM pin.
  28. #define IS_ANALOG(P) (DIGITAL_PIN_TO_ANALOG_PIN(P) >= 0 ? 1 : 0)
  29. #define digitalRead_mod(p) extDigitalRead(p)
  30. #define PRINT_PORT(p)
  31. #define GET_ARRAY_PIN(p) pin_array[p].pin
  32. #define PRINT_ARRAY_NAME(x) do{ sprintf_P(buffer, PSTR("%-" STRINGIFY(MAX_NAME_LENGTH) "s"), pin_array[x].name); SERIAL_ECHO(buffer); }while(0)
  33. #define PRINT_PIN(p) do{ sprintf_P(buffer, PSTR("%d.%02d"), LPC176x::pin_port(p), LPC176x::pin_bit(p)); SERIAL_ECHO(buffer); }while(0)
  34. #define MULTI_NAME_PAD 16 // space needed to be pretty if not first name assigned to a pin
  35. // pins that will cause hang/reset/disconnect in M43 Toggle and Watch utilities
  36. #ifndef M43_NEVER_TOUCH
  37. #define M43_NEVER_TOUCH(Q) ((Q) == P0_29 || (Q) == P0_30 || (Q) == P2_09) // USB pins
  38. #endif
  39. bool GET_PINMODE(const pin_t pin) {
  40. if (!LPC176x::pin_is_valid(pin) || LPC176x::pin_adc_enabled(pin)) // found an invalid pin or active analog pin
  41. return false;
  42. return LPC176x::gpio_direction(pin);
  43. }
  44. bool GET_ARRAY_IS_DIGITAL(const pin_t pin) {
  45. return (!LPC176x::pin_has_adc(pin) || !LPC176x::pin_adc_enabled(pin));
  46. }