drivers/lcd/st7565.c: Appease nxstyle

This commit is contained in:
YAMAMOTO Takashi 2020-11-29 16:27:36 +09:00 committed by Xiang Xiao
parent 66bca4865c
commit f347edd0fd
1 changed files with 4 additions and 1 deletions

View File

@ -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.
*/