Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
MarlinKimbra
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
MarlinKimbra
Commits
ae00f247
Commit
ae00f247
authored
9 years ago
by
MagoKimbra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix rele status at setup board
parent
7b2ee5da
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
8 deletions
+12
-8
stepper.cpp
MarlinKimbra/stepper.cpp
+12
-8
No files found.
MarlinKimbra/stepper.cpp
View file @
ae00f247
...
...
@@ -939,17 +939,21 @@ void st_init() {
#endif
//Choice E0-E1 or E0-E2 or E1-E3 pin
#if HAS(E0E1)
OUT_WRITE
(
E0E1_CHOICE_PIN
,
LOW
);
#if ENABLED(MKR4) && HAS(E0E1)
SET_OUTPUT
(
E0E1_CHOICE_PIN
);
WRITE_RELE
(
E0E1_CHOICE_PIN
,
0
);
#endif
#if HAS(E0E2)
OUT_WRITE
(
E0E2_CHOICE_PIN
,
LOW
);
#if ENABLED(MKR4) && HAS(E0E2)
SET_OUTPUT
(
E0E2_CHOICE_PIN
);
WRITE_RELE
(
E0E2_CHOICE_PIN
,
0
);
#endif
#if HAS(E0E3)
OUT_WRITE
(
E0E3_CHOICE_PIN
,
LOW
);
#if ENABLED(MKR4) && HAS(E0E3)
SET_OUTPUT
(
E0E3_CHOICE_PIN
);
WRITE_RELE
(
E0E3_CHOICE_PIN
,
0
);
#endif
#if HAS(E1E3)
OUT_WRITE
(
E1E3_CHOICE_PIN
,
LOW
);
#if ENABLED(MKR4) && HAS(E1E3)
SET_OUTPUT
(
E1E3_CHOICE_PIN
);
WRITE_RELE
(
E1E3_CHOICE_PIN
,
0
);
#endif
//endstops and pullups
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment