diff --git a/drivers/lcd/st7565.c b/drivers/lcd/st7565.c index ed0cda0951..c41f9243bf 100644 --- a/drivers/lcd/st7565.c +++ b/drivers/lcd/st7565.c @@ -190,7 +190,8 @@ struct st7565_dev_s /* The ST7565 does not support reading from the display memory in SPI mode. * Since there is 1 BPP and access is byte-by-byte, it is necessary to keep - * a shadow copy of the framebuffer memory. */ + * a shadow copy of the framebuffer memory. + */ uint8_t fb[ST7565_FBSIZE]; }; @@ -299,6 +300,7 @@ static struct st7565_dev_s g_st7565dev = .getplaneinfo = st7565_getplaneinfo, /* LCD RGB Mapping -- Not supported */ + /* Cursor Controls -- Not supported */ /* LCD Specific Controls */ @@ -630,6 +632,7 @@ static int st7565_getrun(fb_coord_t row, fb_coord_t col, FAR uint8_t * buffer, } /* Then transfer the display data from the shadow frame buffer memory */ + /* Get the page number. The range of 64 lines is divided up into eight pages * of 8 lines each. */