1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 by Linus Nielsen Feltzing
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
30 static enum playmode ff_mode
= 0;
32 void status_set_ffmode(enum playmode mode
)
34 ff_mode
= mode
; /* Either STATUS_FASTFORWARD or STATUS_FASTBACKWARD */
37 enum playmode
status_get_ffmode(void)
39 /* only use this function for STATUS_FASTFORWARD or STATUS_FASTBACKWARD */
40 /* use audio_status() for other modes */
44 int current_playmode(void)
46 int audio_stat
= audio_status();
48 /* ff_mode can be either STATUS_FASTFORWARD or STATUS_FASTBACKWARD
49 and that supercedes the other modes */
53 if(audio_stat
& AUDIO_STATUS_PLAY
)
55 if(audio_stat
& AUDIO_STATUS_PAUSE
)
62 if(audio_stat
& AUDIO_STATUS_RECORD
)
64 if(audio_stat
& AUDIO_STATUS_PAUSE
)
65 return STATUS_RECORD_PAUSE
;
72 audio_stat
= get_radio_status();
73 if(audio_stat
& FMRADIO_PLAYING
)
76 if(audio_stat
& FMRADIO_PAUSED
)
77 return STATUS_RADIO_PAUSE
;
83 #if defined(HAVE_LCD_CHARCELLS)
89 void status_set_record(bool b
)
94 void status_set_audio(bool b
)
99 void status_set_param(bool b
)
104 void status_set_usb(bool b
)
109 #endif /* HAVE_LCD_CHARCELLS */