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

pins_MORPHEUS.h 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 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. * 2017 Victor Perez Marlin for stm32f1 test
  24. * 2018 Modified by Pablo Crespo for Morpheus Board (https://github.com/pscrespo/Morpheus-STM32)
  25. */
  26. /**
  27. * MORPHEUS Board pin assignments
  28. */
  29. #ifndef __STM32F1__
  30. #error "Oops! Select an STM32F1 board in 'Tools > Board.'"
  31. #endif
  32. #define BOARD_NAME "Bluepill based board"
  33. //
  34. // Limit Switches
  35. //
  36. #define X_MIN_PIN PB14
  37. #define Y_MIN_PIN PB13
  38. #define Z_MIN_PIN PB12
  39. //
  40. // Z Probe (when not Z_MIN_PIN)
  41. //
  42. #ifndef Z_MIN_PROBE_PIN
  43. #define Z_MIN_PROBE_PIN PB9
  44. #endif
  45. //
  46. // Steppers
  47. //
  48. // X & Y enable are the same
  49. #define X_STEP_PIN PB7
  50. #define X_DIR_PIN PB6
  51. #define X_ENABLE_PIN PB8
  52. #define Y_STEP_PIN PB5
  53. #define Y_DIR_PIN PB4
  54. #define Y_ENABLE_PIN PB8
  55. #define Z_STEP_PIN PA15
  56. #define Z_DIR_PIN PA10
  57. #define Z_ENABLE_PIN PB3
  58. #define E0_STEP_PIN PA8
  59. #define E0_DIR_PIN PB15
  60. #define E0_ENABLE_PIN PA9
  61. //
  62. // Temperature Sensors
  63. //
  64. #define TEMP_0_PIN PB1 // Analog Input (HOTEND thermistor)
  65. #define TEMP_BED_PIN PB0 // Analog Input (BED thermistor)
  66. //
  67. // Heaters / Fans
  68. //
  69. #define HEATER_0_PIN PA2 // HOTEND MOSFET
  70. #define HEATER_BED_PIN PA0 // BED MOSFET
  71. #define FAN_PIN PA1 // FAN1 header on board - PRINT FAN
  72. //
  73. // Misc.
  74. //
  75. #define LED_PIN PC13
  76. #define SDSS PA3