OSDN Git Service

[Schematic] Remove capacitor of MCLR/Power circuit, due of unstable.
[openi2cradio/OpenI2CRadio.git] / ui.h
1 /*
2  * OpenI2CRADIO
3  * UI Handler(Header)
4  * Copyright (C) 2013-06-10 K.Ohta <whatisthis.sowhat ai gmail.com>
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2,
9  *  or (at your option) any later version.
10  *  This library / program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13  *  See the GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this library; see the file COPYING. If not, write to the
17  *  Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
18  *  MA 02110-1301, USA.
19  *
20  *  As a special exception, if you link this(includeed from sdcc) library
21  *  with other files, some of which are compiled with SDCC,
22  *  to produce an executable, this library does not by itself cause
23  *  the resulting executable to be covered by the GNU General Public License.
24  *  This exception does not however invalidate any other reasons why
25  *  the executable file might be covered by the GNU General Public License.
26  */
27
28
29 #ifndef UI_H
30 #define UI_H
31
32 #if defined(__SDCC)
33 #include <sdcc-lib.h>
34 #include <pic18fregs.h> /* ONLY FOR PIC18x */
35 #endif
36
37 #include "lcd_acm1602.h"
38 #include "iodef.h"
39
40 #ifdef  __cplusplus
41 extern "C" {
42 #endif
43
44
45 extern keyin_defs keyin_old[2];
46 extern keyin_defs keyin_now;
47 extern char keyin_fifo[32];
48 extern char keyin_nowp;
49 extern char keyin_counter;
50
51 #define _LOCATE(x,y) acm1602_locate_16x2(0xa0, x, y)
52 #define _PUTCHAR(c) acm1602_putchar(0xa0, c)
53 #define _CURSOR_LEFT() acm1602_cursordir(0xa0, 0x00)
54 #define _CURSOR_RIGHT() acm1602_cursordir(0xa0, 0xff)
55 #define _CLS() acm1602_cls(0xa0);
56 #define _HOME() acm1602_home(0xa0);
57
58
59 extern void keyin_init(void);
60 #ifdef __SDCC
61 extern void push_keyinfifo(char b) __critical;
62 extern char pop_keyinfifo(void) __critical;
63 #else
64 extern void push_keyinfifo(char b);
65 extern char pop_keyinfifo(void);
66 #endif
67 extern unsigned char readkey_compare(void);
68
69 extern void printstr(char *s);
70 extern void print_numeric(int i, unsigned char supressf);
71 extern void setsignal_tune(unsigned char flag);
72 extern void set_backlight(unsigned char flag, unsigned int val);
73 extern unsigned int read_numeric(unsigned int initial, unsigned char digit,
74         char startx, char starty);
75 extern unsigned int subst_numeric(unsigned int start, unsigned char pos, unsigned int c);
76 extern void print_numeric_nosupress(unsigned int data, unsigned char digit);
77 extern unsigned char readkey(void);
78 extern unsigned char pollkeys(unsigned char *p, unsigned int limit, unsigned char repeat);
79 extern unsigned char pollkey_single(void);
80
81 #ifdef  __cplusplus
82 }
83 #endif
84
85 #endif  /* UI_H */
86