OSDN Git Service

[DOC] v1.0RC3.
[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 #if defined(__SDCC)
37 #include <sdcc-lib.h>
38 #include <pic18fregs.h> /* ONLY FOR PIC18x */
39 #include <delay.h>
40 #else
41 #include <xc.h>
42 #endif
43
44 #include "iodef.h"
45 #include "idle.h"
46 #include "i2c_io.h"
47 #include "akc6955.h"
48 #include "lcd_acm1602.h"
49 #include "ui.h"
50 #include "eeprom.h"
51 #include "ioports.h"
52 #include "helps.h"
53 #include "menu_ui.h"
54 #include "eeprom_util.h"
55
56
57 #ifdef  __cplusplus
58 extern "C" {
59 #endif
60 #define USER_BAND_NUM 3
61     typedef struct {
62         unsigned char mode3k; // mode3k if am
63         unsigned char start;
64         unsigned char stop;
65         unsigned int freq;
66     } _userband_t;
67     
68 #define USER_MEMORY_NUM 28
69     typedef struct {
70         unsigned char band;
71         unsigned char fm;
72         unsigned int freq;
73     } _memoryfreq_t;
74     /*
75      * main.c
76      */
77 // Frequencyset of 1Sector.
78 // Below v1.0.
79 typedef struct {
80     unsigned int magic;
81     unsigned int version;
82     unsigned int pagenum;
83     _memoryfreq_t memoryfreqs[USER_MEMORY_NUM];
84     unsigned int checksum;
85 } __freqset_t;
86
87 typedef struct {
88     unsigned int amfreq;
89     unsigned int fmfreq;
90     unsigned int amfreq_bank[AKC6955_BAND_AMEND];
91     unsigned int fmfreq_bank[AKC6955_BAND_FMEND];
92     unsigned char amband;
93     unsigned char fmband;
94     unsigned char fm;
95     unsigned char am_mode3k;
96     unsigned char am_userbandnum;
97     unsigned char fm_userbandnum;
98     unsigned char threshold_amcnr; // Reg 0x08
99     unsigned char threshold_fmcnr; // Reg 0x08
100     unsigned char threshold_width; // Reg 0x08
101     unsigned char threshold_fmstereo; // Reg 0x08
102     _userband_t am_usrbands[USER_BAND_NUM];
103     _userband_t fm_usrbands[USER_BAND_NUM];
104     banddesc am_userband_freq[USER_BAND_NUM];
105     banddesc fm_userband_freq[USER_BAND_NUM];
106     unsigned char stereo;
107     unsigned char volume;
108     unsigned char prevolume;
109     unsigned char fmbandwidth;
110     unsigned char lowboost;
111     int backlight_long;
112     int backlight_level;
113     unsigned int ui_idlecount;
114     unsigned int memorynum;
115     unsigned char fm_tunepitch;
116     _memoryfreq_t memoryfreqs[USER_MEMORY_NUM];
117 } __radioset_t;
118
119
120     extern __radioset_t setup;
121     extern unsigned char scanflag;
122
123     extern unsigned char stereoflag;
124     extern unsigned char tuneflag;
125     extern unsigned char cnrlevel;
126     extern int diffstat;
127     extern unsigned int batlevel_6955;
128     extern unsigned int battlevel;
129
130     extern int recv_signal;
131     extern unsigned char backlight_level;
132     extern unsigned char pollkeybuf[33];
133     extern unsigned char scanflag;
134     extern unsigned char ui_idlepad;
135     extern unsigned int ui_idlekey;
136
137
138
139     /*
140      * ui_updown.c
141      */
142     extern void setfreq_updown(unsigned char ctlword);
143     extern void setdefault(void);
144
145     /*
146      * menu_userband.c
147      */
148     extern void save_frequency(void);
149     extern void input_userband(void);
150     extern void set_userband(void);
151     extern void call_userband(unsigned char num);
152
153     /*
154      * menu_scan.c
155      */
156     extern void scan_start(void);
157     /*
158      * menu_volume.c
159      */
160     extern void set_volume(void);
161
162     /*
163      * menu_defs.c
164      */
165     extern void setdefault(void);
166     extern void valinit(void);
167
168
169     /*
170      * menu.c
171      */
172     extern void toggle_amfm(void);
173     extern void set_stereomode(void);
174     extern void set_stereo(void);
175     extern void setband_direct(void);
176     extern void setfreq_direct(void);
177     extern void menu_poweroff(void);
178     extern void setup_akc6955(void);
179     extern void main_menu(void);
180
181     /*
182      * menu_setup.c
183      */
184     extern void setup_menu(void);
185     extern void menu_load(void);
186     extern void menu_save(void);
187
188
189
190 #ifdef  __cplusplus
191 }
192 #endif
193
194 #endif  /* MENU_H */
195