Skip to content

Commit

Permalink
Fix Octopus 12864 LCD Delays (MarlinFirmware#21883)
Browse files Browse the repository at this point in the history
  • Loading branch information
thisiskeithb authored and Night69 committed Aug 31, 2021
1 parent 8e57a68 commit f3e3b5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Marlin/src/pins/stm32f4/pins_BTT_OCTOPUS_V1_0.h
Original file line number Diff line number Diff line change
Expand Up @@ -489,13 +489,13 @@
// Alter timing for graphical display
#if HAS_MARLINUI_U8GLIB
#ifndef BOARD_ST7920_DELAY_1
#define BOARD_ST7920_DELAY_1 DELAY_NS(96)
#define BOARD_ST7920_DELAY_1 DELAY_NS(120) // DELAY_NS(96)
#endif
#ifndef BOARD_ST7920_DELAY_2
#define BOARD_ST7920_DELAY_2 DELAY_NS(48)
#define BOARD_ST7920_DELAY_2 DELAY_NS(80) // DELAY_NS(48)
#endif
#ifndef BOARD_ST7920_DELAY_3
#define BOARD_ST7920_DELAY_3 DELAY_NS(600)
#define BOARD_ST7920_DELAY_3 DELAY_NS(580) // DELAY_NS(600)
#endif
#endif

Expand Down

0 comments on commit f3e3b5f

Please sign in to comment.