1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-24 12:35:51 +00:00

🩹 Improved SKR2 12864 LCD Delays (#21956)

This commit is contained in:
LawnMo 2021-05-24 09:21:21 +02:00 committed by GitHub
parent 76e80aa400
commit 0d7075b90c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -502,13 +502,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)
#endif
#ifndef BOARD_ST7920_DELAY_2
#define BOARD_ST7920_DELAY_2 DELAY_NS(48)
#define BOARD_ST7920_DELAY_2 DELAY_NS(80)
#endif
#ifndef BOARD_ST7920_DELAY_3
#define BOARD_ST7920_DELAY_3 DELAY_NS(600)
#define BOARD_ST7920_DELAY_3 DELAY_NS(580)
#endif
#endif