OSDN Git Service

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