From d477e620be7ef8fd84420977a5ec5c3ebafe2cf3 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Sun, 27 Nov 2016 17:38:11 +0100 Subject: [PATCH] Fixing typo in ILI9488 driver --- drivers/gdisp/ILI9488/gdisp_lld_ILI9488.c | 4 ++-- 1 file 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);