aboutsummaryrefslogtreecommitdiff
path: root/AT91SAM7S256/Source/d_display.c
blob: 89d22fd4117f42540547b66671b26c4e29a0c560 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//
// Programmer
//
// Date init       14.12.2004
//
// Reviser         $Author:: Dkandlun                                        $
//
// Revision date   $Date:: 14-11-07 12:40                                    $
//
// Filename        $Workfile:: d_display.c                                   $
//
// Version         $Revision:: 1                                             $
//
// Archive         $Archive:: /LMS2006/Sys01/Main_V02/Firmware/Source/d_disp $
//
// Platform        C
//

#include  "stdconst.h"
#include  "m_sched.h"
#include  "d_display.h"
#include  "d_display.r"


void      dDisplayInit(void)
{
  DISPLAYInit;
}


void      dDisplayOn(UBYTE On, UBYTE Contrast)
{
  if (On)
  {
    DISPLAYOn(Contrast);
  }
  else
  {
    DISPLAYOff;
  }
}


UBYTE     dDisplayUpdate(UWORD Height,UWORD Width,UBYTE *pImage)
{
  return (DISPLAYUpdate(Height,Width,pImage));
}


void      dDisplayExit(void)
{
  DISPLAYExit;
}