OSDN Git Service

[UI] Set mode3k correctly.
[openi2cradio/OpenI2CRadio.git] / radio_getstat.c
1 /*
2  * OpenI2CRADIO
3  * Get status from chips.
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 #include <xc.h>
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 void update_status(void)
57 {
58
59     unsigned int adc;
60     __bitops_t c;
61
62     setup.fm = akc6955_get_fm();
63     recv_signal = akc6955_read_level();
64     diffstat = akc6955_get_diff();
65     setup.volume = akc6955_getvolume();
66     setup.prevolume = akc6955_get_prevolume();
67         if(setup.fm != 0){
68             setup.fmfreq = akc6955_get_freq();
69             akc6955_get_fmband(setup.fmband);
70             setup.fmfreq_bank[setup.fmband] = setup.fmfreq;
71             stereoflag = akc6955_get_stereo();
72             akc6955_get_fmbandwidth(setup.fmbandwidth);
73         } else {
74             setup.amfreq = akc6955_get_freq();
75             akc6955_get_amband(setup.amband);
76             setup.amfreq_bank[setup.amband] = setup.amfreq;
77             c.byte = akc6955_readcmd(AKC6955_CNR_AM);
78             if(c.b7) {
79                 setup.am_mode3k = 0xff;
80             } else {
81                 setup.am_mode3k = 0;
82             }
83             stereoflag = 0x00;
84         }
85         tuneflag = akc6955_tune();
86         cnrlevel = akc6955_get_cnr();
87         batlevel_6955 = akc6955_get_battery();
88    startadc(7);
89    do {
90        idle_time_ms(1);
91        adc = polladc();
92    } while(adc == 0xffff);
93    battlevel = adc_rawtobatt(adc, batlevel_6955);
94 }