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_LPC1768.h 4.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2017 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 LPC1768
  24. */
  25. // active ADC function/mode/code values for PINSEL registers
  26. int8_t ADC_pin_mode(pin_t pin) {
  27. uint8_t pin_port = LPC1768_PIN_PORT(pin);
  28. uint8_t pin_port_pin = LPC1768_PIN_PIN(pin);
  29. return (pin_port == 0 && pin_port_pin == 2 ? 2 :
  30. pin_port == 0 && pin_port_pin == 3 ? 2 :
  31. pin_port == 0 && pin_port_pin == 23 ? 1 :
  32. pin_port == 0 && pin_port_pin == 24 ? 1 :
  33. pin_port == 0 && pin_port_pin == 25 ? 1 :
  34. pin_port == 0 && pin_port_pin == 26 ? 1 :
  35. pin_port == 1 && pin_port_pin == 30 ? 3 :
  36. pin_port == 1 && pin_port_pin == 31 ? 3 : -1);
  37. }
  38. int8_t get_pin_mode(pin_t pin) {
  39. if (!VALID_PIN(pin)) return -1;
  40. uint8_t pin_port = LPC1768_PIN_PORT(pin);
  41. uint8_t pin_port_pin = LPC1768_PIN_PIN(pin);
  42. //get appropriate PINSEL register
  43. volatile uint32_t * pinsel_reg = (pin_port == 0 && pin_port_pin <= 15) ? &LPC_PINCON->PINSEL0 :
  44. (pin_port == 0) ? &LPC_PINCON->PINSEL1 :
  45. (pin_port == 1 && pin_port_pin <= 15) ? &LPC_PINCON->PINSEL2 :
  46. pin_port == 1 ? &LPC_PINCON->PINSEL3 :
  47. pin_port == 2 ? &LPC_PINCON->PINSEL4 :
  48. pin_port == 3 ? &LPC_PINCON->PINSEL7 : &LPC_PINCON->PINSEL9;
  49. uint8_t pinsel_start_bit = pin_port_pin > 15 ? 2 * (pin_port_pin - 16) : 2 * pin_port_pin;
  50. int8_t pin_mode = (int8_t) ((*pinsel_reg >> pinsel_start_bit) & 0x3);
  51. return pin_mode;
  52. }
  53. bool GET_PINMODE(pin_t pin) {
  54. int8_t pin_mode = get_pin_mode(pin);
  55. if (pin_mode == -1 || (pin_mode && pin_mode == ADC_pin_mode(pin))) // found an invalid pin or active analog pin
  56. return false;
  57. uint32_t * FIO_reg[5] PROGMEM = {(uint32_t*) 0x2009C000,(uint32_t*) 0x2009C020,(uint32_t*) 0x2009C040,(uint32_t*) 0x2009C060,(uint32_t*) 0x2009C080};
  58. return ((*FIO_reg[LPC1768_PIN_PORT(pin)] >> LPC1768_PIN_PIN(pin) & 1) != 0); //input/output state
  59. }
  60. bool GET_ARRAY_IS_DIGITAL(pin_t pin) {
  61. int8_t pin_mode = get_pin_mode(pin);
  62. return (pin_mode != -1 && (!get_pin_mode(pin) || pin_mode != ADC_pin_mode(pin)));
  63. }
  64. /**
  65. * translation of routines & variables used by pinsDebug.h
  66. */
  67. #define pwm_details(pin) pin = pin // do nothing // print PWM details
  68. #define pwm_status(pin) false //Print a pin's PWM status. Return true if it's currently a PWM pin.
  69. #define IS_ANALOG(P) (DIGITAL_PIN_TO_ANALOG_PIN(P) >= 0 ? 1 : 0)
  70. #define digitalRead_mod(p) digitalRead(p)
  71. #define digitalPinToPort_DEBUG(p) 0
  72. #define digitalPinToBitMask_DEBUG(pin) 0
  73. #define PRINT_PORT(p) SERIAL_ECHO_SP(10);
  74. #define GET_ARRAY_PIN(p) pin_array[p].pin
  75. #define NAME_FORMAT(p) PSTR("%-##p##s")
  76. // #define PRINT_ARRAY_NAME(x) do {sprintf_P(buffer, NAME_FORMAT(MAX_NAME_LENGTH) , pin_array[x].name); SERIAL_ECHO(buffer);} while (0)
  77. #define PRINT_ARRAY_NAME(x) do {sprintf_P(buffer, PSTR("%-35s") , pin_array[x].name); SERIAL_ECHO(buffer);} while (0)
  78. #define PRINT_PIN(p) do {sprintf_P(buffer, PSTR("%d.%02d "), LPC1768_PIN_PORT(p), LPC1768_PIN_PIN(p)); SERIAL_ECHO(buffer);} while (0)