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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2021 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 <https://www.gnu.org/licenses/>.
  17. *
  18. */
  19. /**
  20. * Support routines for X86_64
  21. */
  22. #pragma once
  23. /**
  24. * Translation of routines & variables used by pinsDebug.h
  25. */
  26. #define NUMBER_PINS_TOTAL NUM_DIGITAL_PINS
  27. #define pwm_details(pin) pin = pin // do nothing // print PWM details
  28. #define pwm_status(pin) false //Print a pin's PWM status. Return true if it's currently a PWM pin.
  29. #define IS_ANALOG(P) (DIGITAL_PIN_TO_ANALOG_PIN(P) >= 0 ? 1 : 0)
  30. #define digitalRead_mod(p) digitalRead(p)
  31. #define PRINT_PORT(p)
  32. #define GET_ARRAY_PIN(p) pin_array[p].pin
  33. #define PRINT_ARRAY_NAME(x) do{ sprintf_P(buffer, PSTR("%-" STRINGIFY(MAX_NAME_LENGTH) "s"), pin_array[x].name); SERIAL_ECHO(buffer); }while(0)
  34. #define PRINT_PIN(p) do{ sprintf_P(buffer, PSTR("%3d "), p); SERIAL_ECHO(buffer); }while(0)
  35. #define PRINT_PIN_ANALOG(p) do{ sprintf_P(buffer, PSTR(" (A%2d) "), DIGITAL_PIN_TO_ANALOG_PIN(pin)); SERIAL_ECHO(buffer); }while(0)
  36. #define MULTI_NAME_PAD 16 // space needed to be pretty if not first name assigned to a pin
  37. // active ADC function/mode/code values for PINSEL registers
  38. inline constexpr int8_t ADC_pin_mode(pin_t pin) {
  39. return (-1);
  40. }
  41. inline int8_t get_pin_mode(pin_t pin) {
  42. if (!VALID_PIN(pin)) return -1;
  43. return 0;
  44. }
  45. inline bool GET_PINMODE(pin_t pin) {
  46. int8_t pin_mode = get_pin_mode(pin);
  47. if (pin_mode == -1 || pin_mode == ADC_pin_mode(pin)) // found an invalid pin or active analog pin
  48. return false;
  49. return (Gpio::getMode(pin) != 0); //input/output state
  50. }
  51. inline bool GET_ARRAY_IS_DIGITAL(pin_t pin) {
  52. return (!IS_ANALOG(pin) || get_pin_mode(pin) != ADC_pin_mode(pin));
  53. }