pins_Rambo_1_3.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*****************************************************************
  2. * Rambo mini 1.3 Pin Assignments
  3. ******************************************************************/
  4. #define ELECTRONICS "RAMBo13a"
  5. #define KNOWN_BOARD
  6. #ifndef __AVR_ATmega2560__
  7. #error Oops! Make sure you have 'Arduino Mega 2560 or Rambo' selected from the 'Tools -> Boards' menu.
  8. #endif
  9. #define PINDA_THERMISTOR
  10. #ifdef MICROMETER_LOGGING
  11. #define D_DATACLOCK 24 //Y_MAX (green)
  12. #define D_DATA 30 //X_MAX (blue)
  13. #define D_REQUIRE 23 //Z_MAX (white)
  14. #endif //MICROMETER_LOGGING
  15. #define X_STEP_PIN 37
  16. #define X_DIR_PIN 48
  17. #define X_MIN_PIN 12
  18. #define X_MAX_PIN -1
  19. #define X_ENABLE_PIN 29
  20. #define X_MS1_PIN 40
  21. #define X_MS2_PIN 41
  22. #define Y_STEP_PIN 36
  23. #define Y_DIR_PIN 49
  24. #define Y_MIN_PIN 11
  25. #define Y_MAX_PIN -1
  26. #define Y_ENABLE_PIN 28
  27. #define Y_MS1_PIN 69
  28. #define Y_MS2_PIN 39
  29. #define Z_STEP_PIN 35
  30. #define Z_DIR_PIN 47
  31. #define Z_MIN_PIN 10
  32. #define Z_MAX_PIN 23
  33. #define Z_ENABLE_PIN 27
  34. #define Z_MS1_PIN 68
  35. #define Z_MS2_PIN 67
  36. #define HEATER_BED_PIN 4 //PG5
  37. #define TEMP_BED_PIN 2 //A2
  38. #define HEATER_0_PIN 3 //PE5
  39. #define TEMP_0_PIN 0 //A0
  40. #define HEATER_1_PIN -1
  41. #define TEMP_1_PIN -1 //A1
  42. #define HEATER_2_PIN -1
  43. #define TEMP_2_PIN -1
  44. #define TEMP_AMBIENT_PIN 6 //A6
  45. #define TEMP_PINDA_PIN 1 //A1
  46. #define E0_STEP_PIN 34
  47. #define E0_DIR_PIN 43
  48. #define E0_ENABLE_PIN 26
  49. #define E0_MS1_PIN 65
  50. #define E0_MS2_PIN 66
  51. #ifdef SNMM
  52. #define E_MUX0_PIN 17
  53. #define E_MUX1_PIN 16
  54. #endif
  55. #define MOTOR_CURRENT_PWM_XY_PIN 46
  56. #define MOTOR_CURRENT_PWM_Z_PIN 45
  57. #define MOTOR_CURRENT_PWM_E_PIN 44
  58. #define SDPOWER -1
  59. #define SDSS 53
  60. #define LED_PIN 13
  61. #define FAN_PIN 6
  62. #define FAN_1_PIN -1
  63. #define PS_ON_PIN -1
  64. #define KILL_PIN -1 // 80 with Smart Controller LCD
  65. #define SUICIDE_PIN -1 // PIN that has to be turned on right after start, to keep power flowing.
  66. #define TACH_0 30 // noctua extruder fan
  67. //#define KILL_PIN 32
  68. #define BEEPER 84 // Beeper on AUX-4
  69. #define LCD_PINS_RS 82
  70. #define LCD_PINS_ENABLE 18
  71. #define LCD_PINS_D4 19
  72. #define LCD_PINS_D5 70
  73. #define LCD_PINS_D6 85
  74. #define LCD_PINS_D7 71
  75. //buttons are directly attached using AUX-2
  76. #define BTN_EN1 72
  77. #define BTN_EN2 14
  78. #define BTN_ENC 9 // the click
  79. #define SDCARDDETECT 15
  80. #define IR_SENSOR_PIN 20 //idler sensor
  81. // Support for an 8 bit logic analyzer, for example the Saleae.
  82. // Channels 0-2 are fast, they could generate 2.667Mhz waveform with a software loop.
  83. #define LOGIC_ANALYZER_CH0 X_MIN_PIN // PB6
  84. #define LOGIC_ANALYZER_CH1 Y_MIN_PIN // PB5
  85. #define LOGIC_ANALYZER_CH2 53 // PB0 (PROC_nCS)
  86. // Channels 3-7 are slow, they could generate
  87. // 0.889Mhz waveform with a software loop and interrupt locking,
  88. // 1.333MHz waveform without interrupt locking.
  89. #define LOGIC_ANALYZER_CH3 73 // PJ3
  90. // PK0 has no Arduino digital pin assigned, so we set it directly.
  91. #define WRITE_LOGIC_ANALYZER_CH4(value) if (value) PORTK |= (1 << 0); else PORTK &= ~(1 << 0) // PK0
  92. #define LOGIC_ANALYZER_CH5 16 // PH0 (RXD2)
  93. #define LOGIC_ANALYZER_CH6 17 // PH1 (TXD2)
  94. #define LOGIC_ANALYZER_CH7 76 // PJ5
  95. #define LOGIC_ANALYZER_CH0_ENABLE SET_OUTPUT(LOGIC_ANALYZER_CH0)
  96. #define LOGIC_ANALYZER_CH1_ENABLE SET_OUTPUT(LOGIC_ANALYZER_CH1)
  97. #define LOGIC_ANALYZER_CH2_ENABLE SET_OUTPUT(LOGIC_ANALYZER_CH2)
  98. #define LOGIC_ANALYZER_CH3_ENABLE SET_OUTPUT(LOGIC_ANALYZER_CH3)
  99. #define LOGIC_ANALYZER_CH4_ENABLE do { DDRK |= 1 << 0; } while (0)
  100. #define LOGIC_ANALYZER_CH5_ENABLE do { cbi(UCSR2B, TXEN2); cbi(UCSR2B, RXEN2); cbi(UCSR2B, RXCIE2); SET_OUTPUT(LOGIC_ANALYZER_CH5); } while (0)
  101. #define LOGIC_ANALYZER_CH6_ENABLE do { cbi(UCSR2B, TXEN2); cbi(UCSR2B, RXEN2); cbi(UCSR2B, RXCIE2); SET_OUTPUT(LOGIC_ANALYZER_CH6); } while (0)
  102. #define LOGIC_ANALYZER_CH7_ENABLE SET_OUTPUT(LOGIC_ANALYZER_CH7)