1 |
580 |
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 |
|
|
//------------------------------------------------------------------------------
|
31 |
|
|
/// \unit
|
32 |
|
|
///
|
33 |
|
|
/// !Purpose
|
34 |
|
|
///
|
35 |
|
|
/// Interface for configuration the LCD Controller (LCDC) peripheral.
|
36 |
|
|
///
|
37 |
|
|
/// !Usage
|
38 |
|
|
///
|
39 |
|
|
/// -# Decode the RGB file to designated buffer using LCD_DecodeRGB().
|
40 |
|
|
/// -# Sets the address of the frame buffer in the LCD controller DMA using
|
41 |
|
|
/// LCD_SetFrameBufferAddress().
|
42 |
|
|
/// -# LCD Configuration functions prefixed with "LCD_Set" refer to
|
43 |
|
|
/// the functions in the #Overview# tab.
|
44 |
|
|
///
|
45 |
|
|
/// Please refer to the list of functions in the #Overview# tab of this unit
|
46 |
|
|
/// for more detailed information.
|
47 |
|
|
//------------------------------------------------------------------------------
|
48 |
|
|
|
49 |
|
|
#ifndef LCD_H
|
50 |
|
|
#define LCD_H
|
51 |
|
|
|
52 |
|
|
//------------------------------------------------------------------------------
|
53 |
|
|
// Exported functions
|
54 |
|
|
//------------------------------------------------------------------------------
|
55 |
|
|
|
56 |
|
|
extern void LCD_Enable(unsigned int frames);
|
57 |
|
|
|
58 |
|
|
extern void LCD_Disable(unsigned int frames);
|
59 |
|
|
|
60 |
|
|
extern void LCD_EnableDma(void);
|
61 |
|
|
|
62 |
|
|
extern void LCD_DisableDma(void);
|
63 |
|
|
|
64 |
|
|
extern void LCD_EnableInterrupts(unsigned int sources);
|
65 |
|
|
|
66 |
|
|
extern void LCD_SetPixelClock(unsigned int masterClock, unsigned int pixelClock);
|
67 |
|
|
|
68 |
|
|
extern void LCD_SetDisplayType(unsigned int displayType);
|
69 |
|
|
|
70 |
|
|
extern void LCD_SetScanMode(unsigned int scanMode);
|
71 |
|
|
|
72 |
|
|
extern void LCD_SetBitsPerPixel(unsigned int bitsPerPixel);
|
73 |
|
|
|
74 |
|
|
extern void LCD_SetPolarities(
|
75 |
|
|
unsigned int lcdd,
|
76 |
|
|
unsigned int lcdvsync,
|
77 |
|
|
unsigned int lcdhsync,
|
78 |
|
|
unsigned int lcddotclk,
|
79 |
|
|
unsigned int lcdden);
|
80 |
|
|
|
81 |
|
|
extern void LCD_SetClockMode(unsigned int clockMode);
|
82 |
|
|
|
83 |
|
|
extern void LCD_SetMemoryFormat(unsigned int format);
|
84 |
|
|
|
85 |
|
|
extern void LCD_SetSize(unsigned int width, unsigned int height);
|
86 |
|
|
|
87 |
|
|
extern void LCD_SetVerticalTimings(
|
88 |
|
|
unsigned int vfp,
|
89 |
|
|
unsigned int vbp,
|
90 |
|
|
unsigned int vpw,
|
91 |
|
|
unsigned int vhdly);
|
92 |
|
|
|
93 |
|
|
extern void LCD_SetHorizontalTimings(
|
94 |
|
|
unsigned int hbp,
|
95 |
|
|
unsigned int hpw,
|
96 |
|
|
unsigned int hfp);
|
97 |
|
|
|
98 |
|
|
extern void* LCD_SetFrameBufferAddress(void *address);
|
99 |
|
|
|
100 |
|
|
extern void LCD_SetFrameSize(unsigned int frameSize);
|
101 |
|
|
|
102 |
|
|
extern void LCD_SetBurstLength(unsigned int burstLength);
|
103 |
|
|
|
104 |
|
|
extern void LCD_SetContrastPrescaler(unsigned int prescaler);
|
105 |
|
|
|
106 |
|
|
extern void LCD_SetContrastPolarity(unsigned int polarity);
|
107 |
|
|
|
108 |
|
|
extern void LCD_SetContrastValue(unsigned int value);
|
109 |
|
|
|
110 |
|
|
extern void LCD_EnableContrast(void);
|
111 |
|
|
|
112 |
|
|
extern void LCD_SetPixelClock(unsigned int masterClock, unsigned int pixelClock);
|
113 |
|
|
|
114 |
|
|
extern void LCD_DMAReset(void);
|
115 |
|
|
|
116 |
|
|
extern void LCD_DecodeRGB(
|
117 |
|
|
unsigned char *file,
|
118 |
|
|
unsigned char *bufferLCD,
|
119 |
|
|
unsigned int width,
|
120 |
|
|
unsigned int height,
|
121 |
|
|
unsigned char bpp);
|
122 |
|
|
|
123 |
|
|
#endif //#ifndef LCD_H
|
124 |
|
|
|