summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--zaptel.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/zaptel.h b/zaptel.h
index 003a4f7..d0011ce 100644
--- a/zaptel.h
+++ b/zaptel.h
@@ -386,6 +386,11 @@ struct zt_versioninfo {
char echo_canceller[80];
};
+struct zt_hwgain{
+ int newgain; /* desired gain in dB but x10. -3.5dB would be -35 */
+ int tx:1; /* 0=rx; 1=tx */
+};
+
/* ioctl definitions */
#define ZT_CODE 'J'
@@ -693,6 +698,11 @@ struct zt_versioninfo {
#define ZT_LOOPBACK _IOW(ZT_CODE, 58, int)
/*
+ * Set the HW gain for a device
+ */
+#define ZT_SET_HWGAIN _IOW (ZT_CODE, 86, struct zt_hwgain)
+
+/*
* 60-80 are reserved for private drivers
* 80-85 are reserved for dynamic span stuff
*/