OSDN Git Service

[BUG] Replace __18FxxKyy to pic18fxxkyy , __18FxxKyy is not decleared from sdcc.
[openi2cradio/OpenI2CRadio.git] / lcd_acm1602.h
1 /*
2  * OpenI2CRADIO
3  * I2C-LCD ACM1602 Handler(Header)
4  * Copyright (C) 2013-06-10 K.Ohta <whatisthis.sowhat ai gmail.com>
5  * License: GPL2+LE
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2,
10  *  or (at your option) any later version.
11  *  This library / program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14  *  See the GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this library; see the file COPYING. If not, write to the
18  *  Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
19  *  MA 02110-1301, USA.
20  *
21  *  As a special exception, if you link this(includeed from sdcc) library
22  *  with other files, some of which are compiled with SDCC,
23  *  to produce an executable, this library does not by itself cause
24  *  the resulting executable to be covered by the GNU General Public License.
25  *  This exception does not however invalidate any other reasons why
26  *  the executable file might be covered by the GNU General Public License.
27  */
28 #ifndef LCD_ACM1602_H
29 #define LCD_ACM1602_H
30
31 #include <stdarg.h>
32 #include <stdio.h>
33 #include <delay.h>
34 #include <string.h>
35
36 #include "iodef.h"
37 #include "i2c_io.h"
38
39
40 #ifdef  __cplusplus
41 extern "C" {
42 #endif
43
44 // Notes: Master clock = 8MHz(0.125uS)
45 // Wait 5us
46 #define _ACM1602_TC_WAIT()     delay10tcy(4)
47 // Wait 50us
48 #define _ACM1602_SHORT_WAIT()     delay100tcy(4)
49 // Wait 5ms
50 #define _ACM1602_LONG_WAIT()     delay1ktcy(40)
51 // Wait 50ms
52 #define _ACM1602_LONG_LONG_WAIT()     delay10ktcy(40)
53 // Wait 0.2ms
54 #define _ACM1602_I2C_WAIT()     delay100tcy(16)
55
56 void acm1602_cls(unsigned char addr);
57 void acm1602_putchar(unsigned char addr, unsigned char c);
58 void acm1602_locate(unsigned char addr, char x, char y);
59 void acm1602_home(unsigned char addr);
60 void acm1602_printf(unsigned char addr, const char *fmt, ...);
61 void acm1602_cursordir(unsigned char addr, unsigned char right);
62 void acm1602_init(unsigned char addr, unsigned char cls);
63
64
65
66 #ifdef  __cplusplus
67 }
68 #endif
69
70 #endif  /* LCD_ACM1602_H */
71