diff options
Diffstat (limited to 'drivers/gdisp/Nokia6610GE12/gdisp_lld.c')
-rw-r--r-- | drivers/gdisp/Nokia6610GE12/gdisp_lld.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/gdisp/Nokia6610GE12/gdisp_lld.c b/drivers/gdisp/Nokia6610GE12/gdisp_lld.c index d190c91a..9aa5ac53 100644 --- a/drivers/gdisp/Nokia6610GE12/gdisp_lld.c +++ b/drivers/gdisp/Nokia6610GE12/gdisp_lld.c @@ -106,11 +106,16 @@ LLDSPEC bool_t gdisp_lld_init(GDisplay *g) { delayms(20); acquire_bus(g); + write_index(g, SLEEPOUT); // Sleep out write_reg(g, COLMOD, 0x03); // Color Interface Pixel Format - 0x03 = 12 bits-per-pixel write_reg(g, MADCTL, 0x00); // Memory access controller write_reg(g, SETCON, 127*GDISP_INITIAL_CONTRAST/100-64); // Write contrast delayms(20); + + // Finish Init + post_init_board(g); + release_bus(g); /* Turn on the back-light */ |