summaryrefslogtreecommitdiffstats
path: root/Graphic_Equalizer/include/configuration.hch
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2004-11-10 12:45:18 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2004-11-10 12:45:18 (GMT)
commit9451e82004bb59a95d9589058759169c1c486c91 (patch)
tree991c9238e4290ed097f0d02494dc80c0f10c68f1 /Graphic_Equalizer/include/configuration.hch
parentb7b9f1ff4da4dae9d4c14ee5e03a7555b254c31c (diff)
downloadTASS-9451e82004bb59a95d9589058759169c1c486c91.zip
TASS-9451e82004bb59a95d9589058759169c1c486c91.tar.gz
TASS-9451e82004bb59a95d9589058759169c1c486c91.tar.bz2
First Real Version
Diffstat (limited to 'Graphic_Equalizer/include/configuration.hch')
-rw-r--r--Graphic_Equalizer/include/configuration.hch32
1 files changed, 27 insertions, 5 deletions
diff --git a/Graphic_Equalizer/include/configuration.hch b/Graphic_Equalizer/include/configuration.hch
index f256886..6e9480a 100644
--- a/Graphic_Equalizer/include/configuration.hch
+++ b/Graphic_Equalizer/include/configuration.hch
@@ -20,6 +20,24 @@
#define _CONFIGURATION_HCH 1
/*
+ * To print debug information on the RS232 port set this define.
+ */
+#define HAVE_DEBUG 0
+
+
+
+/*
+ * If we don't want to use the SmartMedia (and therefor fill the memory
+ * with simple static data) set this to 0. Otherwise 1 will load the smartmedia
+ * routines. To only load the mask and not the entire data set USE_MASK_ONLY to
+ * 1. 0 will load all bitmaps.
+ */
+#define HAVE_SMART_MEDIA 0
+#define USE_MASK_ONLY 1
+
+
+
+/*
* Data can be arranged in two ways. Either as one large blok of continuous
* data, or each segment is stored seperatly at its own address. If set to 1
* we'll asume one large continuous blok.
@@ -42,13 +60,11 @@
/*
* Here we setup the start and end address for the various components.
- * NOTE: The Help image starts at the same address because we intend to use the
- * second rambank for this image.
*/
#define ADDR_SKIN_START 0x000000
#define ADDR_SKIN_END (ADDR_SKIN_START +SIZE_SKIN)
-#define ADDR_HELP_START 0x000000
+#define ADDR_HELP_START 0x04b001
#define ADDR_HELP_END (ADDR_HELP_START +SIZE_HELP)
#if LARGE_DATA_BLOCK
@@ -66,8 +82,8 @@
#else
#define SM_ADDR_SKIN_START 0x084000
#define SM_ADDR_SKIN_MASK_START 0x168000
- #define SM_ADDR_HELP_START 0x000000
- #define SM_ADDR_HELP_START 0x000000
+ #define SM_ADDR_HELP_START 0x1b4000
+ #define SM_ADDR_HELP_START 0x298000
#define SM_ADDR_SKIN_END (SM_ADDR_SKIN_START +(SIZE_SKIN *3))
#define SM_ADDR_SKIN_MASK_END (SM_ADDR_SKIN_END +(SIZE_MASK_SKIN *3))
@@ -76,6 +92,12 @@
#endif
+
+/*
+ * Set the color for various items that will be drawn on screen.
+ */
+#define PIXEL_VOLUME_YAXIS (0x00ff00)
+
#else
#error "ERROR file configuration.hch multiple times included"
#endif /* --- _CONFIGURATION_HCH --- */