1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 by Linus Nielsen Feltzing
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
26 static int frequency
= 0;
27 static bool mono
= false;
29 static bool powered
= false;
35 int tuner_set(int setting
, int value
)
46 case RADIO_SCAN_FREQUENCY
:
53 case RADIO_FORCE_MONO
:
54 mono
= value
?true:false;
64 int tuner_get(int setting
)
75 if(frequency
== 99500000)
80 if(frequency
== 99500000)
84 case RADIO_ALL
: /* debug query */
90 bool tuner_power(bool status
)
92 bool oldstatus
= powered
;