OSDN Git Service

[UI][MENU] Change "'5'->'9'" to reload.
[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 #ifdef  __cplusplus
57 extern "C" {
58 #endif
59 #define USER_BAND_NUM 3
60     typedef struct {
61         unsigned char mode3k; // mode3k if am
62         unsigned char start;
63         unsigned char stop;
64         unsigned int freq;
65     } _userband_t;
66     
67 #define USER_MEMORY_NUM 28
68 #define USER_MEMORY_BANKS 24
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 //    _memoryfreq_t memoryfreqs[USER_MEMORY_NUM];
116     unsigned int pagenum;
117 } __radioset_t;
118
119
120     extern __radioset_t setup;
121     extern __freqset_t freqset;
122     extern __freqset_t freqset_temp;
123     extern unsigned char scanflag;
124
125     extern unsigned char stereoflag;
126     extern unsigned char tuneflag;
127     extern unsigned char cnrlevel;
128     extern int diffstat;
129     extern unsigned int batlevel_6955;
130     extern unsigned int battlevel;
131
132     extern int recv_signal;
133     extern int backlight_counter;
134     extern unsigned char backlight_level;
135     extern unsigned char pollkeybuf[33];
136     extern unsigned char scanflag;
137
138     /*
139      * ui_updown.c
140      */
141     extern void setfreq_updown(unsigned char ctlword);
142     extern void setdefault(void);
143
144     /*
145      * menu_userband.c
146      */
147     extern void input_userband(void);
148     extern void set_userband(void);
149     extern void call_userband(unsigned char num);
150
151     /*
152      * menu_scan.c
153      */
154     extern void scan_start(void);
155     /*
156      * menu_volume.c
157      */
158     extern void set_volume(void);
159
160     /*
161      * menu_defs.c
162      */
163     extern void setdefault(void);
164     extern void valinit(void);
165
166
167     /*
168      * menu.c
169      */
170     extern void toggle_amfm(void);
171     extern void set_stereomode(void);
172     extern void set_stereo(void);
173     extern void setband_direct(void);
174     extern void setfreq_direct(void);
175     extern void menu_poweroff(void);
176     extern void setup_akc6955(void);
177     extern void main_menu(void);
178
179     /*
180      * menu_setup.c
181      */
182     extern void setup_menu(void);
183     extern void menu_load(void);
184     extern void menu_save(void);
185
186
187 #ifdef  __cplusplus
188 }
189 #endif
190
191 #endif  /* MENU_H */
192