diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-10-30 14:40:44 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-10-30 14:40:44 +0100 |
commit | f8b403713988018754656ce9757c684ad9db6f0a (patch) | |
tree | 4fd5499c4d91c8deea57d89c0dbd5842d774d888 | |
parent | a83930b79b399a96d834a43d4fbaf3832e02fa5d (diff) | |
download | glutte-o-matic-f8b403713988018754656ce9757c684ad9db6f0a.tar.gz glutte-o-matic-f8b403713988018754656ce9757c684ad9db6f0a.tar.bz2 glutte-o-matic-f8b403713988018754656ce9757c684ad9db6f0a.zip |
Reduce 1750 threshold to 250
-rw-r--r-- | src/common/Audio/tone.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Audio/tone.c b/src/common/Audio/tone.c index 5124c8a..1c39b62 100644 --- a/src/common/Audio/tone.c +++ b/src/common/Audio/tone.c @@ -125,7 +125,7 @@ static inline void push_dtmf_code(enum dtmf_code code) // TODO: Does that depend on TONE_N? const int thresh_dtmf = 200; -const int thresh_1750 = 300; +const int thresh_1750 = 250; const int num_1750_required = 3; static void analyse_dtmf() |