OSDN Git Service

[General][EEPROM] Use structure to compress object-size.
[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     _LOCATE(0,y);
60     if(setup.fm != 0){ // FM
61         if(setup.fmband < AKC6955_BAND_TV1) {
62             printstr("FM");
63             _PUTCHAR('1' + (setup.fmband & 7));
64             printstr("  ");
65         } else if(setup.fmband < AKC6955_BAND_FMUSER){
66             printstr("TV");
67             _PUTCHAR('1' +setup. fmband - AKC6955_BAND_TV1);
68             printstr("  ");
69         } else { // USER
70             printstr("FMU");
71             _PUTCHAR('0' + setup.fm_userbandnum);
72             _PUTCHAR(' ');
73         }
74     } else { // AM
75         if(setup.amband == AKC6955_BAND_LW) {
76             printstr("LW");
77         } else if(setup.amband <AKC6955_BAND_SW1) { //MW
78             printstr("MW");
79             _PUTCHAR('1' + setup.amband - AKC6955_BAND_MW1);
80             printstr("  ");
81         } else if(setup.amband <AKC6955_BAND_SW10) { //MW
82             printstr("SW");
83             _PUTCHAR('1' + setup.amband - AKC6955_BAND_SW1);
84             printstr("  ");
85         } else if(setup.amband < AKC6955_BAND_AMUSER) { //MW
86             printstr("SW1");
87             _PUTCHAR('0' + setup.amband - AKC6955_BAND_SW10);
88             _PUTCHAR(' ');
89         } else if(setup.amband == AKC6955_BAND_MW4){
90             printstr("MW4  ");
91         } else {
92             printstr("AMU");
93             _PUTCHAR('0' + setup.am_userbandnum);
94             _PUTCHAR(' ');
95         }
96      }
97 //     _LOCATE(15-5 ,1);
98      _LOCATE(15-3-8, y);
99      if(setup.fm != 0){
100          if(stereoflag != 0){
101              printstr("ST");
102          } else {
103              printstr("  ");
104          }
105          freq = setup.fmfreq;// + diffstat / 100;
106          freq_lo = freq % 100;
107          freq_hi = freq / 100;
108          print_numeric_nosupress(freq_hi, 3);
109          _PUTCHAR('.');
110          print_numeric_nosupress(freq_lo, 2);
111      } else {
112          freq = setup.amfreq;// + diffstat / 10;
113          printstr("   ");
114          print_numeric_nosupress(freq, 5);
115      }
116      // Signal
117      _LOCATE(15-3, y);
118      if(setup.fm != 0){
119          printstr("MHz");
120      } else {
121          printstr("KHz");
122      }
123 }
124
125 void update_display(void)
126 {
127
128     unsigned int vol;
129     int sig;
130     int lv;
131     unsigned int batlv;
132 //    _HOME();
133     _LOCATE(0,0);
134     printstr("S");
135     sig = recv_signal + 40;
136     print_numeric_nosupress(sig / 20, 1);
137     _PUTCHAR(' ');
138     set_amfmlamp(~setup.fm);
139     _PUTCHAR('W');
140     print_numeric_nosupress(setup.threshold_width & 3, 1);
141      // vol = volume * 1.5 + prevolume * 3.5[dB]
142 #if 0
143      if(volume > 24) {
144          vol = volume - 24;
145          vol = (vol * 3 + prevolume * 7) / 2;
146          printstr("V:");
147          print_numeric_nosupress(vol,2);
148      } else {
149          printstr("MUTE");
150      }
151 #endif
152      _LOCATE(16-5,0);
153      print_numeric_nosupress(battlevel / 100, 1);
154      _PUTCHAR('.');
155      print_numeric_nosupress(battlevel % 100, 2);
156      _PUTCHAR('V');
157      print_freq(1);
158 //    _PUTCHAR(' ');
159     _HOME();
160 }