Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pins_Einy_0_3.h « Firmware - github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d59761a1229bcd025555d51b1ba42019291d4b76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*****************************************************************
* EINY Rambo 0.3a Pin Assignments
******************************************************************/

#define ELECTRONICS "EINY_03a"

#define KNOWN_BOARD
#ifndef __AVR_ATmega2560__
  #error Oops!  Make sure you have 'Arduino Mega 2560 or Rambo' selected from the 'Tools -> Boards' menu.
#endif

#define TMC2130
#define PAT9125

#define SWI2C                    // enable software i2c
#define SWI2C_A8                 // 8bit address functions

#define PAT9125_SWI2C
#define PAT9125_SWI2C_SDA   20 //SDA on P3
#define PAT9125_SWI2C_SCL   21 //SCL on P3
#define PAT9125_SWI2C_CFG   0xb1 //2us clock delay, 2048 cycles timeout

//#define SWSPI_MISO          16 //RX2
//#define SWSPI_MOSI          16 //RX2
//#define SWSPI_SCK           17 //TX2
//#define SWSPI_CS            20 //SDA

////#define SWI2C_SDA           20 //SDA
////#define SWI2C_SCL           21 //SCL
//#define SWI2C_SDA           16 //RX2
//#define SWI2C_SCL           17 //TX2

#define X_TMC2130_CS        41
#define X_TMC2130_DIAG      40
#define X_STEP_PIN          37
#define X_DIR_PIN           49
//#define X_MIN_PIN           12
//#define X_MAX_PIN           30
#define X_MIN_PIN           X_TMC2130_DIAG
#define X_MAX_PIN           X_TMC2130_DIAG
#define X_ENABLE_PIN        29
#define X_MS1_PIN           -1
#define X_MS2_PIN           -1

#define Y_TMC2130_CS        39
#define Y_TMC2130_DIAG      69
#define Y_STEP_PIN          36
#define Y_DIR_PIN           48
//#define Y_MIN_PIN           11
//#define Y_MAX_PIN           24
#define Y_MIN_PIN           Y_TMC2130_DIAG
#define Y_MAX_PIN           Y_TMC2130_DIAG
#define Y_ENABLE_PIN        28
#define Y_MS1_PIN           -1
#define Y_MS2_PIN           -1

#define Z_TMC2130_CS        67
#define Z_TMC2130_DIAG      68
#define Z_STEP_PIN          35
#define Z_DIR_PIN           47
#define Z_MIN_PIN           10
#define Z_MAX_PIN           23
//#define Z_MAX_PIN           Z_TMC2130_DIAG
#define Z_ENABLE_PIN        27
#define Z_MS1_PIN           -1
#define Z_MS2_PIN           -1

#define HEATER_BED_PIN       4
#define TEMP_BED_PIN         2

#define HEATER_0_PIN         3
#define TEMP_0_PIN           0

#define HEATER_1_PIN         7
#define TEMP_1_PIN           1

#ifdef BARICUDA
#define HEATER_2_PIN         6
#else
#define HEATER_2_PIN        -1
#endif

#define TEMP_2_PIN          -1

#define E0_TMC2130_CS       66
#define E0_TMC2130_DIAG     65
#define E0_STEP_PIN         34
#define E0_DIR_PIN          43
#define E0_ENABLE_PIN       26
#define E0_MS1_PIN          -1
#define E0_MS2_PIN          -1

#define MOTOR_CURRENT_PWM_XY_PIN 46
#define MOTOR_CURRENT_PWM_Z_PIN  45
#define MOTOR_CURRENT_PWM_E_PIN  44
#define SDPOWER             -1
#define SDSS                53
#define LED_PIN             13
#define FAN_PIN              6
#define FAN_1_PIN           -1
#define PS_ON_PIN           -1
#define KILL_PIN            -1  // 80 with Smart Controller LCD
#define SUICIDE_PIN         -1  // PIN that has to be turned on right after start, to keep power flowing.

#ifdef ULTRA_LCD

//#define KILL_PIN            32

#ifdef NEWPANEL

#define BEEPER              84  // Beeper on AUX-4
#define LCD_PINS_RS         82
#define LCD_PINS_ENABLE     18
#define LCD_PINS_D4         19
#define LCD_PINS_D5         70
#define LCD_PINS_D6         85
#define LCD_PINS_D7         71

//buttons are directly attached using AUX-2
#define BTN_EN1             72
#define BTN_EN2             14
#define BTN_ENC              9  // the click

#define SDCARDDETECT        15

#define TACH_0              81
#define TACH_1              80 

#endif //NEWPANEL
#endif //ULTRA_LCD