summaryrefslogtreecommitdiff
path: root/src/Components/Ble/AlertNotificationService.cpp
diff options
context:
space:
mode:
authorJF <jf@codingfield.com>2020-06-16 18:36:24 (GMT)
committerJF <jf@codingfield.com>2020-06-16 18:36:24 (GMT)
commit9898fed80634c99c9dbe8ee8682dfdc259463654 (patch)
tree4be094c1e2c3a2b73b8c7b924fbd793ba416aa63 /src/Components/Ble/AlertNotificationService.cpp
parentfab220d0b9c6868b4fa96ce5f3e3f41b5454a0c7 (diff)
Update to nimble 1.3.0 + WIP : debug BLE connection issue with android phones.
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 8e3b712..fd69bda 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},