bf3fe05dfb
This needs some more testing before it's on by default. If the card is otherwise functioning, these messages may be confusing to the user. If the card is not functioning, the driver can be reloaded with debug to check for this condition. Signed-off-by: Shaun Ruffell <sruffell@digium.com> git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9205 a0bf4364-ded3-4de4-8d8a-66a801d63aff
48 lines
1.2 KiB
C
48 lines
1.2 KiB
C
/*
|
|
* DAHDI Telephony
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* See http://www.asterisk.org for more information about
|
|
* the Asterisk project. Please do not directly contact
|
|
* any of the maintainers of this project for assistance;
|
|
* the project provides a web site, mailing lists and IRC
|
|
* channels for your use.
|
|
*
|
|
* This program is free software, distributed under the terms of
|
|
* the GNU General Public License Version 2 as published by the
|
|
* Free Software Foundation. See the LICENSE file included with
|
|
* this program for more details.
|
|
*/
|
|
|
|
#ifndef _DIGITS_H
|
|
#define _DIGITS_H
|
|
|
|
#define DEFAULT_DTMF_LENGTH 100 * DAHDI_CHUNKSIZE
|
|
#define DEFAULT_MFR1_LENGTH 68 * DAHDI_CHUNKSIZE
|
|
#define DEFAULT_MFR2_LENGTH 100 * DAHDI_CHUNKSIZE
|
|
#define PAUSE_LENGTH 500 * DAHDI_CHUNKSIZE
|
|
|
|
/* At the end of silence, the tone stops */
|
|
static struct dahdi_tone dtmf_silence = {
|
|
.tonesamples = DEFAULT_DTMF_LENGTH,
|
|
};
|
|
|
|
/* At the end of silence, the tone stops */
|
|
static struct dahdi_tone mfr1_silence = {
|
|
.tonesamples = DEFAULT_MFR1_LENGTH,
|
|
};
|
|
|
|
/* At the end of silence, the tone stops */
|
|
static struct dahdi_tone mfr2_silence = {
|
|
.tonesamples = DEFAULT_MFR2_LENGTH,
|
|
};
|
|
|
|
/* A pause in the dialing */
|
|
static struct dahdi_tone tone_pause = {
|
|
.tonesamples = PAUSE_LENGTH,
|
|
};
|
|
|
|
#endif
|