summaryrefslogtreecommitdiff
path: root/zconfig.h
diff options
context:
space:
mode:
authormarkster <markster@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2004-01-02 23:28:52 +0000
committermarkster <markster@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2004-01-02 23:28:52 +0000
commitabf800fc845ce8736704cbe769f831b73700fa04 (patch)
tree49e2e374460c388f00861d170d97caa6b4d980ba /zconfig.h
parent54335c58ad6e5d482d73038bc1894e4e9156afcd (diff)
*Begin* Linux 2.6 build process... not all drivers build, and lots of DEC/INC usecount warnings need to be replaced
git-svn-id: http://svn.digium.com/svn/zaptel/trunk@291 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'zconfig.h')
-rwxr-xr-xzconfig.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/zconfig.h b/zconfig.h
new file mode 100755
index 0000000..d02daca
--- /dev/null
+++ b/zconfig.h
@@ -0,0 +1,77 @@
+/*
+ * Zaptel configuration options
+ *
+ */
+#ifndef _ZCONFIG_H
+#define _ZCONFIG_H
+
+/* Zaptel compile time options */
+
+/*
+ * Uncomment to disable calibration and/or DC/DC converter tests
+ * (not generally recommended)
+ */
+/* #define NO_CALIBRATION */
+/* #define NO_DCDC */
+
+/*
+ * Boost ring voltage (Higher ring voltage, takes more power)
+ */
+/* #define BOOST_RINGER */
+
+/*
+ * Define CONFIG_CALC_XLAW if you have a small number of channels and/or
+ * a small level 2 cache, to optimize for few channels
+ *
+ */
+/* #define CONFIG_CALC_XLAW */
+
+/*
+ * Define if you want MMX optimizations in zaptel
+ *
+ */
+/* #define CONFIG_ZAPTEL_MMX */
+
+/*
+ * Pick your echo canceller: MARK2, MARK3, STEVE, or STEVE2 :)
+ */
+/* #define ECHO_CAN_STEVE */
+/* #define ECHO_CAN_STEVE2 */
+/* #define ECHO_CAN_MARK */
+#define ECHO_CAN_MARK2
+/* #define ECHO_CAN_MARK3 */
+
+/*
+ * Uncomment for aggressive residual echo supression under
+ * MARK2 echo canceller
+ */
+/* #define AGGRESSIVE_SUPPRESSOR */
+
+/*
+ * Uncomment CONFIG_ZAPATA_NET to enable SyncPPP, CiscoHDLC, and Frame Relay
+ * support.
+ */
+/* #define CONFIG_ZAPATA_NET */
+
+/*
+ * Uncomment CONFIG_OLD_HDLC_API if your are compiling with ZAPATA_NET
+ * defined and you are using the old kernel HDLC interface (or if you get
+ * an error about ETH_P_HDLC while compiling).
+ */
+/* #define CONFIG_OLD_HDLC_API */
+
+/*
+ * Uncomment for Generic PPP support (i.e. ZapRAS)
+ */
+/* #define CONFIG_ZAPATA_PPP */
+/*
+ * Uncomment to enable "watchdog" to monitor if interfaces
+ * stop taking interrupts or otherwise misbehave
+ */
+/* CONFIG_ZAPTEL_WATCHDOG */
+
+/* Tone zone info */
+#define DEFAULT_TONE_ZONE 0
+
+
+#endif