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_BTT.h 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. * No official schematics have been found.
  25. * But these differences where noted in https://github.com/bigtreetech/Rumba32/issues/1
  26. */
  27. #define BOARD_INFO_NAME "RUMBA32 (BTT)"
  28. #if NO_EEPROM_SELECTED
  29. #define I2C_EEPROM
  30. #define MARLIN_EEPROM_SIZE 0x1000 // 4K (24LC32AT-I/OT)
  31. #endif
  32. #if ENABLED(FLASH_EEPROM_EMULATION)
  33. // Decrease delays and flash wear by spreading writes across the
  34. // 128 kB sector allocated for EEPROM emulation.
  35. #define FLASH_EEPROM_LEVELING
  36. #endif
  37. #include "pins_RUMBA32_common.h"
  38. #define SERVO0_PIN PA15 // Pin is not broken out, is a test point only.
  39. #if HAS_TMC_UART
  40. //
  41. // TMC2208/TMC2209 Software Serial
  42. //
  43. #define X_SERIAL_TX_PIN PC14 // BTT Rumba32 only uses 1 pin for UART
  44. #define X_SERIAL_RX_PIN X_SERIAL_TX_PIN
  45. #define Y_SERIAL_TX_PIN PE4
  46. #define Y_SERIAL_RX_PIN Y_SERIAL_TX_PIN
  47. #define Z_SERIAL_TX_PIN PE0
  48. #define Z_SERIAL_RX_PIN Z_SERIAL_TX_PIN
  49. #define E0_SERIAL_TX_PIN PC13
  50. #define E0_SERIAL_RX_PIN E0_SERIAL_TX_PIN
  51. #define E1_SERIAL_TX_PIN PD5
  52. #define E1_SERIAL_RX_PIN E1_SERIAL_TX_PIN
  53. #define E2_SERIAL_TX_PIN PD1
  54. #define E2_SERIAL_RX_PIN E2_SERIAL_TX_PIN
  55. #endif