My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

pins_MRR_ESPA.h 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 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 <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. /**
  24. * MRR ESPA pin assignments
  25. *
  26. * 3D printer control board based on the ESP32 microcontroller.
  27. * Supports 4 stepper drivers, heated bed, single hotend.
  28. */
  29. #include "env_validate.h"
  30. #if EXTRUDERS > 1 || E_STEPPERS > 1
  31. #error "MRR ESPA only supports 1 E stepper."
  32. #elif HAS_MULTI_HOTEND
  33. #error "MRR ESPA only supports 1 hotend / E stepper."
  34. #endif
  35. #define BOARD_INFO_NAME "MRR ESPA"
  36. #define BOARD_WEBSITE_URL "github.com/maplerainresearch/MRR_ESPA"
  37. #include "pins_ESPA_common.h"
  38. //
  39. // Steppers
  40. //
  41. //#define X_CS_PIN 21
  42. //#define Y_CS_PIN 22
  43. //#define Z_CS_PIN 5 // SS_PIN
  44. //#define E0_CS_PIN 21
  45. // Hardware serial pins
  46. // Add the following to Configuration.h or Configuration_adv.h to assign
  47. // specific pins to hardware Serial1.
  48. // Note: Serial2 can be defined using HARDWARE_SERIAL2_RX and HARDWARE_SERIAL2_TX but
  49. // MRR ESPA does not have enough spare pins for such reassignment.
  50. //#define HARDWARE_SERIAL1_RX 21
  51. //#define HARDWARE_SERIAL1_TX 22