aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Albers Raviola <thomas@thomaslabs.org>2025-02-12 01:26:51 +0100
committerThomas Albers Raviola <thomas@thomaslabs.org>2025-02-12 01:26:51 +0100
commit8ac78b9953908d2a4ffece855296fb7597440cce (patch)
treecb4a19181554e3c162967c64cfb916e6cc71ccb3
parent2f3b2a30a42a20c0ba432e4cde1876521f127e8b (diff)
Use custom types
-rw-r--r--include/tft.h1
-rw-r--r--src/tft.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/include/tft.h b/include/tft.h
index c7dd680..9232d6d 100644
--- a/include/tft.h
+++ b/include/tft.h
@@ -2,6 +2,7 @@
#define TFT_H
#include <zeta.h>
+#include <hardware.h>
#define TFT_WIDTH 480
#define TFT_HEIGHT 320
diff --git a/src/tft.c b/src/tft.c
index 8eca5c5..3889ee7 100644
--- a/src/tft.c
+++ b/src/tft.c
@@ -80,7 +80,7 @@ tft_set_page_addr(u16 start, u16 end)
}
void
-tft_set_area(unsigned int x, unsigned int y, unsigned int w, unsigned int h)
+tft_set_area(u16 x, u16 y, u16 w, u16 h)
{
tft_set_col_addr(x, x + w - 1);
tft_set_page_addr(y, y + h - 1);