| Line No. | Rev | Author | Line |
|---|---|---|---|
| 1 | 32 | kaklik | /***************************************************************************** |
| 2 | * Microchip Graphics Library |
||
| 3 | * Graphics Display Designer (GDD) Template |
||
| 4 | ***************************************************************************** |
||
| 5 | * FileName: Main.h |
||
| 6 | * Dependencies: See INCLUDES section below |
||
| 7 | * Processor: PIC24F, PIC24H, dsPIC, PIC32 |
||
| 8 | * Compiler: MPLAB C30 V3.22, MPLAB C32 V1.05b |
||
| 9 | * Linker: MPLAB LINK30, MPLAB LINK32 |
||
| 10 | * Company: Microchip Technology Incorporated |
||
| 11 | * |
||
| 12 | * Software License Agreement |
||
| 13 | * |
||
| 14 | * Copyright © 2010 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 | * |
||
| 39 | *****************************************************************************/ |
||
| 40 | #ifndef _MAIN_H_ |
||
| 41 | #define _MAIN_H_ |
||
| 42 | |||
| 43 | ////////////////////////////// INCLUDES ////////////////////////////// |
||
| 44 | #if defined(__dsPIC33F__) |
||
| 45 | #include <p33Fxxxx.h> |
||
| 46 | #elif defined(__PIC24H__) |
||
| 47 | #include <p24Hxxxx.h> |
||
| 48 | #elif defined(__PIC32MX__) |
||
| 49 | #include <plib.h> |
||
| 50 | #elif defined (__PIC24F__) |
||
| 51 | #include <p24Fxxxx.h> |
||
| 52 | #else |
||
| 53 | #error "Device selected is not supported." |
||
| 54 | #endif |
||
| 55 | #include "GenericTypeDefs.h" |
||
| 56 | #include "Graphics\Graphics.h" |
||
| 57 | #include "EEPROM.h" |
||
| 58 | #include "SST25VF016.h" |
||
| 59 | #include "TouchScreen.h" |
||
| 60 | #include "Beep.h" |
||
| 61 | #endif |
Powered by WebSVN v2.8.3