aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gdisp
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@embedded.pro>2016-11-27 17:38:11 +0100
committerJoel Bodenmann <joel@embedded.pro>2016-11-27 17:38:11 +0100
commitd477e620be7ef8fd84420977a5ec5c3ebafe2cf3 (patch)
tree71a2237e4ea580611134ed518677c66d7b7ca9d0 /drivers/gdisp
parent792bc3889e4aacaf51a58e00568776c0f6c1029a (diff)
downloaduGFX-d477e620be7ef8fd84420977a5ec5c3ebafe2cf3.tar.gz
uGFX-d477e620be7ef8fd84420977a5ec5c3ebafe2cf3.tar.bz2
uGFX-d477e620be7ef8fd84420977a5ec5c3ebafe2cf3.zip
Fixing typo in ILI9488 driver
Diffstat (limited to 'drivers/gdisp')
-rw-r--r--drivers/gdisp/ILI9488/gdisp_lld_ILI9488.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gdisp/ILI9488/gdisp_lld_ILI9488.c b/drivers/gdisp/ILI9488/gdisp_lld_ILI9488.c
index 82e2e908..572b2983 100644
--- a/drivers/gdisp/ILI9488/gdisp_lld_ILI9488.c
+++ b/drivers/gdisp/ILI9488/gdisp_lld_ILI9488.c
@@ -92,7 +92,7 @@ LLDSPEC bool_t gdisp_lld_init(GDisplay *g) {
/* Get the bus for the following initialisation commands */
acquire_bus(g);
- write_index(g, 0XF7);
+ write_index(g, 0xF7);
write_data(g, 0xA9);
write_data(g, 0x51);
write_data(g, 0x2C);
@@ -105,7 +105,7 @@ LLDSPEC bool_t gdisp_lld_init(GDisplay *g) {
write_index(g, 0xC1);
write_data(g, 0x41);
- write_index(g, 0XC5);
+ write_index(g, 0xC5);
write_data(g, 0x00);
write_data(g, 0x2A);
write_data(g, 0x80);