Skip to content

Commit 2b1666f

Browse files
committed
✏️ GT2560_V41b followup
1 parent 6ae2cde commit 2b1666f

File tree

2 files changed

+14
-17
lines changed

2 files changed

+14
-17
lines changed

Marlin/src/pins/mega/pins_GT2560_V41b.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
* X AXIS Y AXIS Z1 AXIS Z0 AXIS
5252
* --- --- --- ---
5353
* | 1 | 5V | 1 | 5V | 1 | 5V | 1 | 5V
54-
* | 2 | 24 X_MIN | 2 | 28 Y_MIN | 2 | 80 Z1_MIN | 2 | 30 Z0_MIN
54+
* | 2 | 24 X_MIN | 2 | 28 Y_MIN | 2 | 80 Z1_MIN | 2 | 30 Z0_MIN
5555
* | 3 | GND | 3 | GND | 3 | GND | 3 | GND
5656
* --- --- --- ---
5757
* J3 J4 J5 J6

Marlin/src/pins/samd/pins_MINITRONICS20.h

+13-16
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,9 @@
6060
#define Z_STOP_PIN 4
6161

6262
/**
63-
* NOTE: Useful if extra TMC2209 are to be used as independent axes.
64-
* We need to configure the new digital PIN, for this we could configure on the board the extra pin of this stepper, for example as a MIN_PIN/MAX_PIN. This pin is the D14.
63+
* NOTE: For extra TMC2209 used as independent axes a new digital PIN is needed.
64+
* We can configure on the board the extra pin of this stepper,
65+
* e.g., as a MIN_PIN/MAX_PIN. This pin is D14.
6566
*/
6667
//#define Z2_STOP_PIN 14
6768
//#define X2_STOP_PIN 14
@@ -105,7 +106,7 @@
105106

106107
// This board have the option to use an extra TMC2209 stepper, one of the use could be as a second extruder.
107108
#if EXTRUDERS < 2
108-
// TODO: Corregir aquí que cuando tenemos dos extrusores o lo que sea, utiliza los endstop que le sobran, osea los max, no hay Z2_endstop
109+
// TODO: Correct here that when we have two extruders (or whatever), use the extra endstops. i.e., The max, there is no Z2_endstop.
109110
#if NUM_Z_STEPPERS > 1
110111
#define Z2_STOP_PIN 14
111112
#endif
@@ -117,8 +118,8 @@
117118
#undef Z3_DRIVER_TYPE
118119
#undef Z4_DRIVER_TYPE
119120

120-
// Si tenemos más de un extrusor lo que hacemos es definir el nuevo extrusor así como sus pines
121-
// Acordarse de definir el #define TEMP_SENSOR_1, ya que este contiene el tipo de sonda del extrusor E1
121+
// For more than one extruder define the new extruder and its pins.
122+
// Remember to #define TEMP_SENSOR_1, since this contains the E1 sensor type.
122123

123124
#define FIL_RUNOUT2_PIN 14
124125

@@ -166,13 +167,9 @@
166167
#define EXP3_08_PIN EXP1_08_PIN
167168
#endif
168169

169-
/************************************/
170-
/***** Configurations Section ******/
171-
/************************************/
172-
173170
/**
174-
* This sections starts with the pins_RAMPS_144.h as example, after if you need any new
175-
* display, you could use normal duponts and connect it with with the scheme showed before.
171+
* This section is based on pins_RAMPS_144.h. To use a new display, you
172+
* could use normal duponts and connect with the scheme shown before.
176173
* Tested:
177174
* - Ender-3 Old display (Character LCD)
178175
* - Ender-3 New Serial DWING Display
@@ -427,7 +424,7 @@
427424
// TO TEST
428425
//#define BEEPER_PIN EXP2_05_PIN
429426
// not connected to a pin
430-
//#define LCD_BACKLIGHT_PIN 57 // backlight LED on A11/D? (Mega/Due:65 - AGCM4:57)
427+
//#define LCD_BACKLIGHT_PIN 57 // Backlight LED on A11/D? (Mega/Due:65 - AGCM4:57)
431428

432429
//#define DOGLCD_A0 EXP2_07_PIN
433430
//#define DOGLCD_CS 58 // Mega/Due:66 - AGCM4:58
@@ -502,8 +499,8 @@
502499
#if HAS_TMC_UART
503500

504501
/**
505-
* Address for the UART Configuration of the TMC2209. Override in Configuration files.
506-
* To test TMC2209 Steppers enable TMC_DEBUG in Configuration_adv.h and test the M122 command with voltage on the steppers.
502+
* TMC2209 UART Address. Override in Configuration files.
503+
* To test TMC2209 Steppers enable TMC_DEBUG and test M122 with voltage on the steppers.
507504
*/
508505
#ifndef X_SLAVE_ADDRESS
509506
#define X_SLAVE_ADDRESS 0b00
@@ -523,8 +520,8 @@
523520

524521
/**
525522
* TMC2208/TMC2209 stepper drivers
526-
* It seems to work perfectly fine on Software Serial, if an advanced user wants to test, you could use the SAMD51 Serial1 and Serial 2. Be careful with the Sercom configurations.
527-
* Steppers 1,2,3,4 (X,Y,Z,E0) are on the Serial1, Sercom (RX = 0, TX = 1), extra stepper 5 (E1 or any axis you want) is on Serial2, Sercom (RX = 17, TX = 16)
523+
* Seems to work fine with Software Serial. If you want to test, use SAMD51 Serial1 and Serial2. Be careful with the Sercom configurations.
524+
* Steppers 1,2,3,4 (X,Y,Z,E0) are on Serial1, Sercom (RX=0, TX=1), extra stepper 5 (E1 or any axis you want) is on Serial2, Sercom (RX=17, TX=16)
528525
*/
529526

530527
//#define X_HARDWARE_SERIAL Serial1

0 commit comments

Comments
 (0)