2002-06-24 21:39:48 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Robert Hak
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "lcd.h"
|
|
|
|
#include "menu.h"
|
|
|
|
#include "mpeg.h"
|
|
|
|
#include "button.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "sprintf.h"
|
|
|
|
|
|
|
|
#include "settings.h"
|
|
|
|
#include "settings_menu.h"
|
|
|
|
#include "backlight.h"
|
|
|
|
#include "playlist.h" /* for playlist_shuffle */
|
2002-08-06 10:52:51 +00:00
|
|
|
#include "powermgmt.h"
|
2002-08-09 12:38:45 +00:00
|
|
|
#include "rtc.h"
|
2002-06-24 21:39:48 +00:00
|
|
|
|
2002-08-13 11:10:11 +00:00
|
|
|
|
|
|
|
static void contrast(void)
|
|
|
|
{
|
|
|
|
set_int( "[Contrast]", "", &global_settings.contrast,
|
|
|
|
lcd_set_contrast, 1, 0, MAX_CONTRAST_SETTING );
|
|
|
|
}
|
|
|
|
|
2002-06-24 21:39:48 +00:00
|
|
|
static void shuffle(void)
|
|
|
|
{
|
2002-06-27 01:08:11 +00:00
|
|
|
set_bool( "[Shuffle]", &global_settings.playlist_shuffle );
|
|
|
|
}
|
2002-06-24 21:39:48 +00:00
|
|
|
|
2002-06-27 01:08:11 +00:00
|
|
|
static void mp3_filter(void)
|
|
|
|
{
|
|
|
|
set_bool( "[MP3/M3U filter]", &global_settings.mp3filter );
|
2002-06-24 21:39:48 +00:00
|
|
|
}
|
|
|
|
|
2002-07-22 16:39:17 +00:00
|
|
|
static void sort_case(void)
|
|
|
|
{
|
|
|
|
set_bool( "[Sort case sensitive]", &global_settings.sort_case );
|
|
|
|
}
|
|
|
|
|
2002-06-24 21:39:48 +00:00
|
|
|
static void backlight_timer(void)
|
|
|
|
{
|
2002-06-27 01:08:11 +00:00
|
|
|
set_int( "[Backlight]", "s", &global_settings.backlight,
|
|
|
|
backlight_time, 1, 0, 60 );
|
|
|
|
backlight_on();
|
2002-06-24 21:39:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void scroll_speed(void)
|
|
|
|
{
|
2002-06-27 01:08:11 +00:00
|
|
|
set_int("Scroll speed indicator...", "", &global_settings.scroll_speed,
|
|
|
|
&lcd_scroll_speed, 1, 1, 20 );
|
2002-06-24 21:39:48 +00:00
|
|
|
}
|
|
|
|
|
2002-06-27 01:08:11 +00:00
|
|
|
static void wps_set(void)
|
2002-06-25 08:41:18 +00:00
|
|
|
{
|
2002-06-25 08:58:15 +00:00
|
|
|
char* names[] = { "Id3 ", "File ", "Parse" };
|
2002-06-27 01:08:11 +00:00
|
|
|
set_option("[WPS display]", &global_settings.wps_display, names, 3 );
|
2002-06-25 08:41:18 +00:00
|
|
|
}
|
|
|
|
|
2002-08-06 10:52:51 +00:00
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
|
|
|
static void deep_discharge(void)
|
|
|
|
{
|
|
|
|
set_bool( "[Deep discharge]", &global_settings.discharge );
|
|
|
|
charge_restart_level = global_settings.discharge ? CHARGE_RESTART_LO : CHARGE_RESTART_HI;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-08-07 10:35:26 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
static void statusbar(void)
|
|
|
|
{
|
|
|
|
set_bool( "[Show status bar]", &global_settings.statusbar );
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-08-09 12:38:45 +00:00
|
|
|
#ifdef HAVE_RTC
|
|
|
|
static void timedate_set(void)
|
|
|
|
{
|
2002-08-09 13:50:58 +00:00
|
|
|
int timedate[7]; /* hour,minute,second,year,month,day,dayofweek */
|
2002-08-09 12:38:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
timedate[0] = rtc_read(0x03); /* hour */
|
|
|
|
timedate[1] = rtc_read(0x02); /* minute */
|
|
|
|
timedate[2] = rtc_read(0x01); /* second */
|
2002-08-09 13:50:58 +00:00
|
|
|
timedate[3] = rtc_read(0x07); /* year */
|
2002-08-09 12:38:45 +00:00
|
|
|
timedate[4] = rtc_read(0x06); /* month */
|
2002-08-09 13:50:58 +00:00
|
|
|
timedate[5] = rtc_read(0x05); /* day */
|
2002-08-09 12:38:45 +00:00
|
|
|
/* day of week not read, calculated */
|
|
|
|
timedate[0] = ((timedate[0] & 0x70) >> 4) * 10 + (timedate[0] & 0x0f); /* hour */
|
|
|
|
timedate[1] = ((timedate[1] & 0xf0) >> 4) * 10 + (timedate[1] & 0x0f); /* minute */
|
|
|
|
timedate[2] = ((timedate[2] & 0x30) >> 4) * 10 + (timedate[2] & 0x0f); /* second */
|
2002-08-09 13:50:58 +00:00
|
|
|
timedate[3] = ((timedate[3] & 0x30) >> 4) * 10 + (timedate[3] & 0x0f); /* year */
|
2002-08-09 12:38:45 +00:00
|
|
|
timedate[4] = ((timedate[4] & 0x30) >> 4) * 10 + (timedate[4] & 0x0f); /* month */
|
2002-08-09 13:50:58 +00:00
|
|
|
timedate[5] = ((timedate[5] & 0x30) >> 4) * 10 + (timedate[5] & 0x0f); /* day */
|
2002-08-09 12:38:45 +00:00
|
|
|
|
|
|
|
set_time("[Set time/date]",timedate);
|
|
|
|
|
|
|
|
if(timedate[0] != -1) {
|
|
|
|
timedate[0] = ((timedate[0]/10) << 4 | timedate[0]%10) & 0x3f; /* hour */
|
|
|
|
timedate[1] = ((timedate[1]/10) << 4 | timedate[1]%10) & 0x7f; /* minute */
|
|
|
|
timedate[2] = ((timedate[2]/10) << 4 | timedate[2]%10) & 0x7f; /* second */
|
2002-08-09 13:50:58 +00:00
|
|
|
timedate[3] = ((timedate[3]/10) << 4 | timedate[3]%10) & 0xff; /* year */
|
2002-08-09 12:38:45 +00:00
|
|
|
timedate[4] = ((timedate[4]/10) << 4 | timedate[4]%10) & 0x1f; /* month */
|
2002-08-09 13:50:58 +00:00
|
|
|
timedate[5] = ((timedate[5]/10) << 4 | timedate[5]%10) & 0x3f; /* day */
|
2002-08-09 12:38:45 +00:00
|
|
|
rtc_write(0x03, timedate[0] | (rtc_read(0x03) & 0xc0)); /* hour */
|
|
|
|
rtc_write(0x02, timedate[1] | (rtc_read(0x02) & 0x80)); /* minute */
|
|
|
|
rtc_write(0x01, timedate[2] | (rtc_read(0x01) & 0x80)); /* second */
|
2002-08-09 13:50:58 +00:00
|
|
|
rtc_write(0x07, timedate[3]); /* year */
|
2002-08-09 12:38:45 +00:00
|
|
|
rtc_write(0x06, timedate[4] | (rtc_read(0x06) & 0xe0)); /* month */
|
2002-08-09 13:50:58 +00:00
|
|
|
rtc_write(0x05, timedate[5] | (rtc_read(0x05) & 0xc0)); /* day */
|
|
|
|
rtc_write(0x04, timedate[6] | (rtc_read(0x04) & 0xf8)); /* dayofweek */
|
2002-08-09 12:38:45 +00:00
|
|
|
rtc_write(0x00, 0x00); /* 0.1 + 0.01 seconds */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-06-24 21:39:48 +00:00
|
|
|
void settings_menu(void)
|
|
|
|
{
|
|
|
|
int m;
|
|
|
|
struct menu_items items[] = {
|
2002-06-27 01:08:11 +00:00
|
|
|
{ "Shuffle", shuffle },
|
|
|
|
{ "MP3/M3U filter", mp3_filter },
|
2002-07-22 16:39:17 +00:00
|
|
|
{ "Sort mode", sort_case },
|
2002-06-27 01:08:11 +00:00
|
|
|
{ "Backlight Timer", backlight_timer },
|
2002-08-13 11:10:11 +00:00
|
|
|
{ "Contrast", contrast },
|
2002-06-27 01:08:11 +00:00
|
|
|
{ "Scroll speed", scroll_speed },
|
2002-08-06 10:52:51 +00:00
|
|
|
{ "While Playing", wps_set },
|
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
|
|
|
{ "Deep discharge", deep_discharge },
|
2002-08-07 10:35:26 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
{ "Status bar", statusbar },
|
2002-08-09 12:38:45 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_RTC
|
|
|
|
{ "Time/Date", timedate_set },
|
2002-08-06 10:52:51 +00:00
|
|
|
#endif
|
2002-06-24 21:39:48 +00:00
|
|
|
};
|
2002-08-02 13:20:03 +00:00
|
|
|
bool old_shuffle = global_settings.playlist_shuffle;
|
2002-06-24 21:39:48 +00:00
|
|
|
|
|
|
|
m=menu_init( items, sizeof items / sizeof(struct menu_items) );
|
|
|
|
menu_run(m);
|
|
|
|
menu_exit(m);
|
2002-07-15 11:02:12 +00:00
|
|
|
settings_save();
|
2002-08-02 13:20:03 +00:00
|
|
|
|
|
|
|
if (old_shuffle != global_settings.playlist_shuffle)
|
|
|
|
{
|
|
|
|
if (global_settings.playlist_shuffle)
|
|
|
|
{
|
2002-08-06 13:10:25 +00:00
|
|
|
randomise_playlist(current_tick);
|
2002-08-02 13:20:03 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-08-06 13:10:25 +00:00
|
|
|
sort_playlist();
|
2002-08-02 13:20:03 +00:00
|
|
|
}
|
|
|
|
}
|
2002-06-24 21:39:48 +00:00
|
|
|
}
|