Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dd639981 authored by Łukasz Rymanowski's avatar Łukasz Rymanowski
Browse files

has_client: Update characteristic values

Update according to latest Bluetooth Assigned Numbers

Bug: 150670922
Test: atest --host bluetooth_has_test
sponsor: @jpawlowski
Change-Id: I7ea9f07c3bfe04de1c0ae29455699fa3526e2d5f
parent 980a4a61
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -70,15 +70,14 @@ union HasGattOpContext {
static_assert(sizeof(HasGattOpContext) <= sizeof(void*));

/* Service UUIDs */
/* FIXME: actually these were not yet assigned - using placeholders for now. */
static const bluetooth::Uuid kUuidHearingAccessService =
    bluetooth::Uuid::From16Bit(0x1854);
static const bluetooth::Uuid kUuidHearingAidFeatures =
    bluetooth::Uuid::From16Bit(0xEEED);
    bluetooth::Uuid::From16Bit(0x2BDA);
static const bluetooth::Uuid kUuidHearingAidPresetControlPoint =
    bluetooth::Uuid::From16Bit(0xEEEC);
    bluetooth::Uuid::From16Bit(0x2BDB);
static const bluetooth::Uuid kUuidActivePresetIndex =
    bluetooth::Uuid::From16Bit(0xEEEB);
    bluetooth::Uuid::From16Bit(0x2BDC);

/* Base device class for the GATT-based service clients */
class GattServiceDevice {