Thank you for your anwer Carlo i make a printscreen of the uploaded pin changes.
can you tell me why you fill in -1 values at E1? is it to disable?
today i check the pins again and i saw the follow line:
#define MOTOR_CURRENT_PWM_E_PIN 46
i think i need change this pin number also because both extruder connectors have 4 pins, but no idea wich pin number i need to fill in?
Recommended Posts
CarloK 205
I haven't tried, but it sounds like you are making the correct changes.
The Ultimaker board has id 72 in the Marlin code.
Change:
#define E0_STEP_PIN 42
#define E0_DIR_PIN 43
#define E0_ENABLE_PIN 37
#define E1_STEP_PIN 49
#define E1_DIR_PIN 47
#define E1_ENABLE_PIN 48
into:
#define E0_STEP_PIN 49
#define E0_DIR_PIN 47
#define E0_ENABLE_PIN 48
#define E1_STEP_PIN -1
#define E1_DIR_PIN -1
#define E1_ENABLE_PIN -1
Too bad you didn't post your modified code, so we can't verify your changes.
Link to post
Share on other sites