My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

pins_PXMALION_CORE_I3.h 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2022 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. /**
  23. * Pxmalion Core i3 - https://github.com/Pxmalion
  24. */
  25. #include "env_validate.h"
  26. #ifndef BOARD_INFO_NAME
  27. #define BOARD_INFO_NAME "Core i3"
  28. #endif
  29. //
  30. // Servos
  31. //
  32. #define SERVO0_PIN 51
  33. #define SERVO1_PIN -1
  34. #define SERVO2_PIN -1
  35. #define SERVO3_PIN -1
  36. //
  37. // Limit Switches
  38. //
  39. #define X_STOP_PIN 3
  40. #define Y_STOP_PIN 2
  41. #define Z_MIN_PIN 19
  42. #define Z_MAX_PIN 18
  43. // TODO: Filament Runout Sensor
  44. #ifndef FIL_RUNOUT_PIN
  45. #define FIL_RUNOUT_PIN -1
  46. #endif
  47. //
  48. // Steppers
  49. //
  50. #define X_CS_PIN -1
  51. #define Y_CS_PIN -1
  52. #define Z_CS_PIN -1
  53. #define E0_CS_PIN -1
  54. #define E1_CS_PIN -1
  55. //
  56. // Heaters / Fans
  57. //
  58. #define FET_ORDER_EFB
  59. #ifndef MOSFET_A_PIN
  60. #define MOSFET_A_PIN 8
  61. #endif
  62. #ifndef MOSFET_B_PIN
  63. #define MOSFET_B_PIN 7
  64. #endif
  65. #ifndef MOSFET_C_PIN
  66. #define MOSFET_C_PIN 9
  67. #endif
  68. //
  69. // Misc. Functions
  70. //
  71. #ifndef FILWIDTH_PIN
  72. #define FILWIDTH_PIN -1 // Analog Input
  73. #endif
  74. #define PS_ON_PIN 11
  75. #include "pins_RAMPS.h"