bmpFileInfoHeader is only used within LCD_Paint.
 
Symbols
loading...
Files
loading...

bmpFileInfoHeader variable

Syntax

static BitMapFileInfoHeader_Typedef bmpFileInfoHeader;

References

LocationReferrerText
main.c:70
static BitMapFileInfoHeader_Typedef bmpFileInfoHeader;
main.c:422Save_Picture()
bmpFileInfoHeader.biSize = 40; /* 40 bytes in bitmap info header */
main.c:423Save_Picture()
bmpFileInfoHeader.biWidth = (BSP_LCD_GetXSize() - 105);
main.c:424Save_Picture()
bmpFileInfoHeader.biHeight = (BSP_LCD_GetYSize() - 105);
main.c:425Save_Picture()
bmpFileInfoHeader.biPlanes = 1; /* one single plane */
main.c:426Save_Picture()
bmpFileInfoHeader.biBitCount = 24; /* RGB888 : 24 bits per pixel */
main.c:427Save_Picture()
bmpFileInfoHeader.biCompression = 0; /* no compression */
main.c:430Save_Picture()
bmpFileInfoHeader.biSizeImage = ((BSP_LCD_GetXSize() - 105) * (BSP_LCD_GetYSize() - 105 + 1) * RGB888_BYTE_PER_PIXEL);
main.c:432Save_Picture()
bmpFileInfoHeader.biXPelsPerMeter = 0; /* not used */
main.c:433Save_Picture()
bmpFileInfoHeader.biYPelsPerMeter = 0; /* not used */
main.c:434Save_Picture()
bmpFileInfoHeader.biClrUsed = 0; /* not used */
main.c:435Save_Picture()
bmpFileInfoHeader.biClrImportant = 0; /* not used */
main.c:506Save_Picture()
res2 = f_write(&MyFile, (BitMapFileInfoHeader_Typedef *)&bmpFileInfoHeader,
main.c:527Save_Picture()
bmpFileInfoHeader.biSizeImage,

Data Use

Functions reading bmpFileInfoHeader
bmpFileInfoHeader
all items filtered out
Type of bmpFileInfoHeader
bmpFileInfoHeader
all items filtered out