diff options
| author | JF <jf@codingfield.com> | 2020-06-27 14:10:17 (GMT) |
|---|---|---|
| committer | JF <jf@codingfield.com> | 2020-06-27 14:10:17 (GMT) |
| commit | f8ffb405a23e02efd3b791730a3eb349e1d7efe4 (patch) | |
| tree | 4b42e3c57dcd36229530c1f9faeadf3ca10d2781 /src/Components/Ble/DeviceInformationService.cpp | |
| parent | e86991284fe5a41b913004f08f476aeeb83a71ef (diff) | |
| parent | 3dfba0b90d8549d17a2aa4d228f31fbdcf803e70 (diff) | |
Merge branch 'nimble_1_3_0' into develop
Diffstat (limited to 'src/Components/Ble/DeviceInformationService.cpp')
| -rw-r--r-- | src/Components/Ble/DeviceInformationService.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Components/Ble/DeviceInformationService.cpp b/src/Components/Ble/DeviceInformationService.cpp index 3099b1b..c1d5554 100644 --- a/src/Components/Ble/DeviceInformationService.cpp +++ b/src/Components/Ble/DeviceInformationService.cpp @@ -15,8 +15,12 @@ int DeviceInformationCallback(uint16_t conn_handle, uint16_t attr_handle, struct } void DeviceInformationService::Init() { - ble_gatts_count_cfg(serviceDefinition); - ble_gatts_add_svcs(serviceDefinition); + int res = 0; + res = ble_gatts_count_cfg(serviceDefinition); + ASSERT(res == 0); + + res = ble_gatts_add_svcs(serviceDefinition); + ASSERT(res == 0); } |
