Skip to content

Commit

Permalink
Fix BLE subcriptions on EFR32 (#7)
Browse files Browse the repository at this point in the history
* Do not allow BLE subcriptions with indications - has indications are not proccesed

* restyle
  • Loading branch information
jmartinez-silabs authored and danielsilabs committed Sep 9, 2022
1 parent 48c4093 commit 15dd66f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/platform/EFR32/gatt_db.c
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ GATT_DATA(const sli_bt_gattdb_attribute_t gattdb_attributes_map[]) = {
.caps = 0xffff,
.state = 0x00,
.datatype = 0x05,
.characteristic = { .properties = 0x3e, .char_uuid = 0x8001 } },
.characteristic = { .properties = 0x1e, .char_uuid = 0x8001 } },
{ .handle = 0x19,
.uuid = 0x8001,
.permissions = 0x807,
Expand All @@ -366,7 +366,7 @@ GATT_DATA(const sli_bt_gattdb_attribute_t gattdb_attributes_map[]) = {
.caps = 0xffff,
.state = 0x00,
.datatype = 0x03,
.configdata = { .flags = 0x03, .clientconfig_index = 0x01 } },
.configdata = { .flags = 0x01, .clientconfig_index = 0x01 } },
{ .handle = 0x1b,
.uuid = 0x0000,
.permissions = 0x801,
Expand Down

0 comments on commit 15dd66f

Please sign in to comment.