Skip to content

Commit

Permalink
also
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Jun 4, 2023
1 parent 0413abc commit c05b6c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions Marlin/src/inc/Conditionals_post.h
Original file line number Diff line number Diff line change
Expand Up @@ -473,9 +473,8 @@
#define _LCD_CONTRAST_MIN 120
#define _LCD_CONTRAST_INIT 195
#elif ENABLED(FYSETC_MINI_12864_2_1)
#define _LCD_CONTRAST_MIN 127
#define _LCD_CONTRAST_INIT 230
#define _LCD_CONTRAST_MAX 255 // not sure what these should be defined, but it's close enough
#define _LCD_CONTRAST_MIN 230
#define _LCD_CONTRAST_INIT 255
#elif ENABLED(FYSETC_MINI_12864)
#define _LCD_CONTRAST_MIN 180
#define _LCD_CONTRAST_INIT 220
Expand Down
2 changes: 1 addition & 1 deletion Marlin/src/module/stepper/indirection.h
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ void reset_stepper_drivers(); // Called by settings.load / settings.reset
#elif E_STEPPERS == 1
#define E_STEP_WRITE(E,V) E0_STEP_WRITE(V)
#define FWD_E_DIR(E) E0_DIR_WRITE(HIGH)
#define REV_E_DIR(E) E0_DIR_WRITE(LOW)
#define REV_E_DIR(E) E0_DIR_WRITE(LOW )

#else
#define E_STEP_WRITE(E,V) NOOP
Expand Down

0 comments on commit c05b6c3

Please sign in to comment.