10 lines
241 B
C
10 lines
241 B
C
#ifndef _TOOL_RGB565_TO_BMP_H_
|
|
#define _TOOL_RGB565_TO_BMP_H_
|
|
|
|
#include "ff.h"
|
|
|
|
int ToolRgb565ToBmpInfo(unsigned int nWidth, unsigned int nHeight, FIL *fp1);
|
|
int ToolRgb565ToBmpByte(char *RgbBuffer, uint32_t RgbBufferLen, FIL *fp1);
|
|
|
|
#endif
|