Skip to content

Commit

Permalink
Maybe fixed configuration issues
Browse files Browse the repository at this point in the history
- Redefined HOMING FEEDRATE to remove 0

- Added LOW to end of each MICROSTEP as placeholder for X_MS3
  • Loading branch information
JeriahN committed Feb 25, 2024
1 parent 8ff3c60 commit de5b27f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 26 deletions.
21 changes: 1 addition & 20 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,21 +1,2 @@
# Set the default behavior, in case people don't have core.autocrlf set.
# Auto detect text files and perform LF normalization
* text=auto

# Files with Unix line endings
*.c text eol=lf
*.cpp text eol=lf
*.h text eol=lf
*.ino text eol=lf
*.py text eol=lf
*.sh text eol=lf
*.scad text eol=lf

# Files with native line endings
# *.sln text

# Binary files
*.png binary
*.jpg binary
*.fon binary
*.bin binary
*.woff binary
2 changes: 1 addition & 1 deletion Marlin/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2150,7 +2150,7 @@
#endif

// Homing speeds (linear=mm/min, rotational=°/min)
#define HOMING_FEEDRATE_MM_M {50*60, 50*60, 15*60, 0}
#define HOMING_FEEDRATE_MM_M {50*60, 50*60, 15*60}

// Validate that endstops are triggered on homing moves
#define VALIDATE_HOMING_ENDSTOPS
Expand Down
10 changes: 5 additions & 5 deletions Marlin/Configuration_adv.h
Original file line number Diff line number Diff line change
Expand Up @@ -1281,11 +1281,11 @@
* Custom Microstepping
* Override as-needed for your setup. Up to 3 MS pins are supported.
*/
#define MICROSTEP1 LOW,LOW
#define MICROSTEP2 HIGH,LOW
#define MICROSTEP4 HIGH,LOW
#define MICROSTEP8 HIGH,HIGH
#define MICROSTEP16 HIGH,HIGH
#define MICROSTEP1 LOW,LOW,LOW
#define MICROSTEP2 HIGH,LOW,LOW
#define MICROSTEP4 HIGH,LOW,LOW
#define MICROSTEP8 HIGH,HIGH,LOW
#define MICROSTEP16 HIGH,HIGH,LOW
// #define MICROSTEP32 HIGH,LOW,HIGH

// Microstep settings (Requires a board with pins named X_MS1, X_MS2, etc.)
Expand Down

0 comments on commit de5b27f

Please sign in to comment.