This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

a silly question, what is the HVC mean?

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

Parents
  • 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;
    
Reply
  • 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;
    
Children
No Data
Related