From 282e79700b5b175afe1accc331462e1d05869f0a Mon Sep 17 00:00:00 2001 From: Anders Hoglund Date: Fri, 24 May 2024 10:57:13 +0200 Subject: [PATCH] Adjust function should not confirm pid profile change with a single beep. PID profile change does that on it's own with no beeps eq profile no. --- src/main/fc/rc_adjustments.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/fc/rc_adjustments.c b/src/main/fc/rc_adjustments.c index 99772d52de..8e0d8991e8 100644 --- a/src/main/fc/rc_adjustments.c +++ b/src/main/fc/rc_adjustments.c @@ -687,7 +687,11 @@ void processRcAdjustments(void) updateAdjustmentData(adjFunc, adjval); blackboxAdjustmentEvent(adjFunc, adjval); - beeperConfirmationBeeps(1); + // PID profile change does it's own confirmation, no of beeps eq profile no, + // a single beep here will kill that. + if (adjFunc != ADJUSTMENT_PID_PROFILE) { + beeperConfirmationBeeps(1); + } setConfigDirty(); adjState->deadTime = now + REPEAT_DELAY;