diff --git a/Makefile b/Makefile index 5da4ff739d..3e37653991 100755 --- a/Makefile +++ b/Makefile @@ -78,7 +78,7 @@ DESTDIR= BUSYDETECT = #-DBUSYDETECT # Improved busydetect routine, comment the previous one if you use this one -BUSYDETECT+= -DBUSYDETECT_MARTIN +BUSYDETECT+= #-DBUSYDETECT_MARTIN # Detect the busy signal looking only at tone lengths # For example if you have 3 beeps 100ms tone, 100ms silence separated by 500 ms of silence BUSYDETECT+= #-DBUSYDETECT_TONEONLY diff --git a/dsp.c b/dsp.c index 3ea3cf235f..3f370f372d 100755 --- a/dsp.c +++ b/dsp.c @@ -151,6 +151,10 @@ static struct progress { #define BELL_MF_RELATIVE_PEAK 12.6 /* 11dB */ #endif +#if !defined(BUSYDETECT_MARTIN) && !defined(BUSYDETECT) && !defined(BUSYDETECT_TONEONLY) && !defined(BUSYDETECT_COMPARE_TONE_AND_SILENCE) +#define BUSYDETECT_MARTIN +#endif + typedef struct { float v2; float v3;