From 5ee344040d016cb00b42d1876b6eef54a72c5904 Mon Sep 17 00:00:00 2001 From: MelwareDE Date: Tue, 5 Feb 2008 10:57:54 +0000 Subject: [PATCH] New Diva name branding. --- README | 15 +++++++++------ README.qsig | 2 +- capi.conf | 6 +++--- chan_capi.c | 3 +-- 4 files changed, 14 insertions(+), 12 deletions(-) diff --git a/README b/README index b23de03..dc501c0 100644 --- a/README +++ b/README @@ -28,6 +28,9 @@ Mario Goegel No support for Asterisk 1.0.x any more, you need at least Asterisk 1.2.x +Note: +Eicon DIVA Server cards are now named Dialogic(R) Diva(R). + This chan_capi version includes: ================================ - Multiple controller support @@ -43,7 +46,7 @@ This chan_capi version includes: - Use asterisks internal DSP functions for DTMF - Alaw support - Ulaw support! -- Eicon CAPI echo cancelation (echocancel=1) +- Dialogic CAPI echo cancelation (echocancel=1) - Reject call waiting (ACO) - DID for Point to Point mode (a.k.a overlap receiving) - Rx/Tx gains using positive linar value (rxgain=1.0, txgain=1.0 means no change) @@ -62,7 +65,7 @@ This chan_capi version includes: - Support 'type of number'. - ISDN hold. - CAPI Line Interconnect. -- Eicon DIVA Server VoIP/RTP +- Dialogic Diva VoIP/RTP - CLI command "capi show channels" shows details on channel status. - Asterisk 1.4 jitterbuffer configuration. - some QSIG extensions (see README.qsig) @@ -280,7 +283,7 @@ Deactivate CCBS: Chat (MeetMe/Conference): If the CAPI card/driver supports it, the caller can be put into a chat-room: - (This uses the DSPs onboard a Dialogic DIVA Server Rev.2 card.) + (This uses the DSPs onboard a Dialogic Diva Rev.2 card.) exten => s,1,capicommand(chat|||controller) Example: exten => s,1,capicommand(chat|salesmeeting|m|1,3-6) @@ -345,8 +348,8 @@ exten => 12345678,2,Hangup Short HOWTO of capicommand(receivefax...) and capicommand(sendfax...): ========================================================================== -For those of you who have a CAPI card with an on-board DSP (like some Eicon and -DIVA Server), this allows you to receive/send faxes. +For those of you who have a CAPI card with an on-board DSP (like Dialogic Diva), +this allows you to receive/send faxes. capicommand(receivefax|[|||]): ------------------------------------------------------------ @@ -379,7 +382,7 @@ exten => h,1,deadagi,fax.php // Run sfftobmp and mail it. The output of capicommand(receivefax|...) is a SFF file. Use sfftobmp to convert it. -With a DIVA Server, following features are provided: +With a Dialogic Diva, following features are provided: - fax up to 33600 - high resolution - Color Fax diff --git a/README.qsig b/README.qsig index 4ea1344..e42bbcc 100644 --- a/README.qsig +++ b/README.qsig @@ -30,7 +30,7 @@ As example there can be a name of an extension transferred between different PBXs, which is with standard ISDN not possible. These extensions will be transmitted as encoded facility information elements. -To use Q.SIG with asterisk, you'll need a card like Eicon DIVA Server +To use Q.SIG with asterisk, you'll need a card like Dialogic Diva (BRI like PRI), which supports QSIG. Maybe others do also work, let me now. The QSIG support includes: diff --git a/capi.conf b/capi.conf index 1a9cb13..5fb6901 100644 --- a/capi.conf +++ b/capi.conf @@ -51,7 +51,7 @@ context=capi-in ;context for incoming calls ; drivers/pbx/telco which does not send SETUP or SENDING-COMPLETE. ;echosquelch=1 ;_VERY_PRIMITIVE_ echo suppression. Disable this before you start recording voicemail ;or your files may get choppy. (you can use capicommand(echosquelch|no) for this) -;echocancel=yes ;EICON DIVA SERVER (CAPI) echo cancelation (yes=g165) +;echocancel=yes ;Dialogic Diva (CAPI) echo cancelation (yes=g165) ;(possible values: 'no', 'yes', 'force', 'g164', 'g165') echocancelold=yes;use facility selector 6 instead of correct 8 (necessary for older eicon drivers) ;echotail=64 ;echo cancel tail setting (default=0 for maximum) @@ -62,8 +62,8 @@ echocancelold=yes;use facility selector 6 instead of correct 8 (necessary for ol ;pickupgroup=1 ;PBX pickup group (which call groups are we allowed to pickup) ;transfergroup=1 ;Controller(s) where a transfer on native bridge is allowed to. ;language=de ;set language for this device (overwrites default language) -;disallow=all ;RTP codec selection (valid with Eicon DIVA Server only) -;allow=all ;RTP codec selection (valid with Eicon DIVA Server only) +;disallow=all ;RTP codec selection (valid with Dialogic Diva only) +;allow=all ;RTP codec selection (valid with Dialogic Diva only) devices=2 ;number of concurrent calls (b-channels) on this controller ;(2 makes sense for single BRI, 30/23 for PRI/T1) ;jb..... ;with Asterisk 1.4 you can configure jitterbuffer, diff --git a/chan_capi.c b/chan_capi.c index a841859..b7ea397 100644 --- a/chan_capi.c +++ b/chan_capi.c @@ -513,7 +513,6 @@ static void capi_facility_add_datetime(unsigned char *facilityarray) /* * Echo cancellation is for cards w/ integrated echo cancellation only - * (i.e. Eicon active cards support it) */ static void capi_echo_canceller(struct capi_pvt *i, int function) { @@ -5931,7 +5930,7 @@ static int cc_init_capi(void) supported_sservices(cp); } - /* New profile options for e.g. RTP with Eicon DIVA */ + /* New profile options for e.g. RTP with Dialogic Diva */ privateoptions = read_capi_dword(&profile.manufacturer[0]); cc_verbose(3, 0, VERBOSE_PREFIX_3 "CAPI/contr%d private options=0x%08x\n", controller, privateoptions);