summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-08-16 06:50:25 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-08-16 06:50:25 +0000
commitd3fde76fc7842f231888cf7d4e7ba11251c5f13d (patch)
treef740f85a877f0a2cd3ebfadac2fd680a971e1207 /firmware
parent1d4a6c0cc3f45925085356e8a049832167c1203f (diff)
downloadrockbox-d3fde76fc7842f231888cf7d4e7ba11251c5f13d.tar.gz
rockbox-d3fde76fc7842f231888cf7d4e7ba11251c5f13d.zip
FM radio simulation working again
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7332 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/export/config-fmrecorder.h6
-rw-r--r--firmware/export/config-h100.h4
-rw-r--r--firmware/export/config-h120.h4
-rw-r--r--firmware/export/config-ondiofm.h8
4 files changed, 11 insertions, 11 deletions
diff --git a/firmware/export/config-fmrecorder.h b/firmware/export/config-fmrecorder.h
index b54d963c5c..40ba404a82 100644
--- a/firmware/export/config-fmrecorder.h
+++ b/firmware/export/config-fmrecorder.h
@@ -21,6 +21,9 @@
21/* The number of bytes reserved for loadable plugins */ 21/* The number of bytes reserved for loadable plugins */
22#define PLUGIN_BUFFER_SIZE 0x8000 22#define PLUGIN_BUFFER_SIZE 0x8000
23 23
24/* Define this if you have an FM Radio */
25#define CONFIG_TUNER S1A0903X01
26
24#ifndef SIMULATOR 27#ifndef SIMULATOR
25 28
26/* Define this if you have a MAS3587F */ 29/* Define this if you have a MAS3587F */
@@ -62,9 +65,6 @@
62/* FM recorders can wake up from RTC alarm */ 65/* FM recorders can wake up from RTC alarm */
63#define HAVE_ALARM_MOD 1 66#define HAVE_ALARM_MOD 1
64 67
65/* Define this if you have an FM Radio */
66#define CONFIG_TUNER S1A0903X01
67
68/* How to detect USB */ 68/* How to detect USB */
69#define USB_FMRECORDERSTYLE 1 69#define USB_FMRECORDERSTYLE 1
70 70
diff --git a/firmware/export/config-h100.h b/firmware/export/config-h100.h
index db6ecbf8ea..1fd73c25d3 100644
--- a/firmware/export/config-h100.h
+++ b/firmware/export/config-h100.h
@@ -47,11 +47,11 @@
47/* The number of bytes reserved for loadable plugins */ 47/* The number of bytes reserved for loadable plugins */
48#define PLUGIN_BUFFER_SIZE 0xC0000 48#define PLUGIN_BUFFER_SIZE 0xC0000
49 49
50#ifndef SIMULATOR
51
52#define CONFIG_TUNER TEA5767 50#define CONFIG_TUNER TEA5767
53#define CONFIG_TUNER_XTAL 32768000 51#define CONFIG_TUNER_XTAL 32768000
54 52
53#ifndef SIMULATOR
54
55/* Define this if you have a Motorola SCF5249 */ 55/* Define this if you have a Motorola SCF5249 */
56#define CONFIG_CPU MCF5249 56#define CONFIG_CPU MCF5249
57 57
diff --git a/firmware/export/config-h120.h b/firmware/export/config-h120.h
index 0d374c3947..a1828efad2 100644
--- a/firmware/export/config-h120.h
+++ b/firmware/export/config-h120.h
@@ -43,11 +43,11 @@
43/* The number of bytes reserved for loadable plugins */ 43/* The number of bytes reserved for loadable plugins */
44#define PLUGIN_BUFFER_SIZE 0xC0000 44#define PLUGIN_BUFFER_SIZE 0xC0000
45 45
46#ifndef SIMULATOR
47
48#define CONFIG_TUNER TEA5767 46#define CONFIG_TUNER TEA5767
49#define CONFIG_TUNER_XTAL 32768000 47#define CONFIG_TUNER_XTAL 32768000
50 48
49#ifndef SIMULATOR
50
51/* Define this if you have a Motorola SCF5249 */ 51/* Define this if you have a Motorola SCF5249 */
52#define CONFIG_CPU MCF5249 52#define CONFIG_CPU MCF5249
53 53
diff --git a/firmware/export/config-ondiofm.h b/firmware/export/config-ondiofm.h
index 0b15b39294..1b2857668a 100644
--- a/firmware/export/config-ondiofm.h
+++ b/firmware/export/config-ondiofm.h
@@ -18,6 +18,10 @@
18/* The number of bytes reserved for loadable plugins */ 18/* The number of bytes reserved for loadable plugins */
19#define PLUGIN_BUFFER_SIZE 0x8000 19#define PLUGIN_BUFFER_SIZE 0x8000
20 20
21/* Define this if you have an FM Radio */
22#define CONFIG_TUNER (S1A0903X01 | TEA5767) /* to be decided at runtime */
23#define CONFIG_TUNER_XTAL 13000000
24
21#ifndef SIMULATOR 25#ifndef SIMULATOR
22 26
23/* Define this if you have a SH7034 */ 27/* Define this if you have a SH7034 */
@@ -50,10 +54,6 @@
50/* Offset ( in the firmware file's header ) to the real data */ 54/* Offset ( in the firmware file's header ) to the real data */
51#define FIRMWARE_OFFSET_FILE_DATA 24 55#define FIRMWARE_OFFSET_FILE_DATA 24
52 56
53/* Define this if you have an FM Radio */
54#define CONFIG_TUNER (S1A0903X01 | TEA5767) /* to be decided at runtime */
55#define CONFIG_TUNER_XTAL 13000000
56
57/* Define this if the tuner is switched on by software */ 57/* Define this if the tuner is switched on by software */
58#define HAVE_TUNER_PWR_CTRL 58#define HAVE_TUNER_PWR_CTRL
59 59