OSDN Git Service

[UI] Add help features, press "F" key.
[openi2cradio/OpenI2CRadio.git] / menu.h
1 /*
2  * OpenI2CRADIO
3  * Menu sub-routines.
4  * Copyright (C) 2013-06-21 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
29 #ifndef MENU_H
30 #define MENU_H
31
32 #include <stdarg.h>
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <string.h>
36 #include <sdcc-lib.h>
37 #include <pic18fregs.h> /* ONLY FOR PIC18x */
38 #include <delay.h>
39
40 #include "iodef.h"
41 #include "idle.h"
42 #include "i2c_io.h"
43 #include "akc6955.h"
44 #include "lcd_acm1602.h"
45 #include "ui.h"
46 #include "eeprom.h"
47 #include "ioports.h"
48
49 #ifdef  __cplusplus
50 extern "C" {
51 #endif
52 #define USER_BAND_NUM 4
53     typedef struct {
54         unsigned char mode3k; // mode3k if am
55         unsigned char start;
56         unsigned char stop;
57         unsigned int freq;
58     } _userband_t;
59     /*
60      * main.c
61      */
62     extern unsigned int amfreq;
63     extern unsigned int fmfreq;
64     extern unsigned char amband;
65     extern unsigned char fmband;
66     extern unsigned char fm;
67     extern unsigned char am_mode3k;
68     extern unsigned char am_userbandnum;
69     extern unsigned char fm_userbandnum;
70     extern _userband_t am_usrbands[USER_BAND_NUM];
71     extern _userband_t fm_usrbands[USER_BAND_NUM];
72
73     extern unsigned char enter_mode;
74     extern unsigned char numeric_mode;
75     extern unsigned char menu_node;
76     extern int backlight_long;
77     extern unsigned char help_flag;
78     extern int help_line;
79     extern int help_section;
80     extern int ui_language;
81     extern unsigned int ui_idlecount;
82     extern unsigned char scanflag;
83
84     extern int recv_signal;
85     extern int backlight_counter;
86     extern unsigned char backlight_level;
87     extern unsigned char pollkeybuf[33];
88
89     extern void update_display(void);
90     extern void update_status(void);
91     extern void updown_help(void);
92     extern void mainmenu_help(void);
93
94     /*
95      * menu.c
96      */
97     extern void main_menu(void);
98     extern void input_userband(void);
99     extern void set_userband(void);
100     extern void call_userband(unsigned char num);
101     extern void setband_direct(void);
102     extern void setfreq_direct(void);
103     extern void scan_start(void);
104     extern void set_volume(void);
105     extern void toggle_amfm(void);
106
107
108
109
110
111
112 #ifdef  __cplusplus
113 }
114 #endif
115
116 #endif  /* MENU_H */
117