Line No. | Rev | Author | Line |
---|---|---|---|
1 | 32 | kaklik | /***************************************************************************** |
2 | * Module for Microchip Graphics Library |
||
3 | * Main header file for the display driver |
||
4 | ***************************************************************************** |
||
5 | * FileName: DisplayDriver.h |
||
6 | * Dependencies: p24Fxxxx.h or plib.h |
||
7 | * Processor: PIC24F, PIC24H, dsPIC, PIC32 |
||
8 | * Compiler: MPLAB C30, MPLAB C32 |
||
9 | * Linker: MPLAB LINK30, MPLAB LINK32 |
||
10 | * Company: Microchip Technology Incorporated |
||
11 | * |
||
12 | * Software License Agreement |
||
13 | * |
||
14 | * Copyright © 2008 Microchip Technology Inc. All rights reserved. |
||
15 | * Microchip licenses to you the right to use, modify, copy and distribute |
||
16 | * Software only when embedded on a Microchip microcontroller or digital |
||
17 | * signal controller, which is integrated into your product or third party |
||
18 | * product (pursuant to the sublicense terms in the accompanying license |
||
19 | * agreement). |
||
20 | * |
||
21 | * You should refer to the license agreement accompanying this Software |
||
22 | * for additional information regarding your rights and obligations. |
||
23 | * |
||
24 | * SOFTWARE AND DOCUMENTATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY |
||
25 | * KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, ANY WARRANTY |
||
26 | * OF MERCHANTABILITY, TITLE, NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR |
||
27 | * PURPOSE. IN NO EVENT SHALL MICROCHIP OR ITS LICENSORS BE LIABLE OR |
||
28 | * OBLIGATED UNDER CONTRACT, NEGLIGENCE, STRICT LIABILITY, CONTRIBUTION, |
||
29 | * BREACH OF WARRANTY, OR OTHER LEGAL EQUITABLE THEORY ANY DIRECT OR INDIRECT |
||
30 | * DAMAGES OR EXPENSES INCLUDING BUT NOT LIMITED TO ANY INCIDENTAL, SPECIAL, |
||
31 | * INDIRECT, PUNITIVE OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, |
||
32 | * COST OF PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY, SERVICES, OR ANY |
||
33 | * CLAIMS BY THIRD PARTIES (INCLUDING BUT NOT LIMITED TO ANY DEFENSE THEREOF), |
||
34 | * OR OTHER SIMILAR COSTS. |
||
35 | * |
||
36 | * Author Date Comment |
||
37 | *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
||
38 | * Anton Alkhimenok 09/04/08 |
||
39 | *****************************************************************************/ |
||
40 | #ifndef _DISPLAYDRIVER_H |
||
41 | #define _DISPLAYDRIVER_H |
||
42 | |||
43 | #if (DISPLAY_CONTROLLER == CUSTOM_CONTROLLER) |
||
44 | #include "Graphics\CustomDisplayDriver.h" |
||
45 | |||
46 | #elif (DISPLAY_CONTROLLER == MCHP_DA210) |
||
47 | #include "Graphics\MicrochipGraphicsModule.h" |
||
48 | |||
49 | #elif (DISPLAY_CONTROLLER == SSD1906) |
||
50 | #include "Graphics\SSD1906.h" |
||
51 | |||
52 | #elif (DISPLAY_CONTROLLER == SSD1926) |
||
53 | #include "Graphics\SSD1926.h" |
||
54 | |||
55 | #elif (DISPLAY_CONTROLLER == S6D0129) |
||
56 | #include "Graphics\drvTFT001.h" |
||
57 | |||
58 | #elif (DISPLAY_CONTROLLER == S6D0139) |
||
59 | #include "Graphics\drvTFT001.h" |
||
60 | |||
61 | #elif (DISPLAY_CONTROLLER == LGDP4531) |
||
62 | #include "Graphics\drvTFT001.h" |
||
63 | |||
64 | #elif (DISPLAY_CONTROLLER == R61505) |
||
65 | #include "Graphics\drvTFT001.h" |
||
66 | |||
67 | #elif (DISPLAY_CONTROLLER == SPFD5408) |
||
68 | #include "Graphics\drvTFT001.h" |
||
69 | |||
70 | #elif (DISPLAY_CONTROLLER == SSD1339) |
||
71 | #include "Graphics\SSD1339.h" |
||
72 | |||
73 | #elif (DISPLAY_CONTROLLER == ST7529) |
||
74 | #include "Graphics\ST7529.h" |
||
75 | |||
76 | #elif (DISPLAY_CONTROLLER == SH1101A) |
||
77 | #include "Graphics\SH1101A_SSD1303.h" |
||
78 | |||
79 | #elif (DISPLAY_CONTROLLER == SSD1303) |
||
80 | #include "Graphics\SH1101A_SSD1303.h" |
||
81 | |||
82 | #elif (DISPLAY_CONTROLLER == HIT1270) |
||
83 | #include "Graphics\HIT1270.h" |
||
84 | |||
85 | #elif (DISPLAY_CONTROLLER == UC1610) |
||
86 | #include "Graphics\UC1610.h" |
||
87 | |||
88 | #elif (DISPLAY_CONTROLLER == ILI9320) |
||
89 | #include "Graphics\drvTFT001.h" |
||
90 | |||
91 | #elif (DISPLAY_CONTROLLER == HX8347A) || (DISPLAY_CONTROLLER == HX8347D) |
||
92 | #include "Graphics\HX8347.h" |
||
93 | |||
94 | #elif (DISPLAY_CONTROLLER == SSD1289) |
||
95 | #include "Graphics\drvTFT002.h" |
||
96 | |||
97 | #elif (DISPLAY_CONTROLLER == NO_CONTROLLER_DEFINED) |
||
98 | #elif (DISPLAY_CONTROLLER == R61580) |
||
99 | #include "Graphics\drvTFT001.h" |
||
100 | |||
101 | #elif (DISPLAY_CONTROLLER == SSD2119) |
||
102 | #include "Graphics\drvTFT002.h" |
||
103 | |||
104 | #else |
||
105 | #error GRAPHICS CONTROLLER IS NOT SUPPORTED |
||
106 | #endif |
||
107 | #endif |
Powered by WebSVN v2.8.3