From f9283bc14fb13635f54d014585cb41b6dfc9ed05 Mon Sep 17 00:00:00 2001 From: clement Date: Fri, 19 Jun 2026 15:43:18 +0200 Subject: [PATCH] tune(bt): gain micro a 2 --- components/audio_router/audio_router.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/audio_router/audio_router.c b/components/audio_router/audio_router.c index befc386..7037547 100644 --- a/components/audio_router/audio_router.c +++ b/components/audio_router/audio_router.c @@ -41,7 +41,7 @@ static TaskHandle_t s_task = NULL; /* --- Gain numerique SCO (avec saturation) --- */ #define SCO_PLAY_GAIN 4 /* downlink : PCM mobile -> ecouteur */ -#define SCO_MIC_GAIN 4 /* uplink : micro -> mobile */ +#define SCO_MIC_GAIN 2 /* uplink : micro -> mobile */ static inline int16_t sat16(int32_t v) { if (v > 32767) return 32767;