HI ALL,
there is a sentence here 'Handles HVC events from the BLE stack.'
i am a newer here, please forgive of my silly question.
what is the HVC mean ?
thank you very much.
Bernerd
HI ALL,
there is a sentence here 'Handles HVC events from the BLE stack.'
i am a newer here, please forgive of my silly question.
what is the HVC mean ?
thank you very much.
Bernerd
I really don't think you can claim to be a newbie here any more.
Handle Value Confirmation
As RK said.
Often you can find out these kinds of things by searching in your project files for the key word (ctrl+shift+f on my system). When I searched for HVC it quickly led me to the file ble_gatts.h, where there is an enumeration including BLE_GATTS_EVT_HVC. There you will find the following explanation:
/**< Handle Value Confirmation. \n See @ref ble_gatts_evt_hvc_t. */
Then search for ble_gatts_evt_hvc_t and you will find:
/**@brief Event structure for @ref BLE_GATTS_EVT_HVC. */
typedef struct
{
uint16_t handle; /**< Attribute Handle. */
} ble_gatts_evt_hvc_t;
ok, i will never claim it any more. Thank you for the suggestion.