OSDN Git Service

[Build] Prepare to build with Microchip's XC8.
[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
56 const banddesc ambands[19] = {
57     {150,285},
58     {520,1710},
59     {522,1620},
60     {520,1710},
61     {4700, 10000},
62     {3200, 4100},
63     {4700, 5600},
64     {5700, 6400},
65     {6800, 7600},
66     {9200, 10000},
67     {11400,12200},
68     {13500,14300},
69     {15000,15900},
70     {17400,17900},
71     {18900,19700},
72     {21400,21900},
73     {11400, 17900},
74     {4000,8000}, // USER
75     {520,1730}
76 };
77 const banddesc fmbands[8] = {
78     {8700, 10800},
79     {7600, 10800},
80     {7000, 9300},
81     {7600, 9000},
82     {6400, 8800},
83     {5625, 9175},
84     {17475, 22225},
85     {5000, 7000} // User
86 };
87
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; // Reg 0x08
99 _userband_t am_usrbands[USER_BAND_NUM];
100 _userband_t fm_usrbands[USER_BAND_NUM];
101 banddesc am_userband_freq[USER_BAND_NUM];
102 banddesc fm_userband_freq[USER_BAND_NUM];
103 unsigned char stereo;
104 unsigned char volume;
105 unsigned char prevolume;
106 unsigned char fmbandwidth;
107 unsigned char lowboost;
108
109 int backlight_long;
110 unsigned int ui_idlecount;
111 unsigned char scanflag;
112
113
114 /*
115  *
116  */
117 void setdefault(void)
118 {
119     char i;
120     //amfreq = 954;
121     //fmfreq = 8000; // 10KHz order.
122     amband = AKC6955_BAND_MW2;
123     fmband = AKC6955_BAND_FM2;
124     am_mode3k = 0xff;
125     fm = 0;
126     am_userbandnum = 0;
127     fm_userbandnum = 0;
128     lowboost = 0xff;
129     threshold = 0b01011000;
130     for(i = 0; i < 4; i++){
131         am_usrbands[i].start = 0x19;
132         am_usrbands[i].stop  = 0x32;
133     }
134     for(i = 0; i < 4; i++){
135         fm_usrbands[i].start = 0x19;
136         fm_usrbands[i].stop  = 0x32;
137     }
138     for(i =0; i < 18; i++){
139       amfreq_bank[i] = ((ambands[i].end - ambands[i].start) >> 1) + ambands[i].start;
140     }
141     for(i =0; i < 8; i++){
142       fmfreq_bank[i] = ((fmbands[i].end - fmbands[i].start) >> 1) + fmbands[i].start;
143     }
144     fmfreq = fmfreq_bank[fmband];
145     amfreq = amfreq_bank[amband];
146     stereo = 0xff; // Auto
147 }
148
149 void valinit(void)
150 {
151         // UI
152     backlight_long = 256;
153     backlight_counter = backlight_long;
154     backlight_level = 255;
155     ui_idlecount = 250; // 0.25Sec
156     // Statuses
157     scanflag = 0;
158     cnrlevel = 0;
159     recv_signal = 103;
160     battlevel = 0;
161     batlevel_6955 = 330; // 3.30V(temporally).
162     if(amband > 18) amband = 18;
163     if(fmband > 7) fmband = 7;
164     if(am_userbandnum >= USER_BAND_NUM) am_userbandnum = USER_BAND_NUM - 1;
165     if(fm_userbandnum >= USER_BAND_NUM) fm_userbandnum = USER_BAND_NUM - 1;
166     volume = 0;
167     prevolume = 0;
168     fmbandwidth = 0;
169     diffstat = 0;
170     cnrlevel = 103;
171     stereoflag = 0x00; // Auto
172 }