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.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * Support routines for X86_64
  24. */
  25. /**
  26. * Translation of routines & variables used by pinsDebug.h
  27. */
  28. #define NUMBER_PINS_TOTAL NUM_DIGITAL_PINS
  29. #define pwm_details(pin) pin = pin // do nothing // print PWM details
  30. #define pwm_status(pin) false //Print a pin's PWM status. Return true if it's currently a PWM pin.
  31. #define IS_ANALOG(P) (DIGITAL_PIN_TO_ANALOG_PIN(P) >= 0 ? 1 : 0)
  32. #define digitalRead_mod(p) digitalRead(p)
  33. #define PRINT_PORT(p)
  34. #define GET_ARRAY_PIN(p) pin_array[p].pin
  35. #define NAME_FORMAT(p) PSTR("%-##p##s")
  36. #define PRINT_ARRAY_NAME(x) do {sprintf_P(buffer, PSTR("%-" STRINGIFY(MAX_NAME_LENGTH) "s"), pin_array[x].name); SERIAL_ECHO(buffer);} while (0)
  37. #define PRINT_PIN(p) do {sprintf_P(buffer, PSTR("%3d "), p); SERIAL_ECHO(buffer);} while (0)
  38. #define MULTI_NAME_PAD 16 // space needed to be pretty if not first name assigned to a pin
  39. // active ADC function/mode/code values for PINSEL registers
  40. constexpr int8_t ADC_pin_mode(pin_t pin) {
  41. return (-1);
  42. }
  43. int8_t get_pin_mode(pin_t pin) {
  44. if (!VALID_PIN(pin)) return -1;
  45. return 0;
  46. }
  47. bool GET_PINMODE(pin_t pin) {
  48. int8_t pin_mode = get_pin_mode(pin);
  49. if (pin_mode == -1 || pin_mode == ADC_pin_mode(pin)) // found an invalid pin or active analog pin
  50. return false;
  51. return (Gpio::getMode(pin) != 0); //input/output state
  52. }
  53. bool GET_ARRAY_IS_DIGITAL(pin_t pin) {
  54. return (!IS_ANALOG(pin) || get_pin_mode(pin) != ADC_pin_mode(pin));
  55. }