-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsdbmp.h
More file actions
22 lines (17 loc) · 717 Bytes
/
sdbmp.h
File metadata and controls
22 lines (17 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/***********************************************************************************************
* display bmp 24 bit with circuitidea.com BL-TFT240320PLUS
* File name : sdbmp.h
* Programmer : jaruwit supa
* Web presence : www.circuitidea.com
* Note : display bmp on qvga display
* Language : avrGCC
* Hardware : atmega16
* Date : 19/09/2009
*************************************************************************************************/
#ifndef __SDBMP_H__
#define __SDBMP_H__
extern unsigned long bmpWidth; //Width (pixels)
extern unsigned long bmpHeight; //Height (pixels)
extern FRESULT bmpFile(char * pFile);
extern void bmpShow(unsigned int x, unsigned int y);
#endif