OSDN Git Service

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