OSDN Git Service

[SCHEMATIC] Modify SW/MW/LW Preamp, insert galbanic-isolator replace of common-mode...
[openi2cradio/OpenI2CRadio.git] / menu_defs.c
1 /*
2  * OpenI2CRADIO
3  * defines.
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
29 #include <stdarg.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #if defined(__SDCC)
34 #include <sdcc-lib.h>
35 #include <pic18fregs.h> /* ONLY FOR PIC18x */
36 #include <delay.h>
37 #else
38
39 #endif
40 #include <signal.h>
41
42 #include "commondef.h"
43 #include "iodef.h"
44 #include "idle.h"
45 #include "i2c_io.h"
46 #include "akc6955.h"
47 #include "lcd_acm1602.h"
48 #include "ui.h"
49 #include "eeprom.h"
50 #include "ioports.h"
51 #include "menu.h"
52 #include "power.h"
53 #include "adc_int.h"
54
55 const banddesc ambands[19] = {
56 //const unsigned int ambands[38] = {
57 //    {150,285},
58     {100,522}, // Extend LW.
59     {520,1710},
60     {522,1620},
61     {520,1710},
62     {4700, 5600},
63     {3200, 4100},
64     {4700, 5600},
65     {5700, 6400},
66     {6800, 7600},
67     {9200, 10000},
68     {11400,12200},
69     {13500,14300},
70     {15000,15900},
71     {17400,17900},
72     {18900,19700},
73     {21400,21900},
74     {11400, 17900},
75     {4000,8000}, // USER
76     {520,1730}
77 };
78 const banddesc fmbands[8] = {
79     {8700, 10800},
80     {7600, 10800},
81     {7000, 9300},
82     {7600, 9000},
83     {6400, 8800},
84     {5625, 9175},
85     {17475, 22225},
86     {5000, 7000} // User
87 };
88
89
90 __radioset_t setup;
91 __freqset_t freqset;
92 __freqset_t freqset_temp;
93 __userband_t_t userband;
94 unsigned char scanflag;
95
96
97
98
99 void setdefault(void)
100 {
101     char i;
102     //amfreq = 954;
103     //fmfreq = 8000; // 10KHz order.
104     setup.amband = AKC6955_BAND_MW2;
105     setup.fmband = AKC6955_BAND_FM2;
106     setup.am_mode3k = 0xff;
107     setup.fm = 0;
108     setup.am_userbandnum = 0;
109     setup.fm_userbandnum = 0;
110     setup.lowboost = 0xff;
111     setup.threshold_amcnr = 0;
112     setup.threshold_fmcnr = 0;
113     setup.threshold_fmstereo = 0;
114     setup.threshold_width = 0;
115     for(i =0; i < AKC6955_BAND_AMEND; i++){
116       setup.amfreq_bank[i] = ((ambands[i].end - ambands[i].start) / 2) + ambands[i].start;
117     }
118     for(i =0; i <  AKC6955_BAND_FMEND ; i++){
119       setup.fmfreq_bank[i] = ((fmbands[i].end - fmbands[i].start) / 2) + fmbands[i].start;
120     }
121     setup.memorynum = 0x00;
122     setup.pagenum = 0x00;
123 #if 0
124     for(i = 0; i < USER_MEMORY_NUM; i++) {
125         freqset.memoryfreqs[i].band = AKC6955_BAND_MW2;
126         freqset.memoryfreqs[i].fm = 0;
127         freqset.memoryfreqs[i].freq = 594; // NHK1 Tokyo.
128     }
129 #endif
130     setup.fmfreq = setup.fmfreq_bank[setup.fmband];
131     setup.amfreq = setup.amfreq_bank[setup.amband];
132     setup.stereo = 0xff; // Auto
133     setup.fm_tunepitch = 0x02; // 100KHz
134     setup.ui_idlecount = 1000;
135     setup.backlight_level = 100;
136     setup.backlight_long = 128;
137 }
138
139 void valinit(void)
140 {
141         // UI
142     setup.backlight_long = 256;
143     backlight_counter = setup.backlight_long;
144     setup.backlight_level = 255;
145     setup.ui_idlecount = 250; // 0.25Sec
146     // Statuses
147     scanflag = 0;
148     cnrlevel = 0;
149     recv_signal = 103;
150     battlevel = 0;
151     batlevel_6955 = 330; // 3.30V(temporally).
152     setup.volume = 36;
153     setup.prevolume = 3;
154     setup.fmbandwidth = 0;
155 //    setup.pagenum = setup.memorynum / USER_MEMORY_NUM;
156     diffstat = 0;
157     cnrlevel = 103;
158     stereoflag = 0x00; // Auto
159 }