From 00ea82e846de6ef6e613effce7f30308cf85c22c Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Fri, 21 Aug 2009 14:40:29 +0200 Subject: add config knob for default freq and length Signed-off-by: Bernhard Reutner-Fischer --- miscutils/beep.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'miscutils/beep.c') diff --git a/miscutils/beep.c b/miscutils/beep.c index d5c353197..79e75473c 100644 --- a/miscutils/beep.c +++ b/miscutils/beep.c @@ -19,8 +19,16 @@ #define OPT_d (1<<2) #define OPT_r (1<<3) /* defaults */ -#define FREQ (4440) -#define LENGTH (50) +#ifndef CONFIG_FEATURE_BEEP_FREQ +# define FREQ (4000) +#else +# define FREQ (CONFIG_FEATURE_BEEP_FREQ) +#endif +#ifndef CONFIG_FEATURE_BEEP_LENGTH +# define LENGTH (30) +#else +# define LENGTH (CONFIG_FEATURE_BEEP_LENGTH) +#endif #define DELAY (0) #define REPETITIONS (1) -- cgit v1.2.3