STM32 BLE example for CHAR_PROP_INDICATE
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2021-06-14 5:18 AM
Hi,
Is there an example or note that guides to implement CHAR_PROP_INDICATE?
Labels:
- Labels:
-
BLE
-
STM32WB series
This discussion is locked. Please start a new topic to ask your question.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2021-06-15 10:10 AM
The BLE_Ota project has a characteristic with the CHAR_PROP_INDICATE property.
aci_gatt_add_char(OTAS_Context.OTAS_SvcHdle,
OTA_UUID_LENGTH,
(Char_UUID_t *)OTA_CONF_CHAR_UUID,
OTA_CONF_CHAR_SIZE,
CHAR_PROP_INDICATE,
ATTR_PERMISSION_NONE,
GATT_DONT_NOTIFY_EVENTS,
10,
0,
&(OTAS_Context.OTAS_Conf_CharHdle));
