Browse Source

Permit ST7789V orientation override (#19044)

vanilla_fb_2.0.x
mmajoor 4 years ago
committed by GitHub
parent
commit
8cededa7dd
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      Marlin/src/lcd/tft/st7789v.h

4
Marlin/src/lcd/tft/st7789v.h

@ -39,7 +39,9 @@
#define ST7789V_ORIENTATION_DOWN 0 // 240x320 ; Cable on the lower side
//#define ST7789V_COLOR_BGR
#define ST7789V_ORIENTATION ST7789V_ORIENTATION_LEFT
#ifndef ST7789V_ORIENTATION
#define ST7789V_ORIENTATION ST7789V_ORIENTATION_LEFT
#endif
#define ST7789V_MADCTL_DATA (ST7789V_ORIENTATION | TERN(ST7789V_COLOR_BGR, ST7789V_MADCTL_BGR, ST7789V_MADCTL_RGB))
#define ST7789V_NOP 0x00 // No Operation

Loading…
Cancel
Save