Skip to content

Commit

Permalink
Drivers: Set a buffer size we can actually fit in RAM.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Aug 14, 2024
1 parent 987aa0f commit 860e949
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/c/presto/presto.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
/***** Constants *****/
static const uint BACKLIGHT = 38;

static const int WIDTH = 480;
static const int HEIGHT = 480;
static const int WIDTH = 240;
static const int HEIGHT = 240;
static const uint LCD_CLK = 26;
static const uint LCD_CS = 28;
static const uint LCD_DAT = 27;
Expand Down

0 comments on commit 860e949

Please sign in to comment.