summaryrefslogtreecommitdiff
path: root/src/Components/Ble/AlertNotificationService.cpp
diff options
context:
space:
mode:
authorJF <jf@codingfield.com>2020-06-27 16:20:08 +0200
committerGitea <gitea@fake.local>2020-06-27 16:20:08 +0200
commit49bf12390bb27ca22a3cc5f472027344befc455e (patch)
tree0a943e544cdb60565af9a5d6bfe6e372299068cb /src/Components/Ble/AlertNotificationService.cpp
parent3a49bbbae48a62d5252fee0cb6d04002d917c820 (diff)
parent4f9adb2372a71bab3c38684420cf90b1a99a6c9a (diff)
Merge branch 'develop' of JF/PineTime into master
Diffstat (limited to 'src/Components/Ble/AlertNotificationService.cpp')
-rw-r--r--src/Components/Ble/AlertNotificationService.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Components/Ble/AlertNotificationService.cpp b/src/Components/Ble/AlertNotificationService.cpp
index 8e3b712d..fd69bda3 100644
--- a/src/Components/Ble/AlertNotificationService.cpp
+++ b/src/Components/Ble/AlertNotificationService.cpp
@@ -17,8 +17,12 @@ int AlertNotificationCallback(uint16_t conn_handle, uint16_t attr_handle, struct
}
void AlertNotificationService::Init() {
- ble_gatts_count_cfg(serviceDefinition);
- ble_gatts_add_svcs(serviceDefinition);
+ int res;
+ res = ble_gatts_count_cfg(serviceDefinition);
+ ASSERT(res == 0);
+
+ res = ble_gatts_add_svcs(serviceDefinition);
+ ASSERT(res == 0);
}
AlertNotificationService::AlertNotificationService ( Pinetime::System::SystemTask& systemTask, Pinetime::Controllers::NotificationManager& notificationManager ) : m_systemTask{systemTask}, m_notificationManager{notificationManager},