1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 by Stuart Martin
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 ****************************************************************************/
22 #ifndef __SETTINGS_H__
23 #define __SETTINGS_H__
30 #if CONFIG_CODEC == SWCODEC
35 unsigned const char* string
;
39 /** Setting values defines **/
41 /* name of directory where configuration, fonts and other data
45 #undef ROCKBOX_DIR_LEN
47 #define ROCKBOX_DIR "."
48 #define ROCKBOX_DIR_LEN 1
51 /* ROCKBOX_DIR is now defined in autoconf.h for flexible build types */
53 #error ROCKBOX_DIR not defined (should be in autoconf.h)
55 #define ROCKBOX_DIR_LEN sizeof(ROCKBOX_DIR)
59 #define FONT_DIR ROCKBOX_DIR "/fonts"
60 #define LANG_DIR ROCKBOX_DIR "/langs"
61 #define WPS_DIR ROCKBOX_DIR "/wps"
62 #define THEME_DIR ROCKBOX_DIR "/themes"
63 #define ICON_DIR ROCKBOX_DIR "/icons"
65 #define PLUGIN_DIR ROCKBOX_DIR "/rocks"
66 #define PLUGIN_GAMES_DIR PLUGIN_DIR "/games"
67 #define PLUGIN_APPS_DIR PLUGIN_DIR "/apps"
68 #define PLUGIN_DEMOS_DIR PLUGIN_DIR "/demos"
69 #define VIEWERS_DIR PLUGIN_DIR "/viewers"
71 #define BACKDROP_DIR ROCKBOX_DIR "/backdrops"
72 #define REC_BASE_DIR "/"
73 #define EQS_DIR ROCKBOX_DIR "/eqs"
74 #define CODECS_DIR ROCKBOX_DIR "/codecs"
75 #define RECPRESETS_DIR ROCKBOX_DIR "/recpresets"
76 #define FMPRESET_PATH ROCKBOX_DIR "/fmpresets"
77 #define PLAYLIST_CATALOG_DEFAULT_DIR "/Playlists"
79 #define VIEWERS_CONFIG ROCKBOX_DIR "/viewers.config"
80 #define CONFIGFILE ROCKBOX_DIR "/config.cfg"
81 #define FIXEDSETTINGSFILE ROCKBOX_DIR "/fixed.cfg"
83 #define MAX_FILENAME 32
87 #define BOOKMARK_YES 1
88 #define BOOKMARK_ASK 2
89 #define BOOKMARK_UNIQUE_ONLY 2
90 #define BOOKMARK_RECENT_ONLY_YES 3
91 #define BOOKMARK_RECENT_ONLY_ASK 4
107 #define CROSSFADE_ENABLE_SHUFFLE 1
108 #define CROSSFADE_ENABLE_TRACKSKIP 2
109 #define CROSSFADE_ENABLE_SHUFFLE_AND_TRACKSKIP 3
110 #define CROSSFADE_ENABLE_ALWAYS 4
112 #define FOLDER_ADVANCE_OFF 0
113 #define FOLDER_ADVANCE_NEXT 1
114 #define FOLDER_ADVANCE_RANDOM 2
116 /* repeat mode options */
123 #ifdef AB_REPEAT_ENABLE
129 /* dir filter options */
130 /* Note: Any new filter modes need to be added before NUM_FILTER_MODES.
131 * Any new rockbox browse filter modes (accessible through the menu)
132 * must be added after NUM_FILTER_MODES. */
133 enum { SHOW_ALL
, SHOW_SUPPORTED
, SHOW_MUSIC
, SHOW_PLAYLIST
, SHOW_ID3DB
,
135 SHOW_WPS
, SHOW_RWPS
, SHOW_FMR
, SHOW_CFG
, SHOW_LNG
, SHOW_MOD
, SHOW_FONT
, SHOW_PLUGINS
};
137 /* file and dir sort options */
138 enum { SORT_ALPHA
, SORT_DATE
, SORT_DATE_REVERSED
, SORT_TYPE
, /* available as settings */
139 SORT_ALPHA_REVERSED
, SORT_TYPE_REVERSED
}; /* internal use only */
140 enum { SORT_INTERPRET_AS_DIGIT
, SORT_INTERPRET_AS_NUMBER
};
142 /* recursive dir insert options */
143 enum { RECURSE_OFF
, RECURSE_ON
, RECURSE_ASK
};
145 /* replaygain types */
146 enum { REPLAYGAIN_TRACK
= 0, REPLAYGAIN_ALBUM
, REPLAYGAIN_SHUFFLE
};
148 /* show path types */
149 enum { SHOW_PATH_OFF
= 0, SHOW_PATH_CURRENT
, SHOW_PATH_FULL
};
152 #ifdef HAVE_RTC_ALARM
153 enum { ALARM_START_WPS
= 0,
157 #ifdef HAVE_RECORDING
162 #if CONFIG_TUNER && defined(HAVE_RECORDING)
163 #define ALARM_SETTING_TEXT "wps,fm,rec"
165 #define ALARM_SETTING_TEXT "wps,fm"
166 #elif defined(HAVE_RECORDING)
167 #define ALARM_SETTING_TEXT "wps,rec"
170 #endif /* HAVE_RTC_ALARM */
174 /* Not really a setting but several files should stay synced */
175 #define KEYCLICK_DURATION 2
177 /** virtual pointer stuff.. move to another .h maybe? **/
178 /* These define "virtual pointers", which could either be a literal string,
179 or a mean a string ID if the pointer is in a certain range.
180 This helps to save space for menus and options. */
182 #define VIRT_SIZE 0xFFFF /* more than enough for our string ID range */
183 #if CONFIG_CPU==DM320
184 /* the DM320 has IRAM at 0, so we use 0xffff bytes right after that */
185 #define VIRT_PTR ((unsigned char*)0x4000)
187 /* a location where we won't store strings, 0 is the fastest */
188 #define VIRT_PTR ((unsigned char*)0)
191 /* form a "virtual pointer" out of a language ID */
192 #define ID2P(id) (VIRT_PTR + id)
194 /* resolve a pointer which could be a virtualized ID or a literal */
195 #define P2STR(p) (char *)((p>=VIRT_PTR && p<VIRT_PTR+VIRT_SIZE) ? str(p-VIRT_PTR) : p)
197 /* get the string ID from a virtual pointer, -1 if not virtual */
198 #define P2ID(p) ((p>=VIRT_PTR && p<VIRT_PTR+VIRT_SIZE) ? p-VIRT_PTR : -1)
200 /* !defined(HAVE_LCD_COLOR) implies HAVE_LCD_CONTRAST with default 40.
201 Explicitly define HAVE_LCD_CONTRAST in config file for newer ports for
206 /** function prototypes **/
208 /* argument bits for settings_load() */
209 #define SETTINGS_RTC 1 /* only the settings from the RTC nonvolatile RAM */
210 #define SETTINGS_HD 2 /* only the settings from the disk sector */
211 #define SETTINGS_ALL 3 /* both */
212 void settings_load(int which
);
213 bool settings_load_config(const char* file
, bool apply
);
215 void status_save(void);
216 int settings_save(void);
217 /* defines for the options paramater */
219 SETTINGS_SAVE_CHANGED
= 0,
223 #ifdef HAVE_RECORDING
224 SETTINGS_SAVE_RECPRESETS
,
226 #if CONFIG_CODEC == SWCODEC
227 SETTINGS_SAVE_EQPRESET
,
230 bool settings_save_config(int options
);
232 struct settings_list
;
233 void reset_setting(const struct settings_list
*setting
, void *var
);
234 void settings_reset(void);
235 void sound_settings_apply(void);
236 void settings_apply(bool read_disk
);
237 void settings_apply_pm_range(void);
238 void settings_display(void);
240 enum optiontype
{ INT
, BOOL
};
242 const struct settings_list
* find_setting(const void* variable
, int *id
);
243 bool cfg_int_to_string(int setting_id
, int val
, char* buf
, int buf_len
);
244 bool cfg_to_string(int setting_id
, char* buf
, int buf_len
);
245 bool set_bool_options(const char* string
, const bool* variable
,
246 const char* yes_str
, int yes_voice
,
247 const char* no_str
, int no_voice
,
248 void (*function
)(bool));
250 bool set_bool(const char* string
, const bool* variable
);
251 bool set_int(const unsigned char* string
, const char* unit
, int voice_unit
,
253 void (*function
)(int), int step
, int min
, int max
,
254 void (*formatter
)(char*, size_t, int, const char*) );
256 /* use this one if you need to create a lang from the value (i.e with TALK_ID()) */
257 bool set_int_ex(const unsigned char* string
, const char* unit
, int voice_unit
,
259 void (*function
)(int), int step
, int min
, int max
,
260 void (*formatter
)(char*, size_t, int, const char*),
261 int32_t (*get_talk_id
)(int, int));
263 void set_file(const char* filename
, char* setting
, int maxlen
);
265 bool set_option(const char* string
, const void* variable
, enum optiontype type
,
266 const struct opt_items
* options
, int numoptions
, void (*function
)(int));
270 /** global_settings and global_status struct definitions **/
274 int resume_index
; /* index in playlist (-1 for no active resume) */
275 uint32_t resume_offset
; /* byte offset in mp3 file */
276 int runtime
; /* current runtime since last charge */
277 int topruntime
; /* top known runtime */
279 int dircache_size
; /* directory cache structure last size, 22 bits */
282 int last_frequency
; /* Last frequency for resuming, in FREQ_STEP units,
283 relative to MIN_FREQ */
285 signed char last_screen
;
286 int viewer_icon_count
;
293 int volume
; /* audio output volume in decibels range depends on the dac */
294 int balance
; /* stereo balance: 0-100 0=left 50=bal 100=right */
295 int bass
; /* bass boost/cut in decibels */
296 int treble
; /* treble boost/cut in decibels */
297 int channel_config
; /* Stereo, Mono, Custom, Mono left, Mono right, Karaoke */
298 int stereo_width
; /* 0-255% */
300 #if CONFIG_CODEC != SWCODEC
301 int loudness
; /* loudness eq: 0-100 0=off 100=max */
302 int avc
; /* auto volume correct: 0=off, 1=20ms, 2=2s 3=4s 4=8s */
303 int mdb_strength
; /* 0-127dB */
304 int mdb_harmonics
; /* 0-100% */
305 int mdb_center
; /* 20-300Hz */
306 int mdb_shape
; /* 50-300Hz */
307 bool mdb_enable
; /* true/false */
308 bool superbass
; /* true/false */
316 #if CONFIG_CODEC == SWCODEC
318 int crossfade
; /* Enable crossfade (0=off, 1=shuffle, 2=trackskip,
319 3=shuff&trackskip, 4=always) */
320 int crossfade_fade_in_delay
; /* Fade in delay (0-15s) */
321 int crossfade_fade_out_delay
; /* Fade out delay (0-15s) */
322 int crossfade_fade_in_duration
; /* Fade in duration (0-15s) */
323 int crossfade_fade_out_duration
; /* Fade out duration (0-15s) */
324 int crossfade_fade_out_mixmode
; /* Fade out mode (0=crossfade,1=mix) */
327 bool replaygain
; /* enable replaygain */
328 bool replaygain_noclip
; /* scale to prevent clips */
329 int replaygain_type
; /* 0=track gain, 1=album gain, 2=track gain if
330 shuffle is on, album gain otherwise */
331 int replaygain_preamp
; /* scale replaygained tracks by this */
334 bool crossfeed
; /* enable crossfeed */
335 unsigned int crossfeed_direct_gain
; /* dB x 10 */
336 unsigned int crossfeed_cross_gain
; /* dB x 10 */
337 unsigned int crossfeed_hf_attenuation
; /* dB x 10 */
338 unsigned int crossfeed_hf_cutoff
; /* Frequency in Hz */
341 bool eq_enabled
; /* Enable equalizer */
342 unsigned int eq_precut
; /* dB */
344 /* Order is important here, must be cutoff, q, then gain for each band.
345 See dsp_set_eq_coefs in dsp.c for why. */
347 /* Band 0 settings */
348 int eq_band0_cutoff
; /* Hz */
350 int eq_band0_gain
; /* +/- dB */
352 /* Band 1 settings */
353 int eq_band1_cutoff
; /* Hz */
355 int eq_band1_gain
; /* +/- dB */
357 /* Band 2 settings */
358 int eq_band2_cutoff
; /* Hz */
360 int eq_band2_gain
; /* +/- dB */
362 /* Band 3 settings */
363 int eq_band3_cutoff
; /* Hz */
365 int eq_band3_gain
; /* +/- dB */
367 /* Band 4 settings */
368 int eq_band4_cutoff
; /* Hz */
370 int eq_band4_gain
; /* +/- dB */
373 int beep
; /* system beep volume when changing tracks etc. */
374 int keyclick
; /* keyclick volume */
375 int keyclick_repeats
; /* keyclick on repeats */
376 bool dithering_enabled
;
377 #endif /* CONFIG_CODEC == SWCODEC */
379 #ifdef HAVE_RECORDING
380 #if CONFIG_CODEC == SWCODEC
381 int rec_format
; /* record format index */
382 int rec_mono_mode
; /* how to create mono: L, R, L+R */
384 /* Encoder Settings Start - keep these together */
385 struct mp3_enc_config mp3_enc_config
;
386 #if 0 /* These currently contain no members but their places in line
388 struct aiff_enc_config aiff_enc_config
;
389 struct wav_enc_config wav_enc_config
;
390 struct wavpack_enc_config wavpack_enc_config
;
392 /* Encoder Settings End */
395 int rec_quality
; /* 0-7 */
396 #endif /* CONFIG_CODEC == SWCODEC */
397 int rec_source
; /* 0=mic, 1=line, 2=S/PDIF, 2 or 3=FM Radio */
398 int rec_frequency
; /* 0 = 44.1kHz (depends on target)
404 int rec_channels
; /* 0=Stereo, 1=Mono */
406 int rec_mic_gain
; /* depends on target */
407 int rec_left_gain
; /* depends on target */
408 int rec_right_gain
; /* depends on target */
409 bool peak_meter_clipcounter
; /* clipping count indicator */
410 bool rec_editable
; /* true means that the bit reservoir is off */
412 /* note: timesplit setting is not saved */
413 int rec_timesplit
; /* 0 = off,
414 1 = 00:05, 2 = 00:10, 3 = 00:15, 4 = 00:30
415 5 = 01:00, 6 = 02:00, 7 = 04:00, 8 = 06:00
416 9 = 08:00, 10= 10:00, 11= 12:00, 12= 18:00,
418 int rec_sizesplit
; /* 0 = off,
419 1 = 5MB, 2 = 10MB, 3 = 15MB, 4 = 32MB
420 5 = 64MB, 6 = 75MB, 7 = 100MB, 8 = 128MB
421 9 = 256MB, 10= 512MB, 11= 650MB, 12= 700MB,
422 13= 1GB, 14 = 1.5GB 15 = 1.75MB*/
423 int rec_split_type
; /* split/stop */
424 int rec_split_method
; /* time/filesize */
426 int rec_prerecord_time
; /* In seconds, 0-30, 0 means OFF */
427 char rec_directory
[MAX_FILENAME
+1];
428 int cliplight
; /* 0 = off
430 2 = main and remote lcd
433 int rec_start_thres_db
;
434 int rec_start_thres_linear
;
435 int rec_start_duration
; /* index of trig_durations */
436 int rec_stop_thres_db
;
437 int rec_stop_thres_linear
;
438 int rec_stop_postrec
;
439 int rec_stop_gap
; /* index of trig_durations */
440 int rec_trigger_mode
; /* see TRIG_MODE_XXX constants */
441 int rec_trigger_type
; /* what to do when trigger released */
444 int rec_agc_preset_mic
; /* AGC mic preset modes:
451 int rec_agc_preset_line
; /* AGC line-in preset modes:
458 int rec_agc_maxgain_mic
; /* AGC maximum mic gain */
459 int rec_agc_maxgain_line
; /* AGC maximum line-in gain */
460 int rec_agc_cliptime
; /* 0.2, 0.4, 0.6, 0.8, 1s */
462 #endif /* HAVE_RECORDING */
466 bool fm_force_mono
; /* Forces Mono mode if true */
467 unsigned char fmr_file
[MAX_FILENAME
+1]; /* last fmr preset */
471 #ifndef HAVE_WHEEL_ACCELERATION
472 int list_accel_start_delay
; /* ms before we start increaseing step size */
473 int list_accel_wait
; /* ms between increases */
476 #ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING
477 int touchpad_sensitivity
;
480 #ifdef HAVE_HEADPHONE_DETECTION
481 int unplug_mode
; /* pause on headphone unplug */
482 int unplug_rw
; /* time in s to rewind when pausing */
483 bool unplug_autoresume
; /* disable auto-resume if no phones */
486 #ifdef HAVE_QUICKSCREEN
487 /* these are split because settings_list cant handle arrays */
494 int timeformat
; /* time format: 0=24 hour clock, 1=12 hour clock */
497 #ifdef HAVE_DISK_STORAGE
498 int disk_spindown
; /* time until disk spindown, in seconds (0=off) */
499 int buffer_margin
; /* audio buffer watermark margin, in seconds */
502 int dirfilter
; /* 0=display all, 1=only supported, 2=only music,
503 3=dirs+playlists, 4=ID3 database */
504 int show_filename_ext
; /* show filename extensions in file browser?
505 0 = no, 1 = yes, 2 = only unknown 0 */
506 int default_codepage
; /* set default codepage for tag conversion */
507 bool hold_lr_for_scroll_in_list
; /* hold L/R scrolls the list left/right */
508 bool play_selected
; /* Plays selected file even in shuffle mode */
509 bool party_mode
; /* party mode - unstoppable music */
510 bool audioscrobbler
; /* Audioscrobbler logging */
512 bool car_adapter_mode
; /* 0=off 1=on */
514 #if defined(HAVE_RTC_ALARM) && \
515 (defined(HAVE_RECORDING) || CONFIG_TUNER)
516 int alarm_wake_up_screen
;
518 int ff_rewind_min_step
; /* FF/Rewind minimum step size */
519 int ff_rewind_accel
; /* FF/Rewind acceleration (in seconds per doubling) */
521 int peak_meter_release
; /* units per read out */
522 int peak_meter_hold
; /* hold time for peak meter in 1/100 s */
523 int peak_meter_clip_hold
; /* hold time for clips */
524 bool peak_meter_dbfs
; /* show linear or dbfs values */
525 int peak_meter_min
; /* range minimum */
526 int peak_meter_max
; /* range maximum */
528 unsigned char wps_file
[MAX_FILENAME
+1]; /* last wps */
529 unsigned char lang_file
[MAX_FILENAME
+1]; /* last language */
530 unsigned char playlist_catalog_dir
[MAX_FILENAME
+1];
531 int skip_length
; /* skip length */
532 int max_files_in_dir
; /* Max entries in directory (file browser) */
533 int max_files_in_playlist
; /* Max entries in playlist */
534 int volume_type
; /* how volume is displayed: 0=graphic, 1=percent */
535 int battery_display
; /* how battery is displayed: 0=graphic, 1=percent */
536 bool show_icons
; /* 0=hide 1=show */
537 bool statusbar
; /* 0=hide, 1=show */
539 #if CONFIG_KEYPAD == RECORDER_PAD
540 bool buttonbar
; /* 0=hide, 1=show */
543 bool scrollbar
; /* 0=hide, 1=show */
544 /* goto current song when exiting WPS */
545 bool browse_current
; /* 1=goto current song,
546 0=goto previous location */
547 bool scroll_paginated
; /* 0=dont 1=do */
548 int scroll_speed
; /* long texts scrolling speed: 1-30 */
549 int bidir_limit
; /* bidir scroll length limit */
550 int scroll_delay
; /* delay (in 1/10s) before starting scroll */
551 int scroll_step
; /* pixels to advance per update */
553 /* auto bookmark settings */
554 int autoloadbookmark
; /* auto load option: 0=off, 1=ask, 2=on */
555 int autocreatebookmark
; /* auto create option: 0=off, 1=ask, 2=on */
556 int usemrb
; /* use MRB list: 0=No, 1=Yes*/
559 bool dircache
; /* enable directory cache */
562 #ifdef HAVE_TC_RAMCACHE
563 bool tagcache_ram
; /* load tagcache to ram? */
565 bool tagcache_autoupdate
; /* automatically keep tagcache in sync? */
566 bool runtimedb
; /* runtime database active? */
567 #endif /* HAVE_TAGCACHE */
570 unsigned char backdrop_file
[MAX_FILENAME
+1]; /* backdrop bitmap file */
573 #ifdef HAVE_LCD_COLOR
574 int bg_color
; /* background color native format */
575 int fg_color
; /* foreground color native format */
576 int lss_color
; /* background color for the selector or start color for the gradient */
577 int lse_color
; /* end color for the selector gradient */
578 int lst_color
; /* color of the text for the selector */
579 unsigned char colors_file
[MAX_FILENAME
+1];
582 /* playlist/playback settings */
583 int repeat_mode
; /* 0=off 1=repeat all 2=repeat one 3=shuffle 4=ab */
584 int next_folder
; /* move to next folder */
585 int recursive_dir_insert
; /* should directories be inserted recursively */
586 bool fade_on_stop
; /* fade on pause/unpause/stop */
587 bool playlist_shuffle
;
588 bool warnon_erase_dynplaylist
; /* warn when erasing dynamic playlist */
590 /* playlist viewer settings */
591 bool playlist_viewer_icons
; /* display icons on viewer */
592 bool playlist_viewer_indices
; /* display playlist indices on viewer */
593 int playlist_viewer_track_display
; /* how to display tracks in viewer */
595 /* voice UI settings */
596 bool talk_menu
; /* enable voice UI */
597 int talk_dir
; /* voiced directories mode: 0=off 1=number 2=spell */
598 bool talk_dir_clip
; /* use directory .talk clips */
599 int talk_file
; /* voice file mode: 0=off, 1=number, 2=spell */
600 bool talk_file_clip
; /* use file .talk clips */
601 bool talk_filetype
; /* say file type */
602 bool talk_battery_level
;
604 /* file browser sorting */
605 bool sort_case
; /* dir sort order: 0=case insensitive, 1=sensitive */
606 int sort_dir
; /* 0=alpha, 1=date (old first), 2=date (new first) */
607 int sort_file
; /* 0=alpha, 1=date, 2=date (new first), 3=type */
608 int interpret_numbers
; /* true=strnatcmp, false=strcmp */
611 int poweroff
; /* idle power off timer */
612 int battery_capacity
; /* in mAh */
614 #if BATTERY_TYPES_COUNT > 1
615 int battery_type
; /* for units which can take multiple types (Ondio). */
617 #ifdef HAVE_SPDIF_POWER
618 bool spdif_enable
; /* S/PDIF power on/off */
620 #ifdef HAVE_USB_CHARGING_ENABLE
624 /* device settings */
625 #ifdef HAVE_LCD_CONTRAST
626 int contrast
; /* lcd contrast */
629 #ifdef HAVE_LCD_BITMAP
630 #ifdef HAVE_LCD_INVERT
631 bool invert
; /* invert display */
634 bool flip_display
; /* turn display (and button layout) by 180 degrees */
636 int cursor_style
; /* style of the selection cursor */
637 int screen_scroll_step
;
638 int show_path_in_browser
; /* 0=off, 1=current directory, 2=full path */
639 bool offset_out_of_view
;
640 unsigned char icon_file
[MAX_FILENAME
+1];
641 unsigned char viewers_icon_file
[MAX_FILENAME
+1];
642 unsigned char font_file
[MAX_FILENAME
+1]; /* last font */
643 unsigned char kbd_file
[MAX_FILENAME
+1]; /* last keyboard */
644 #endif /* HAVE_LCD_BITMAP */
646 #ifdef HAVE_LCD_CHARCELLS
647 int jump_scroll
; /* Fast jump when scrolling */
648 int jump_scroll_delay
; /* Delay between jump scroll screens */
651 int backlight_timeout
; /* backlight off timeout: 0-18 0=never,
653 then according to timeout_values[] */
654 bool caption_backlight
; /* turn on backlight at end and start of track */
655 bool bl_filter_first_keypress
; /* filter first keypress when dark? */
657 int backlight_timeout_plugged
;
659 #ifdef HAVE_BACKLIGHT
660 #ifdef HAS_BUTTON_HOLD
661 int backlight_on_button_hold
; /* what to do with backlight when hold
664 #ifdef HAVE_LCD_SLEEP_SETTING
665 int lcd_sleep_after_backlight_off
; /* when to put lcd to sleep after backlight
669 #if defined(HAVE_BACKLIGHT_FADING_INT_SETTING)
670 int backlight_fade_in
; /* backlight fade in timing: 0..3 */
671 int backlight_fade_out
; /* backlight fade in timing: 0..7 */
672 #elif defined(HAVE_BACKLIGHT_FADING_BOOL_SETTING)
673 bool backlight_fade_in
;
674 bool backlight_fade_out
;
676 #ifdef HAVE_BACKLIGHT_BRIGHTNESS
680 #ifdef HAVE_REMOTE_LCD
682 int remote_contrast
; /* lcd contrast: 0-63 0=low 63=high */
683 int remote_backlight_timeout
; /* backlight off timeout: 0-18 0=never,
684 1=always, then according to timeout_values[] */
685 int remote_backlight_timeout_plugged
;
686 int remote_scroll_speed
; /* long texts scrolling speed: 1-30 */
687 int remote_scroll_delay
; /* delay (in 1/10s) before starting scroll */
688 int remote_scroll_step
; /* pixels to advance per update */
689 int remote_bidir_limit
; /* bidir scroll length limit */
690 bool remote_invert
; /* invert display */
691 bool remote_flip_display
; /* turn display (and button layout) by 180 degrees */
692 bool remote_caption_backlight
; /* turn on backlight at end and start of track */
693 bool remote_bl_filter_first_keypress
; /* filter first remote keypress when remote dark? */
694 unsigned char remote_icon_file
[MAX_FILENAME
+1];
695 unsigned char remote_viewers_icon_file
[MAX_FILENAME
+1];
696 unsigned char rwps_file
[MAX_FILENAME
+1]; /* last remote-wps */
697 #ifdef HAS_REMOTE_BUTTON_HOLD
698 int remote_backlight_on_button_hold
; /* what to do with remote backlight when hold
701 #ifdef HAVE_REMOTE_LCD_TICKING
702 bool remote_reduce_ticking
; /* 0=normal operation,
703 1=EMI reduce on with cost more CPU. */
705 #endif /* HAVE_REMOTE_LCD */
707 #if CONFIG_CODEC == MAS3507D
708 bool line_in
; /* false=off, true=active */
711 #ifdef HAVE_BUTTON_LIGHT
712 int buttonlight_timeout
;
714 #ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
715 int buttonlight_brightness
;
718 #ifdef IPOD_ACCESSORY_PROTOCOL
719 int serial_bitrate
; /* 0=auto 1=9600 2=19200 3=38400 4=57600 */
721 #ifdef HAVE_ACCESSORY_SUPPLY
722 bool accessory_supply
; /* 0=off 1=on, accessory power supply for iPod */
726 bool speaker_enabled
;
730 #ifdef HAVE_TOUCHSCREEN
734 /* If values are just added to the end, no need to bump plugin API
736 /* new stuff to be added at the end */
739 /** global variables **/
740 extern long lasttime
;
741 /* global settings */
742 extern struct user_settings global_settings
;
744 extern struct system_status global_status
;
746 #endif /* __SETTINGS_H__ */