summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJustin Heiner <jheiner@rockbox.org>2002-09-06 06:20:15 +0000
committerJustin Heiner <jheiner@rockbox.org>2002-09-06 06:20:15 +0000
commit94d3ba2783c8645f471cda6bcb1b23e39997f4a1 (patch)
tree1fddd9db0d41697117b203b1130eb7ab4faa4e33 /docs
parent09c356a5ae4530e2bc3cbb690cf7c4c0183b30fa (diff)
downloadrockbox-94d3ba2783c8645f471cda6bcb1b23e39997f4a1.zip
rockbox-94d3ba2783c8645f471cda6bcb1b23e39997f4a1.tar.gz
rockbox-94d3ba2783c8645f471cda6bcb1b23e39997f4a1.tar.bz2
rockbox-94d3ba2783c8645f471cda6bcb1b23e39997f4a1.tar.xz
Added documentation for Custom EQ
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2200 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'docs')
-rw-r--r--docs/CUSTOM_EQ_FORMAT33
1 files changed, 33 insertions, 0 deletions
diff --git a/docs/CUSTOM_EQ_FORMAT b/docs/CUSTOM_EQ_FORMAT
new file mode 100644
index 0000000..a3611ce
--- /dev/null
+++ b/docs/CUSTOM_EQ_FORMAT
@@ -0,0 +1,33 @@
+Custom EQ
+File Format Specifications
+
+Description / General Info
+--------------------------
+* The Custom EQ is used on both the Rockbox Player and Recorder, in order to
+ load, well, custom eq settings.
+* After editing the .eq file, you may need to reboot your Rockbox.
+
+File Location
+-------------
+The files may reside anywhere on the hard disk. The only restriction is that
+the filename must end in .eq
+
+Format Rules
+------------
+* Each setting must have it's own line
+* The setting you wish to change must be in brackets.
+* The value must be immediately after the end bracket, with no spaces.
+* There must be a # immediately after the value, with no spaces
+* Any text after the # will be ignored
+* If a value is out of the acceptable range for the device, which can vary
+ depending on the model, a Syntax Error will be displayed and the value
+ will be set to the default value.
+
+Example File
+------------
+[volume]70#(0 to 100)
+[bass]11#(-15 to 15 [Range depends on MAS])
+[treble]12#(-15 to 15 [Range depends on MAS])
+[balance]0#(-100 to 100)
+
+This sets each line to the respective values after it. Notice that you can put comments after the # \ No newline at end of file