Browse Source

Fix Octopus 12864 LCD Delays (#21883)

Keith Bennett 4 years ago
parent
commit
fe60a18923
No account linked to committer's email address
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      Marlin/src/pins/stm32f4/pins_BTT_OCTOPUS_V1_0.h

+ 3
- 3
Marlin/src/pins/stm32f4/pins_BTT_OCTOPUS_V1_0.h View File

@@ -492,13 +492,13 @@
492 492
 // Alter timing for graphical display
493 493
 #if HAS_MARLINUI_U8GLIB
494 494
   #ifndef BOARD_ST7920_DELAY_1
495
-    #define BOARD_ST7920_DELAY_1    DELAY_NS(96)
495
+    #define BOARD_ST7920_DELAY_1   DELAY_NS(120)  // DELAY_NS(96)
496 496
   #endif
497 497
   #ifndef BOARD_ST7920_DELAY_2
498
-    #define BOARD_ST7920_DELAY_2    DELAY_NS(48)
498
+    #define BOARD_ST7920_DELAY_2   DELAY_NS(80)   // DELAY_NS(48)
499 499
   #endif
500 500
   #ifndef BOARD_ST7920_DELAY_3
501
-    #define BOARD_ST7920_DELAY_3   DELAY_NS(600)
501
+    #define BOARD_ST7920_DELAY_3   DELAY_NS(580)  // DELAY_NS(600)
502 502
   #endif
503 503
 #endif
504 504
 

Loading…
Cancel
Save