OSDN Git Service

[Build] Prepare to build with Microchip's XC8.
[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(fm != 0){ // FM
61         if(fmband < AKC6955_BAND_TV1) {
62             printstr("FM");
63             _PUTCHAR('1' + (fmband & 7));
64             printstr("  ");
65         } else if(fmband < AKC6955_BAND_FMUSER){
66             printstr("TV");
67             _PUTCHAR('1' + fmband - AKC6955_BAND_TV1);
68             printstr("  ");
69         } else { // USER
70             printstr("FMU");
71             _PUTCHAR('0' + fm_userbandnum);
72             _PUTCHAR(' ');
73         }
74     } else { // AM
75         if(amband == AKC6955_BAND_LW) {
76             printstr("LW");
77         } else if(amband <AKC6955_BAND_SW1) { //MW
78             printstr("MW");
79             _PUTCHAR('1' + amband - AKC6955_BAND_MW1);
80             printstr("  ");
81         } else if(amband <AKC6955_BAND_SW10) { //MW
82             printstr("SW");
83             _PUTCHAR('1' + amband - AKC6955_BAND_SW1);
84             printstr("  ");
85         } else if(amband < AKC6955_BAND_AMUSER) { //MW
86             printstr("SW1");
87             _PUTCHAR('0' + amband - AKC6955_BAND_SW10);
88             _PUTCHAR(' ');
89         } else if(amband == AKC6955_BAND_MW4){
90             printstr("MW4  ");
91         } else {
92             printstr("AMU");
93             _PUTCHAR('0' + am_userbandnum);
94             _PUTCHAR(' ');
95         }
96      }
97 //     _LOCATE(15-5 ,1);
98      _LOCATE(16-3-6, y);
99      if(fm != 0){
100          if(stereoflag != 0){
101              printstr("ST");
102          } else {
103              printstr("  ");
104          }
105          freq = 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 = amfreq + diffstat / 10;
113          printstr("   ");
114          print_numeric_nosupress(freq, 5);
115      }
116      // Signal
117      _LOCATE(16-3, y);
118      if(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 lv;
130 //    _HOME();
131     _LOCATE(0,0);
132     printstr("S");
133     if(recv_signal < 0){
134         _PUTCHAR('-');
135         lv = - recv_signal;
136         print_numeric_nosupress(lv / 20, 1);
137     } else {
138         lv = recv_signal;
139         print_numeric_nosupress(lv / 20, 1); // MAX=123
140         _PUTCHAR(' ');
141     }
142     if(fm == 0){
143         set_amlamp(1);
144         set_fmlamp(0);
145     } else {
146         set_amlamp(0);
147         set_fmlamp(1);
148     }
149      // vol = volume * 1.5 + prevolume * 3.5[dB]
150      if(volume > 24) {
151          vol = volume - 24;
152          vol = (vol * 3 + prevolume * 7) / 2;
153          printstr("V:");
154          print_numeric_nosupress(vol,2);
155      } else {
156          printstr("MUTE");
157      }
158
159      _LOCATE(16-5,0);
160      print_numeric_nosupress(battlevel / 100, 1);
161      _PUTCHAR('.');
162      print_numeric_nosupress(battlevel % 100, 2);
163      _PUTCHAR('V');
164      print_freq(1);
165 //    _PUTCHAR(' ');
166     _HOME();
167 }