Microchip® Advanced Software Framework

 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
GATT client API

Functions

at_ble_status_t at_ble_characteristic_discover_all (at_ble_handle_t conn_handle, at_ble_handle_t start_handle, at_ble_handle_t end_handle)
 Discover all Characteristics declared in a connected device. More...
 
at_ble_status_t at_ble_characteristic_discover_by_uuid (at_ble_handle_t conn_handle, at_ble_handle_t start_handle, at_ble_handle_t end_handle, at_ble_uuid_t *uuid)
 Discover all Characteristics of a given UUID declared in a connected device. More...
 
at_ble_status_t at_ble_characteristic_read (at_ble_handle_t conn_handle, at_ble_handle_t char_handle, uint16_t offset, uint16_t length)
 Read a characteristic given its handle. More...
 
at_ble_status_t at_ble_characteristic_read_by_uuid (at_ble_handle_t conn_handle, at_ble_handle_t start_handle, at_ble_handle_t end_handle, at_ble_uuid_t *uuid)
 Read a characteristic given its UUID. More...
 
at_ble_status_t at_ble_characteristic_read_multible (at_ble_handle_t conn_handle, at_ble_handle_t *char_handle_list, uint16_t *char_val_length, uint8_t char_handle_count)
 Read a list of characteristics given their handles. More...
 
at_ble_status_t at_ble_characteristic_reliable_write_cancel (at_ble_handle_t conn_handle)
 Cancels a pending prepared write operation. More...
 
at_ble_status_t at_ble_characteristic_reliable_write_execute (at_ble_handle_t conn_handle)
 Executes a pending prepared write operation. More...
 
at_ble_status_t at_ble_characteristic_reliable_write_prepare (at_ble_handle_t conn_handle, at_ble_handle_t char_handle, uint16_t offset, uint16_t length, uint8_t *data)
 Add a new prepared write request. More...
 
at_ble_status_t at_ble_characteristic_write (at_ble_handle_t conn_handle, at_ble_handle_t char_handle, uint16_t offset, uint16_t length, uint8_t *data, bool signed_write, bool with_response)
 Write a characteristic. More...
 
at_ble_status_t at_ble_descriptor_discover_all (at_ble_handle_t conn_handle, at_ble_handle_t start_handle, at_ble_handle_t end_handle)
 Discover all Descriptors declared in a connected device. More...
 
at_ble_status_t at_ble_exchange_mtu (at_ble_handle_t conn_handle)
 This message is used by the application to initiate the MTU exchange. More...
 
at_ble_status_t at_ble_included_service_discover_all (at_ble_handle_t conn_handle, at_ble_handle_t start_handle, at_ble_handle_t end_handle)
 Discover all included services declared in a connected device. More...
 
at_ble_status_t at_ble_primary_service_discover_all (at_ble_handle_t conn_handle, at_ble_handle_t start_handle, at_ble_handle_t end_handle)
 Discover all Primary services declared in a connected device. More...
 
at_ble_status_t at_ble_primary_service_discover_by_uuid (at_ble_handle_t conn_handle, at_ble_handle_t start_handle, at_ble_handle_t end_handle, at_ble_uuid_t *uuid)
 Discover all Primary services of a given UUID declared in a connected device. More...
 

at_ble_status_t at_ble_characteristic_discover_all ( at_ble_handle_t  conn_handle,
at_ble_handle_t  start_handle,
at_ble_handle_t  end_handle 
)

Discover all Characteristics declared in a connected device.

Search will go from start_handle to end_handle, whenever a characteristic is found AT_BLE_CHARACTERISTIC_FOUND event is sent and AT_BLE_DISCOVERY_COMPLETE is sent at end of discover operation.

Parameters
[in]conn_handleHandle of the connection
[in]start_handleStart of the searched range
[in]end_handleEnd of the searched range
Returns
AT_BLE_SUCCESS Operation completed successfully
AT_BLE_INVALID_PARAM Invalid arguments
AT_BLE_FAILURE Generic error

Referenced by anp_client_discovery_complete_handler(), csc_prf_discovery_complete_handler(), fmp_locator_discovery_complete_handler(), pas_client_discovery_complete_handler(), pxp_monitor_discovery_complete_handler(), and time_info_discovery_complete_handler().

at_ble_status_t at_ble_characteristic_discover_by_uuid ( at_ble_handle_t  conn_handle,
at_ble_handle_t  start_handle,
at_ble_handle_t  end_handle,
at_ble_uuid_t uuid 
)

Discover all Characteristics of a given UUID declared in a connected device.

Search will go from start_handle to end_handle, whenever a characteristic of matching UUID is found AT_BLE_CHARACTERISTIC_FOUND event is sent and AT_BLE_DISCOVERY_COMPLETE is sent at end of discover operation.

Parameters
[in]conn_handleHandle of the connection
[in]start_handleStart of the searched range
[in]end_handleEnd of the searched range
[in]uuidUUID of the characteristic to be found, with LSB byte First in UUID value member
Returns
AT_BLE_SUCCESS Operation completed successfully
AT_BLE_INVALID_PARAM Invalid arguments
AT_BLE_FAILURE Generic error
at_ble_status_t at_ble_characteristic_read ( at_ble_handle_t  conn_handle,
at_ble_handle_t  char_handle,
uint16_t  offset,
uint16_t  length 
)

Read a characteristic given its handle.

Read value will be reported via AT_BLE_CHARACTERISTIC_READ_RESPONSE event.

Parameters
[in]conn_handleHandle of the connection
[in]char_handleHandle of the characteristic
[in]offsetOffset at where to start reading
[in]lengthMaximum length of data to read
Returns
AT_BLE_SUCCESS Operation completed successfully
AT_BLE_INVALID_PARAM Invalid arguments
AT_BLE_FAILURE Generic error

Referenced by anp_alert_read(), lls_alert_level_read(), pas_read_alert_status_char(), pas_read_ringer_setting_char(), tis_current_time_read(), tis_dst_change_read(), tis_rtu_update_read(), and txps_power_read().

at_ble_status_t at_ble_characteristic_read_by_uuid ( at_ble_handle_t  conn_handle,
at_ble_handle_t  start_handle,
at_ble_handle_t  end_handle,
at_ble_uuid_t uuid 
)

Read a characteristic given its UUID.

Search will go from start_handle to end_handle, whenever a descriptor with given UUID is found its value will be read and reported via AT_BLE_CHARACTERISTIC_READ_RESPONSE event.

Parameters
[in]conn_handleHandle of the connection
[in]start_handleStart of the searched range
[in]end_handleEnd of the searched range
[in]uuidUUID of the read characteristic, with LSB byte First in UUID value member
Returns
AT_BLE_SUCCESS Operation completed successfully
AT_BLE_FAILURE Generic error
at_ble_status_t at_ble_characteristic_read_multible ( at_ble_handle_t  conn_handle,
at_ble_handle_t char_handle_list,
uint16_t *  char_val_length,
uint8_t  char_handle_count 
)

Read a list of characteristics given their handles.

Read values will be reported via AT_BLE_CHARACTERISTIC_READ_MULTIBLE_RESPONSE event.

Parameters
[in]conn_handleHandle of the connection
[in]char_handle_listList of characteristic handles
[in]char_val_lengthLength of characteristic handle
[in]char_handle_countNumber of characteristic handles
Returns
AT_BLE_SUCCESS Operation completed successfully
AT_BLE_FAILURE Generic error

References gattc_read_cmd_handler_multible().

at_ble_status_t at_ble_characteristic_reliable_write_cancel ( at_ble_handle_t  conn_handle)

Cancels a pending prepared write operation.

Cancels a pending prepared write operation.

Parameters
[in]conn_handleHandle of the connection
Returns
AT_BLE_SUCCESS Operation completed successfully
AT_BLE_FAILURE Generic error
at_ble_status_t at_ble_characteristic_reliable_write_execute ( at_ble_handle_t  conn_handle)

Executes a pending prepared write operation.

Executes a pending prepared write operation. Write completion will be reported via AT_BLE_CHARACTERISTIC_WRITE_RESPONSE event.

Parameters
[in]conn_handleHandle of the connection
Returns
AT_BLE_SUCCESS Operation completed successfully
AT_BLE_FAILURE Generic error
at_ble_status_t at_ble_characteristic_reliable_write_prepare ( at_ble_handle_t  conn_handle,
at_ble_handle_t  char_handle,
uint16_t  offset,
uint16_t  length,
uint8_t *  data 
)

Add a new prepared write request.

Adds a new request to a pending prepared write operation, or starts a new prepared write operation if none was started before.

Parameters
[in]conn_handleHandle of the connection
[in]char_handleHandle of the characteristic
[in]offsetOffset at where to start write
[in]lengthLength of data to write
[in]dataA buffer where write data is stored
Returns
AT_BLE_SUCCESS Operation completed successfully
AT_BLE_FAILURE Generic error
at_ble_status_t at_ble_characteristic_write ( at_ble_handle_t  conn_handle,
at_ble_handle_t  char_handle,
uint16_t  offset,
uint16_t  length,
uint8_t *  data,
bool  signed_write,
bool  with_response 
)

Write a characteristic.

If with_response is True, write completion will be reported via AT_BLE_CHARACTERISTIC_WRITE_RESPONSE event.

Parameters
[in]conn_handleHandle of the connection
[in]char_handleHandle of the characteristic
[in]offsetOffset at where to start write
[in]lengthLength of data to write
[in]dataA buffer where write data is stored
[in]signed_writeIf true, perform a signed write
[in]with_responseIf true, perform a write with response procedure, otherwise perform write with no response procedure
Returns
AT_BLE_SUCCESS Operation completed successfully
AT_BLE_FAILURE Generic error

Referenced by anp_alert_noti(), anp_client_write_notification_handler(), anp_write_to_ncp(), csc_prf_write_notification_handler(), ias_alert_level_write(), lls_alert_level_write(), pas_char_set_ringer_control_point(), pas_char_write_notification(), tis_current_time_noti(), and tis_rtu_update_write().

at_ble_status_t at_ble_descriptor_discover_all ( at_ble_handle_t  conn_handle,
at_ble_handle_t  start_handle,
at_ble_handle_t  end_handle 
)

Discover all Descriptors declared in a connected device.

Search will go from start_handle to end_handle, whenever a descriptor is found AT_BLE_DESCRIPTOR_FOUND event is sent and AT_BLE_DISCOVERY_COMPLETE is sent at end of discover operation.

Parameters
[in]conn_handleHandle of the connection
[in]start_handleStart of the searched range
[in]end_handleEnd of the searched range
Returns
AT_BLE_SUCCESS Operation completed successfully
AT_BLE_INVALID_PARAM Invalid arguments
AT_BLE_FAILURE Generic error

Referenced by anp_client_discovery_complete_handler(), csc_prf_discovery_complete_handler(), pas_client_discovery_complete_handler(), and time_info_discovery_complete_handler().

at_ble_status_t at_ble_exchange_mtu ( at_ble_handle_t  conn_handle)

This message is used by the application to initiate the MTU exchange.

Parameters
[in]conn_handleHandle of the connection
Returns
AT_BLE_SUCCESS Operation completed successfully
AT_BLE_FAILURE Generic error
at_ble_status_t at_ble_included_service_discover_all ( at_ble_handle_t  conn_handle,
at_ble_handle_t  start_handle,
at_ble_handle_t  end_handle 
)

Discover all included services declared in a connected device.

Search will go from start_handle to end_handle, whenever a service is found AT_BLE_INCLUDED_SERVICE_FOUND event is sent and AT_BLE_DISCOVERY_COMPLETE is sent at end of discover operation.

Parameters
[in]conn_handleHandle of the connection
[in]start_handleStart of the searched range
[in]end_handleEnd of the searched range
Returns
AT_BLE_SUCCESS Operation completed successfully
AT_BLE_INVALID_PARAM Invalid arguments
AT_BLE_FAILURE Generic error
at_ble_status_t at_ble_primary_service_discover_all ( at_ble_handle_t  conn_handle,
at_ble_handle_t  start_handle,
at_ble_handle_t  end_handle 
)

Discover all Primary services declared in a connected device.

Search will go from start_handle to end_handle, whenever a service is found AT_BLE_PRIMARY_SERVICE_FOUND event is sent and AT_BLE_DISCOVERY_COMPLETE is sent at end of discover operation.

Parameters
[in]conn_handleHandle of the connection
[in]start_handleStart of the searched range
[in]end_handleEnd of the searched range
Returns
AT_BLE_SUCCESS Operation completed successfully
AT_BLE_INVALID_PARAM Invalid arguments
AT_BLE_FAILURE Generic error

Referenced by alert_service_discovery(), fmp_locator_service_discover(), pxp_monitor_service_discover(), and time_info_service_discovery().

at_ble_status_t at_ble_primary_service_discover_by_uuid ( at_ble_handle_t  conn_handle,
at_ble_handle_t  start_handle,
at_ble_handle_t  end_handle,
at_ble_uuid_t uuid 
)

Discover all Primary services of a given UUID declared in a connected device.

Search will go from start_handle to end_handle, whenever a service of matching UUID is found AT_BLE_PRIMARY_SERVICE_FOUND event is sent and AT_BLE_DISCOVERY_COMPLETE is sent at end of discover operation.

Parameters
[in]conn_handleHandle of the connection
[in]start_handleStart of the searched range
[in]end_handleEnd of the searched range
[in]uuidUUID of the service to be found, with LSB byte First in UUID value member
Returns
AT_BLE_SUCCESS Operation completed successfully
AT_BLE_INVALID_PARAM Invalid arguments
AT_BLE_FAILURE Generic error

Referenced by anp_client_connected_state_handler(), csc_prf_connected_state_handler(), and pas_client_start_service_discovery().