diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2006-10-05 12:40:13 +0000 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2006-10-05 12:40:13 +0000 |
| commit | e66b2ec45071f810f84991d3035ef21b6ecdb509 (patch) | |
| tree | ebf3ec7bef00d6806d63facd53b9a7a540f561cd /apps/settings.c | |
| parent | 0640a050d5fc19efc58e6cd08b23165b4ab9116c (diff) | |
| download | rockbox-e66b2ec45071f810f84991d3035ef21b6ecdb509.zip rockbox-e66b2ec45071f810f84991d3035ef21b6ecdb509.tar.gz rockbox-e66b2ec45071f810f84991d3035ef21b6ecdb509.tar.bz2 rockbox-e66b2ec45071f810f84991d3035ef21b6ecdb509.tar.xz | |
Implement region setting for the fm tuner. The region setting affects deemphasis, band limits and step size. Fixes FS#5929, FS#5928.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11133 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.c')
| -rw-r--r-- | apps/settings.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/settings.c b/apps/settings.c index d419d4a..ebe0d1e 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -661,6 +661,9 @@ static const struct bit_entry hd_bits[] = {4, S_O(unplug_rw), 0, "rewind duration on pause", NULL}, {1, S_O(unplug_autoresume), 0, "disable autoresume if phones not present", off_on }, #endif +#ifdef CONFIG_TUNER + {2, S_O(fm_region), 0, "fm_region", "eu,us,jp,kr" }, +#endif /* If values are just added to the end, no need to bump the version. */ /* new stuff to be added at the end */ |