diff options
| author | JF <JF002@users.noreply.github.com> | 2021-10-09 17:53:41 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-09 17:53:41 (GMT) |
| commit | f99f71cc6ef34ba76ed63decd0ba47f26c544dcc (patch) | |
| tree | ecc7452f90b1b67ca270eba353acf0d70a4465af /src/components/ble/BatteryInformationService.cpp | |
| parent | 4118f97812c6335b907a2b5602dcb12ed40aa0da (diff) | |
| parent | 487ae478adf4f4c8be0ff61f8433e7018426b661 (diff) | |
Merge pull request #524 from jonvmey/ble-uuid-c-casts
Remove unnecessary C-style casts with BLE UUIDs
Diffstat (limited to 'src/components/ble/BatteryInformationService.cpp')
| -rw-r--r-- | src/components/ble/BatteryInformationService.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/ble/BatteryInformationService.cpp b/src/components/ble/BatteryInformationService.cpp index 4ef0235..2917866 100644 --- a/src/components/ble/BatteryInformationService.cpp +++ b/src/components/ble/BatteryInformationService.cpp @@ -14,7 +14,7 @@ int BatteryInformationServiceCallback(uint16_t conn_handle, uint16_t attr_handle BatteryInformationService::BatteryInformationService(Controllers::Battery& batteryController) : batteryController {batteryController}, - characteristicDefinition {{.uuid = (ble_uuid_t*) &batteryLevelUuid, + characteristicDefinition {{.uuid = &batteryLevelUuid.u, .access_cb = BatteryInformationServiceCallback, .arg = this, .flags = BLE_GATT_CHR_F_READ | BLE_GATT_CHR_F_NOTIFY, @@ -23,7 +23,7 @@ BatteryInformationService::BatteryInformationService(Controllers::Battery& batte serviceDefinition { {/* Device Information Service */ .type = BLE_GATT_SVC_TYPE_PRIMARY, - .uuid = (ble_uuid_t*) &batteryInformationServiceUuid, + .uuid = &batteryInformationServiceUuid.u, .characteristics = characteristicDefinition}, {0}, } { |
