diff options
| author | JF002 <JF002@users.noreply.github.com> | 2021-09-23 20:13:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-23 20:13:42 +0200 |
| commit | 8a2b86dc8376d915b664a301465f7a5ef675b66f (patch) | |
| tree | e9e5efad34e3ab0ed7e3651364ab09985b5c9bcb /src/components/ble | |
| parent | 1c3c3c8db919c703bbd3f1be4ce9c6833237ea6f (diff) | |
| parent | 93d240a23b1071efd0ac4ecba986f98bc1dae2a4 (diff) | |
Merge pull request #664 from Riksu9000/disable_notif_only
Toggle notifications only, keep vibrations.
Diffstat (limited to 'src/components/ble')
| -rw-r--r-- | src/components/ble/NotificationManager.cpp | 8 | ||||
| -rw-r--r-- | src/components/ble/NotificationManager.h | 5 |
2 files changed, 1 insertions, 12 deletions
diff --git a/src/components/ble/NotificationManager.cpp b/src/components/ble/NotificationManager.cpp index b1b0e6b2..7ffed300 100644 --- a/src/components/ble/NotificationManager.cpp +++ b/src/components/ble/NotificationManager.cpp @@ -79,14 +79,6 @@ bool NotificationManager::AreNewNotificationsAvailable() { return newNotification; } -bool NotificationManager::IsVibrationEnabled() { - return vibrationEnabled; -} - -void NotificationManager::ToggleVibrations() { - vibrationEnabled = !vibrationEnabled; -} - bool NotificationManager::ClearNewNotificationFlag() { return newNotification.exchange(false); } diff --git a/src/components/ble/NotificationManager.h b/src/components/ble/NotificationManager.h index d4072cc2..40f174ea 100644 --- a/src/components/ble/NotificationManager.h +++ b/src/components/ble/NotificationManager.h @@ -44,8 +44,6 @@ namespace Pinetime { Notification GetPrevious(Notification::Id id); bool ClearNewNotificationFlag(); bool AreNewNotificationsAvailable(); - bool IsVibrationEnabled(); - void ToggleVibrations(); static constexpr size_t MaximumMessageSize() { return MessageSize; @@ -60,7 +58,6 @@ namespace Pinetime { uint8_t writeIndex = 0; bool empty = true; std::atomic<bool> newNotification {false}; - bool vibrationEnabled = true; }; } -}
\ No newline at end of file +} |
