diff --git a/docs/Buzzer.md b/docs/Buzzer.md index 19969a4a6b8..1d94e5428f2 100644 --- a/docs/Buzzer.md +++ b/docs/Buzzer.md @@ -36,7 +36,7 @@ Sequences: 7 BAT_LOW 25, 50 Battery is getting low (repeats) 8 NULL multi beeps GPS status (sat count) 9 RX_SET 10, 10 RX is set (when aux channel is set for beep or beep sequence how many satellites has found if GPS enabled) - 10 ACC_CALIBRATION 5, 5, 5, 5 ACC inflight calibration completed + 11 ACTION_SUCCESS 5, 5, 5, 5 An action succeeded: ACC inflight calibration, or settings saved by stick command 11 ACC_CALIBRATION_FAIL 20, 15, 35, 5 ACC inflight calibration failed 12 READY_BEEP 4, 5, 4, 5, 8, 5, 15, 5, 8, 5, 4, 5, 4, 5 GPS locked and copter ready 13 NULL multi beeps Variable # of beeps (confirmation, GPS sat count, etc) diff --git a/src/main/fc/config.c b/src/main/fc/config.c index 5e1c87ac145..f9fddd848e9 100755 --- a/src/main/fc/config.c +++ b/src/main/fc/config.c @@ -378,7 +378,8 @@ void processSaveConfigAndNotify(void) writeEEPROM(); readEEPROM(); resumeRxSignal(); - beeperConfirmationBeeps(1); + // Distinct sequence so the pilot can tell a completed save from a plain stick command acknowledgement + beeper(BEEPER_ACTION_SUCCESS); #ifdef USE_OSD osdShowEEPROMSavedNotification(); #endif