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_RUMBA32_AUS3D.h 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. * Pin assignments for the RUMBA32
  25. *
  26. * https://aus3d.com.au/rumba32
  27. * https://github.com/Aus3D/RUMBA32
  28. */
  29. #define BOARD_INFO_NAME "RUMBA32"
  30. #if NO_EEPROM_SELECTED
  31. #if MB(RUMBA32_V1_0)
  32. #define FLASH_EEPROM_EMULATION
  33. #define MARLIN_EEPROM_SIZE 0x1000 // 4K
  34. #elif MB(RUMBA32_V1_1)
  35. #define I2C_EEPROM
  36. #define MARLIN_EEPROM_SIZE 0x2000 // 8K (24LC64T-I/OT)
  37. #endif
  38. #endif
  39. #if ENABLED(FLASH_EEPROM_EMULATION)
  40. // Decrease delays and flash wear by spreading writes across the
  41. // 128 kB sector allocated for EEPROM emulation.
  42. #define FLASH_EEPROM_LEVELING
  43. #endif
  44. #include "pins_RUMBA32_common.h"
  45. #if MB(RUMBA32_V1_1)
  46. #define SERVO0_PIN PA15
  47. #if HAS_TMC_UART
  48. //
  49. // TMC2208/TMC2209 stepper drivers - Software Serial is used according to below pins
  50. //
  51. #define X_SERIAL_TX_PIN PA14
  52. #define X_SERIAL_RX_PIN PC14
  53. #define Y_SERIAL_TX_PIN PA13
  54. #define Y_SERIAL_RX_PIN PE4
  55. #define Z_SERIAL_TX_PIN PB10
  56. #define Z_SERIAL_RX_PIN PE0
  57. #define E0_SERIAL_TX_PIN PD11
  58. #define E0_SERIAL_RX_PIN PC13
  59. #define E1_SERIAL_TX_PIN PB3
  60. #define E1_SERIAL_RX_PIN PD5
  61. #define E2_SERIAL_TX_PIN PB4
  62. #define E2_SERIAL_RX_PIN PD1
  63. #endif
  64. #endif