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.

pins_MALYAN_M200.h 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. * MALYAN M200 pin assignments
  24. */
  25. #ifndef __STM32F1__
  26. #error "Oops! You must be compiling for STM32."
  27. #endif
  28. #define BOARD_NAME "MALYANM200"
  29. // Enable EEPROM Emulation for this board
  30. // This setting should probably be in configuration.h
  31. // but it is literally the only board which uses it.
  32. #define FLASH_EEPROM_EMULATION
  33. #define SDSS SS_PIN
  34. //
  35. // Limit Switches
  36. //
  37. #define X_MIN_PIN PB4
  38. #define Y_MIN_PIN PA15
  39. #define Z_MIN_PIN PB5
  40. //
  41. // Steppers
  42. //
  43. // X & Y enable are the same
  44. #define X_STEP_PIN PB14
  45. #define X_DIR_PIN PB15
  46. #define X_ENABLE_PIN PA8
  47. #define Y_STEP_PIN PB12
  48. #define Y_DIR_PIN PB13
  49. #define Y_ENABLE_PIN PA8
  50. #define Z_STEP_PIN PB10
  51. #define Z_DIR_PIN PB2
  52. #define Z_ENABLE_PIN PB11
  53. #define E0_STEP_PIN PB0
  54. #define E0_DIR_PIN PC13
  55. #define E0_ENABLE_PIN PB1
  56. //
  57. // Temperature Sensors
  58. //
  59. #define TEMP_0_PIN PA0 // Analog Input (HOTEND0 thermistor)
  60. #define TEMP_BED_PIN PA1 // Analog Input (BED thermistor)
  61. //
  62. // Heaters / Fans
  63. //
  64. #define HEATER_0_PIN PB6 // HOTEND0 MOSFET
  65. #define HEATER_BED_PIN PB7 // BED MOSFET
  66. // This board has only the controller fan and the extruder fan
  67. // If someone hacks to put a direct power fan on the controller, PB3 could
  68. // be used as a separate print cooling fan.
  69. #define ORIG_E0_AUTO_FAN_PIN PB8
  70. // FAN_PIN is commented out here because the M200 example
  71. // Configuration_adv.h does NOT override E0_AUTO_FAN_PIN.
  72. //#define FAN_PIN PB8 // FAN1 header on board - PRINT FAN
  73. #define FAN1_PIN PB3 // FAN2 header on board - CONTROLLER FAN
  74. #define FAN2_PIN -1 // FAN3 header on board - EXTRUDER0 FAN