1 |
608 |
jeremybenn |
/* ----------------------------------------------------------------------------
|
2 |
|
|
* ATMEL Microcontroller Software Support
|
3 |
|
|
* ----------------------------------------------------------------------------
|
4 |
|
|
* Copyright (c) 2008, Atmel Corporation
|
5 |
|
|
*
|
6 |
|
|
* All rights reserved.
|
7 |
|
|
*
|
8 |
|
|
* Redistribution and use in source and binary forms, with or without
|
9 |
|
|
* modification, are permitted provided that the following conditions are met:
|
10 |
|
|
*
|
11 |
|
|
* - Redistributions of source code must retain the above copyright notice,
|
12 |
|
|
* this list of conditions and the disclaimer below.
|
13 |
|
|
*
|
14 |
|
|
* Atmel's name may not be used to endorse or promote products derived from
|
15 |
|
|
* this software without specific prior written permission.
|
16 |
|
|
*
|
17 |
|
|
* DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR
|
18 |
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
19 |
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
|
20 |
|
|
* DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,
|
21 |
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
22 |
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
23 |
|
|
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
24 |
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
25 |
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
26 |
|
|
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
27 |
|
|
* ----------------------------------------------------------------------------
|
28 |
|
|
*/
|
29 |
|
|
|
30 |
|
|
#ifndef LCD_H
|
31 |
|
|
#define LCD_H
|
32 |
|
|
|
33 |
|
|
//------------------------------------------------------------------------------
|
34 |
|
|
// Exported functions
|
35 |
|
|
//------------------------------------------------------------------------------
|
36 |
|
|
|
37 |
|
|
extern void LCD_Enable(unsigned int frames);
|
38 |
|
|
|
39 |
|
|
extern void LCD_Disable(unsigned int frames);
|
40 |
|
|
|
41 |
|
|
extern void LCD_EnableDma();
|
42 |
|
|
|
43 |
|
|
extern void LCD_DisableDma();
|
44 |
|
|
|
45 |
|
|
extern void LCD_SetPixelClock(unsigned int masterClock, unsigned int pixelClock);
|
46 |
|
|
|
47 |
|
|
extern void LCD_SetDisplayType(unsigned int displayType);
|
48 |
|
|
|
49 |
|
|
extern void LCD_SetScanMode(unsigned int scanMode);
|
50 |
|
|
|
51 |
|
|
extern void LCD_SetBitsPerPixel(unsigned int bitsPerPixel);
|
52 |
|
|
|
53 |
|
|
extern void LCD_SetPolarities(
|
54 |
|
|
unsigned int lcdd,
|
55 |
|
|
unsigned int lcdvsync,
|
56 |
|
|
unsigned int lcdhsync,
|
57 |
|
|
unsigned int lcddotclk,
|
58 |
|
|
unsigned int lcdden);
|
59 |
|
|
|
60 |
|
|
extern void LCD_SetClockMode(unsigned int clockMode);
|
61 |
|
|
|
62 |
|
|
extern void LCD_SetMemoryFormat(unsigned int format);
|
63 |
|
|
|
64 |
|
|
extern void LCD_SetSize(unsigned int width, unsigned int height);
|
65 |
|
|
|
66 |
|
|
extern void LCD_SetVerticalTimings(
|
67 |
|
|
unsigned int vfp,
|
68 |
|
|
unsigned int vbp,
|
69 |
|
|
unsigned int vpw,
|
70 |
|
|
unsigned int vhdly);
|
71 |
|
|
|
72 |
|
|
extern void LCD_SetHorizontalTimings(
|
73 |
|
|
unsigned int hbp,
|
74 |
|
|
unsigned int hpw,
|
75 |
|
|
unsigned int hfp);
|
76 |
|
|
|
77 |
|
|
extern void LCD_SetFrameBufferAddress(void *address);
|
78 |
|
|
|
79 |
|
|
extern void LCD_SetFrameSize(unsigned int frameSize);
|
80 |
|
|
|
81 |
|
|
extern void LCD_SetBurstLength(unsigned int burstLength);
|
82 |
|
|
|
83 |
|
|
extern void LCD_SetContrastPrescaler(unsigned int prescaler);
|
84 |
|
|
|
85 |
|
|
extern void LCD_SetContrastPolarity(unsigned int polarity);
|
86 |
|
|
|
87 |
|
|
extern void LCD_SetContrastValue(unsigned int value);
|
88 |
|
|
|
89 |
|
|
extern void LCD_EnableContrast();
|
90 |
|
|
|
91 |
|
|
#endif //#ifndef LCD_H
|
92 |
|
|
|