Reduce RAM usage for TFT Color UI on SGen-L V2 (#20209)

This commit is contained in:
Victor Oliveira
2020-11-19 16:47:49 -03:00
committed by Scott Lahteine
parent 40071c3fb9
commit 0264841dc4
2 changed files with 13 additions and 4 deletions

View File

@@ -268,8 +268,12 @@
#define LCD_PINS_ENABLE -1
#define LCD_PINS_RS -1
#define TFT_BUFFER_SIZE 1200
#define TFT_QUEUE_SIZE 6144
#ifndef TFT_BUFFER_SIZE
#define TFT_BUFFER_SIZE 1200
#endif
#ifndef TFT_QUEUE_SIZE
#define TFT_QUEUE_SIZE 6144
#endif
#define BTN_EN1 P3_25
#define BTN_EN2 P3_26