Welcome! Log In Create A New Profile

Advanced

Using E1 instead of E0 ON SKR 1.4 Turbo board

Posted by utkudemir 
Using E1 instead of E0 ON SKR 1.4 Turbo board
February 23, 2022 04:15AM
I have skr 1.4 turbo mainboard and tmc 2209 drivers.

I want to use E1 pin instead of E0 pin for connecting extruder stepper. What changes should I do in marlin to make it work ?
Attachments:
open | download - KR2.jpg (240.5 KB)
Re: Using E1 instead of E0 ON SKR 1.4 Turbo board
February 23, 2022 04:29AM
edit Marlin/src/pins/lpc1768/pins_BTT_SKR_V1_4.h

#define E0_STEP_PIN                        P2_13
#define E0_DIR_PIN                         P0_11
#define E0_ENABLE_PIN                      P2_12
#ifndef E0_CS_PIN
  #define E0_CS_PIN                        P1_04
#endif

#define E1_STEP_PIN                        P1_15
#define E1_DIR_PIN                         P1_14
#define E1_ENABLE_PIN                      P1_16
#ifndef E1_CS_PIN
  #define E1_CS_PIN                        P1_01
#endif

exchange E0_ With E1_ in this section
Re: Using E1 instead of E0 ON SKR 1.4 Turbo board
February 23, 2022 04:30AM
Also make sure you have a stepper driver in the E1 socket
Re: Using E1 instead of E0 ON SKR 1.4 Turbo board
February 23, 2022 05:21AM
That worked thank you. Printer is working normally, but I have "TMC CONNECTION ERROR" on LCD.

I added my conf files.
Attachments:
open | download - Configuration.h (108.8 KB)
open | download - Configuration_adv.h (171.8 KB)
open | download - pins_BTT_SKR_V1_4.h (16.2 KB)
Re: Using E1 instead of E0 ON SKR 1.4 Turbo board
February 23, 2022 09:59AM
Updated these also


  #define E0_SERIAL_TX_PIN                 P1_04     ->     #define E0_SERIAL_TX_PIN          P1_01

  #define E1_SERIAL_TX_PIN                 P1_01     ->     #define E1_SERIAL_TX_PIN          P1_04

Edited 3 time(s). Last edit at 02/23/2022 10:03AM by Dust.
Re: Using E1 instead of E0 ON SKR 1.4 Turbo board
February 24, 2022 03:01AM
You are awesome. Thank you !
Re: Using E1 instead of E0 ON SKR 1.4 Turbo board
October 26, 2022 03:54AM
Thanks for sharing this topic.

I have same problem with same motherboard , resolve this problem by exchange E0_ With E1_ in pins_BTT_SKR_V1_4.h section.

But I am facing new problem that is "filament flow increased almost double" kindly guide how to resolve.

files are attached
Attachments:
open | download - Configuration_adv.h (160.4 KB)
open | download - Configuration.h (100.8 KB)
open | download - pins_BTT_SKR_V1_4.h (16.9 KB)
Re: Using E1 instead of E0 ON SKR 1.4 Turbo board
October 26, 2022 04:11AM
you have define E0_DRIVER_TYPE TMC2208_STANDALONE

So the micro stepping is set by the jumpers under the stepper driver

Wrong micro stepping results is twice or half expected movement



My guess would be you have all jumpers off so you have 1/8 micro stepping, but you should have 1/16th micro stepping, with two jumpers MS1 and MS2 on



Edited 6 time(s). Last edit at 10/26/2022 04:23AM by Dust.
Sorry, only registered users may post in this forum.

Click here to login