From 3d9c17712670ef3d5b44b9e07b5880702c8c1764 Mon Sep 17 00:00:00 2001 From: borisbstyle Date: Thu, 29 Oct 2015 21:44:42 +0100 Subject: [PATCH] Revert "Inhibit the %^0$ buzzer on USB power / Bugfix for no VBAT connected" This reverts commit bbf70c637076d6185deb3d8d34858520987e9ea1. --- src/main/io/beeper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/io/beeper.c b/src/main/io/beeper.c index caab53622f..85d054f272 100644 --- a/src/main/io/beeper.c +++ b/src/main/io/beeper.c @@ -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; }