Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/Buzzer.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
3 changes: 2 additions & 1 deletion src/main/fc/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down