OSDN Git Service

[SCHEMATIC] Modify SW/MW/LW Preamp, insert galbanic-isolator replace of common-mode...
[openi2cradio/OpenI2CRadio.git] / ui_display.c
1 /*
2  * OpenI2CRADIO
3  * UI->LCD->Display status.
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 #endif
38
39 #include "commondef.h"
40 #include "iodef.h"
41 #include "idle.h"
42 #include "i2c_io.h"
43 #include "akc6955.h"
44 #include "lcd_acm1602.h"
45 #include "ui.h"
46 #include "eeprom.h"
47 #include "ioports.h"
48 #include "menu.h"
49 #include "power.h"
50 #include "adc_int.h"
51
52
53 void print_freq(unsigned char y)
54 {
55     int freq;
56     unsigned char band;
57     unsigned char cc;
58 //    _HOME();
59     _LOCATE(0, y);
60     if(setup.fm != 0){ // FM
61         band = setup.fmband;
62         if(band < AKC6955_BAND_TV1) {
63             printstr("FM");
64             _PUTCHAR('1' + (band & 7));
65             _PUTCHAR(' ');
66         } else if(band < AKC6955_BAND_FMUSER){
67             printstr("TV");
68             _PUTCHAR('1' + band - AKC6955_BAND_TV1);
69             _PUTCHAR(' ');
70         } else { // USER
71             printstr("FMU");
72             _PUTCHAR('0' + setup.fm_userbandnum);
73         }
74         printstr("  ");
75          if(stereoflag != 0){
76              cc = 'S';
77          } else {
78              cc = ' ';
79          }
80          _PUTCHAR(cc);
81          freq = setup.fmfreq;// + diffstat / 100;
82          print_numeric_nosupress(freq / 100, 3);
83          _PUTCHAR('.');
84          print_numeric_nosupress(freq % 100, 2);
85          printstr("MHz");
86     } else { // AM
87         band = setup.amband;
88         if(band == AKC6955_BAND_LW) {
89             printstr("LW  ");
90         } else if(band <AKC6955_BAND_SW1) { //MW
91             printstr("MW");
92             _PUTCHAR('1' + band - AKC6955_BAND_MW1);
93             _PUTCHAR(' ');
94         } else if(band < AKC6955_BAND_AMUSER)  { //SW
95             printstr("SW");
96             print_numeric_nosupress(band - AKC6955_BAND_SW1 + 1, 2);
97         } else if(band == AKC6955_BAND_MW4){
98             printstr("MW4 ");
99         } else {
100             printstr("AMU");
101             _PUTCHAR('0' + setup.am_userbandnum);
102         }
103          freq = setup.amfreq;// + diffstat / 10;
104          printstr("    ");
105          print_numeric_nosupress(freq, 5);
106          printstr("KHz");
107      }
108      _HOME();
109 }
110
111 void update_display(void)
112 {
113
114     unsigned int vol;
115     int sig;
116
117  //   _CLS();
118     _LOCATE_0_0();
119     printstr("S");
120     if(recv_signal > 99){
121         _PUTCHAR('+');
122     } else {
123         _PUTCHAR('0' + recv_signal / 10);
124     }
125     _PUTCHAR('/');
126     if(cnrlevel >= 40) {
127         _PUTCHAR('+');
128     } else {
129         _PUTCHAR('0' + cnrlevel / 4);
130     }
131     _PUTCHAR(' ');
132     set_amfmlamp(~setup.fm);
133     _PUTCHAR('W');
134 //    print_numeric_nosupress((setup.threshold_width & 3) * 10 + (setup.fm_tunepitch & 3), 2);
135     print_numeric_nosupress(setup.threshold_width * 10 + setup.fm_tunepitch, 2);
136      // vol = volume * 1.5 + prevolume * 3.5[dB]
137 #if 0
138      if(volume > 24) {
139          vol = volume - 24;
140          vol = (vol * 3 + prevolume * 7) / 2;
141          printstr("V:");
142          print_numeric_nosupress(vol,2);
143      } else {
144          printstr("MUTE");
145      }
146 #endif
147      _LOCATE(16-5, 0);
148      print_numeric_nosupress(battlevel / 100, 1);
149      _PUTCHAR('.');
150      print_numeric_nosupress(battlevel % 100, 2);
151      _PUTCHAR('V');
152      print_freq(1);
153 }