summaryrefslogtreecommitdiff
path: root/src/components/ble/CurrentTimeService.cpp
diff options
context:
space:
mode:
authorJonathan Vander Mey <jvandermey@evertz.com>2021-07-24 15:40:06 (GMT)
committerJonathan Vander Mey <jvandermey@evertz.com>2021-07-24 15:40:06 (GMT)
commit487ae478adf4f4c8be0ff61f8433e7018426b661 (patch)
tree231c88a28e515d59632d27150816db599150cd66 /src/components/ble/CurrentTimeService.cpp
parent1ba99d242788b50b26b739d571d4866a6c2d0fed (diff)
Remove unnecessary C-style casts with BLE UUIDs
Instead of casting the UUID object to the ble_uuid_t* used throughout the NimBLE API just pass the address of the ble_uuid_t member that's at the start of each of the UUID structs.
Diffstat (limited to 'src/components/ble/CurrentTimeService.cpp')
-rw-r--r--src/components/ble/CurrentTimeService.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/ble/CurrentTimeService.cpp b/src/components/ble/CurrentTimeService.cpp
index b49be39..eefb7ec 100644
--- a/src/components/ble/CurrentTimeService.cpp
+++ b/src/components/ble/CurrentTimeService.cpp
@@ -53,7 +53,7 @@ int CurrentTimeService::OnTimeAccessed(uint16_t conn_handle, uint16_t attr_handl
}
CurrentTimeService::CurrentTimeService(DateTime& dateTimeController)
- : characteristicDefinition {{.uuid = (ble_uuid_t*) &ctChrUuid,
+ : characteristicDefinition {{.uuid = &ctChrUuid.u,
.access_cb = CTSCallback,
.arg = this,
@@ -62,7 +62,7 @@ CurrentTimeService::CurrentTimeService(DateTime& dateTimeController)
serviceDefinition {
{/* Device Information Service */
.type = BLE_GATT_SVC_TYPE_PRIMARY,
- .uuid = (ble_uuid_t*) &ctsUuid,
+ .uuid = &ctsUuid.u,
.characteristics = characteristicDefinition},
{0},
},