Revision 14, 1.1 kB
(checked in by phil, 15 years ago)
|
added unmodified FreeRTOS package V5.4.1 with only web srv demo source for LPC2368 for CrossWorks?
|
Line | |
---|
1 |
/***************************************************************************** |
---|
2 |
* rtc.h: Header file for NXP LPC23xx/24xx Family Microprocessors |
---|
3 |
* |
---|
4 |
* Copyright(C) 2006, NXP Semiconductor |
---|
5 |
* All rights reserved. |
---|
6 |
* |
---|
7 |
* History |
---|
8 |
* 2006.07.13 ver 1.00 Prelimnary version, first Release |
---|
9 |
* |
---|
10 |
******************************************************************************/ |
---|
11 |
#ifndef __PORTLCD_H |
---|
12 |
#define __PORTLCD_H |
---|
13 |
|
---|
14 |
extern void LCD_init(void); |
---|
15 |
extern void LCD_load(unsigned char *fp, unsigned int cnt); |
---|
16 |
extern void LCD_gotoxy(unsigned int x, unsigned int y); |
---|
17 |
extern void LCD_cls(void); |
---|
18 |
extern void LCD_cur_off(void); |
---|
19 |
extern void LCD_on(void); |
---|
20 |
extern void LCD_putc(unsigned char c); |
---|
21 |
extern void LCD_puts(unsigned char *sp); |
---|
22 |
extern void LCD_bargraph(unsigned int val, unsigned int size); |
---|
23 |
|
---|
24 |
extern void LCD_putnibble(unsigned char nibble); |
---|
25 |
extern void LCD_puthexbyte(unsigned char abyte); |
---|
26 |
|
---|
27 |
|
---|
28 |
#endif /* end __PORTLCD_H */ |
---|
29 |
/***************************************************************************** |
---|
30 |
** End Of File |
---|
31 |
******************************************************************************/ |
---|