From f347edd0fd03f40a2179846d7da895a973ec3f89 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Sun, 29 Nov 2020 16:27:36 +0900 Subject: [PATCH] drivers/lcd/st7565.c: Appease nxstyle --- drivers/lcd/st7565.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/lcd/st7565.c b/drivers/lcd/st7565.c index ed0cda0951c..c41f9243bfd 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. */