1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 16:25:31 +03:00

Revert "Inhibit the %^0$ buzzer on USB power / Bugfix for no VBAT connected"

This reverts commit bbf70c6370.
This commit is contained in:
borisbstyle 2015-10-29 21:44:42 +01:00
parent e7ce0193ce
commit 3d9c177126

View file

@ -211,7 +211,7 @@ static const beeperTableEntry_t *currentBeeperEntry = NULL;
*/
void beeper(beeperMode_e mode)
{
if (mode == BEEPER_SILENCE || (feature(FEATURE_VBAT) && (batteryCellCount < 2))) {
if (mode == BEEPER_SILENCE) {
beeperSilence();
return;
}