OSDN Git Service

[SCHEMATIC] Modify SW/MW/LW Preamp, insert galbanic-isolator replace of common-mode...
[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 void update_status(void)
55 {
56
57     unsigned int adc;
58     unsigned int ref;
59
60     setup.fm = akc6955_get_fm();
61     recv_signal = akc6955_read_level();
62     diffstat = akc6955_get_diff();
63     setup.volume = akc6955_getvolume();
64     setup.prevolume = akc6955_get_prevolume();
65     if(setup.fm != 0){
66             setup.fmfreq = akc6955_get_freq();
67             setup.fmband = akc6955_get_fmband();
68             setup.fmfreq_bank[setup.fmband] = setup.fmfreq;
69             stereoflag = akc6955_get_stereo();
70             setup.fmbandwidth = akc6955_get_fmbandwidth();
71     } else {
72             setup.amfreq = akc6955_get_freq();
73             setup.amband = akc6955_get_amband();
74             setup.amfreq_bank[setup.amband] = setup.amfreq;
75             setup.am_mode3k = akc6955_get_mode3k();
76             stereoflag = 0x00;
77     }
78     tuneflag = akc6955_tune();
79     cnrlevel = akc6955_get_cnr();
80     // Battery
81 //    batlevel_6955 = akc6955_get_battery();
82   
83     //ADC:reference
84     // Workaround of Errata:
85     // Section 5 of http://ww1.microchip.com/downloads/en/DeviceDoc/80000425K.pdf .
86     // Sample twice on first.
87     startadc(_REF_ADC);
88     ref = polladc2();
89     startadc(_REF_ADC);
90     ref = polladc2();
91     TRISEbits.TRISE2 = 1;
92     CVRCON2bits.FVREN = 1;
93     while(CVRCON2bits.FVRST == 0) idle(100);
94 //    startadc(_BATT_ADC);
95 //    adc = polladc2();
96     startadc(_BATT_ADC);
97     adc = polladc2();
98     CVRCON2bits.FVREN = 0;
99     battlevel = adc_rawtobatt(adc, ref);
100 //    battlevel = adc *  32 * 4; // 322 = 1000/1024 * 330
101 //    battlevel = (adc * 4 * 32) / 100;
102 }
103