OSDN Git Service

[SCHEMATIC] Modify SW/MW/LW Preamp, insert galbanic-isolator replace of common-mode...
[openi2cradio/OpenI2CRadio.git] / menu_scan.c
1 /*
2  * OpenI2CRADIO
3  * Menu sub-routines / Scan.
4  * Copyright (C) 2013-09-11 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 "menu.h"
30 #include "menu_memoryfreq.h"
31 #include "power.h"
32 #include "commondef.h"
33 #include "backlight.h"
34
35 void scan_start(void)
36 {
37     unsigned char c;
38     unsigned char cc;
39     _CLS();
40     scanflag = 0;
41
42     do {
43         do {
44             c = pollkey_single_timeout(20, 0) ; // 23*20 = 460ms
45             update_status();
46             cc = ' ';
47             if((akc6955_chk_donescan() == 0) && (scanflag != 0)){
48                 cc = '>';
49             }
50             _PUTCHAR(cc);
51             _LOCATE_0_0();
52             printstr("Scan A/4/6/F");
53             print_freq(1);
54             _HOME();
55             if(chk_powerbutton() != 0) shutdown(1); // 48ms for Checking power-button.
56         } while(c == charcode_null);
57
58          switch(c){
59            case charcode_6:
60                scanflag = 0xff;
61                akc6955_do_scan(0xff);
62                break;
63            case charcode_4:
64                scanflag = 0xff;
65                akc6955_do_scan(0);
66                break;
67            case charcode_a:
68                akc6955_abort_scan();
69                goto _l0;
70                break;
71            case charcode_f:
72                goto _l0;
73                break;
74            default:
75                break;
76        }
77     } while(1);
78 _l0:
79     _CLS();
80 }