| Line No. | Rev | Author | Line |
|---|---|---|---|
| 1 | 32 | kaklik | /********************************************************************* |
| 2 | * |
||
| 3 | * LCD Access Routines header |
||
| 4 | * |
||
| 5 | ********************************************************************* |
||
| 6 | * FileName: LCDBlocking.h |
||
| 7 | * Dependencies: None |
||
| 8 | * Processor: PIC24F |
||
| 9 | * Compiler: MCC30 v2.01 or higher |
||
| 10 | * Company: Microchip Technology, Inc. |
||
| 11 | * |
||
| 12 | * Software License Agreement |
||
| 13 | * |
||
| 14 | * Copyright © 2002-2007 Microchip Technology Inc. All rights |
||
| 15 | * reserved. |
||
| 16 | * |
||
| 17 | * Microchip licenses to you the right to use, modify, copy, and |
||
| 18 | * distribute: |
||
| 19 | * (i) the Software when embedded on a Microchip microcontroller or |
||
| 20 | * digital signal controller product (Device) which is |
||
| 21 | * integrated into Licensees product; or |
||
| 22 | * (ii) ONLY the Software driver source files ENC28J60.c and |
||
| 23 | * ENC28J60.h ported to a non-Microchip device used in |
||
| 24 | * conjunction with a Microchip ethernet controller for the |
||
| 25 | * sole purpose of interfacing with the ethernet controller. |
||
| 26 | * |
||
| 27 | * You should refer to the license agreement accompanying this |
||
| 28 | * Software for additional information regarding your rights and |
||
| 29 | * obligations. |
||
| 30 | * |
||
| 31 | * THE SOFTWARE AND DOCUMENTATION ARE PROVIDED AS IS WITHOUT |
||
| 32 | * WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT |
||
| 33 | * LIMITATION, ANY WARRANTY OF MERCHANTABILITY, FITNESS FOR A |
||
| 34 | * PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL |
||
| 35 | * MICROCHIP BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR |
||
| 36 | * CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST OF |
||
| 37 | * PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY OR SERVICES, ANY CLAIMS |
||
| 38 | * BY THIRD PARTIES (INCLUDING BUT NOT LIMITED TO ANY DEFENSE |
||
| 39 | * THEREOF), ANY CLAIMS FOR INDEMNITY OR CONTRIBUTION, OR OTHER |
||
| 40 | * SIMILAR COSTS, WHETHER ASSERTED ON THE BASIS OF CONTRACT, TORT |
||
| 41 | * (INCLUDING NEGLIGENCE), BREACH OF WARRANTY, OR OTHERWISE. |
||
| 42 | * |
||
| 43 | * |
||
| 44 | * Author Date Comment |
||
| 45 | *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
||
| 46 | * Howard Schlunder 4/03/06 Original |
||
| 47 | ********************************************************************/ |
||
| 48 | #ifndef __LCDBLOCKING_H |
||
| 49 | #define __LCDBLOCKING_H |
||
| 50 | |||
| 51 | |||
| 52 | extern BYTE LCDText[16*2+1]; |
||
| 53 | void LCDInit(void); |
||
| 54 | void LCDUpdate(void); |
||
| 55 | void LCDErase(void); |
||
| 56 | |||
| 57 | |||
| 58 | void LCDWriteLine(WORD number, char *line); |
||
| 59 | |||
| 60 | #endif |
||
| 61 |
Powered by WebSVN v2.8.3