[Home]

Summary:ASTERISK-02112: [patch] fxshonormode fix
Reporter:richard (richard)Labels:
Date Opened:2004-07-26 14:44:21Date Closed:2008-06-07 10:44:04
Priority:MinorRegression?No
Status:Closed/CompleteComponents:Core/General
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:In order for "Two Wire Impedance Synthesis" to be enabled, Bit 3 of Direct Register 10 needs to be set.

All values in array acim2tiss[] therefore need 0x8 added to them.

****** ADDITIONAL INFORMATION ******

--- wcfxs.c     Tue Jul 27 07:17:59 2004
+++ wcfxs.c    Tue Jul 27 07:17:41 2004
@@ -318,7 +318,7 @@
static struct wcfxs_desc wcfxs = { "Wildcard S400P Prototype", 0 };
static struct wcfxs_desc wcfxse = { "Wildcard TDM400P REV E/F", 0 };
static struct wcfxs_desc wcfxsh = { "Wildcard TDM400P REV H", 0 };
-static int acim2tiss[16] = { 0x0, 0x1, 0x4, 0x5, 0x7, 0x0, 0x0, 0x6, 0x0, 0x0, 0x0, 0x2, 0x0, 0x3 };
+static int acim2tiss[16] = { 0x8, 0x9, 0xc, 0xd, 0xf, 0x8, 0x8, 0xe, 0x8, 0x8, 0x8, 0xa, 0x8, 0xb };

static struct wcfxs *ifaces[WC_MAX_IFACES];
Comments:By: richard (richard) 2004-07-26 14:58:47

Disclaimer on it's way...

By: Mark Spencer (markster) 2004-07-26 15:29:05

Easier to just add 0x08 | to the fxsmode...  in CVS, thanks!

By: Digium Subversion (svnbot) 2008-06-07 10:44:04

Repository: dahdi
Revision: 442

U   trunk/wcfxs.c
U   trunk/wctdm.c

------------------------------------------------------------------------
r442 | markster | 2008-06-07 10:44:03 -0500 (Sat, 07 Jun 2008) | 2 lines

Enable two wire synthesis with honor mode (bug ASTERISK-2112)

------------------------------------------------------------------------

http://svn.digium.com/view/dahdi?view=rev&revision=442