summaryrefslogtreecommitdiff
path: root/AT91SAM7S256/Source/d_display.h
blob: a894685f1d15f2e3c4506b938f7a3856fc0ad544 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// Programmer      
//
// Date init       14.12.2004
//
// Reviser         $Author:: Dkandlun                                        $
//
// Revision date   $Date:: 14-11-07 12:40                                    $
//
// Filename        $Workfile:: d_display.h                                   $
//
// Version         $Revision:: 1                                             $
//
// Archive         $Archive:: /LMS2006/Sys01/Main_V02/Firmware/Source/d_disp $
//
// Platform        C
//

#ifndef   D_DISPLAY
#define   D_DISPLAY

void      dDisplayInit(void);
void      dDisplayOn(UBYTE On);
UBYTE     dDisplayUpdate(UWORD Height,UWORD Width,UBYTE *pImage);
void      dDisplayExit(void);



typedef   struct    
{
  UBYTE   StartX;
  UBYTE   StartY;
  UBYTE   PixelsX;
  UBYTE   PixelsY;
}
SCREEN_CORDINATE;


#endif