Linkloss service.
Copyright (c) 2017-2018 Microchip Technology Inc. and its subsidiaries.
#include "link_loss.h"
Functions | |
void | init_linkloss_service (gatt_service_handler_t *linkloss_serv) |
Linkloss service initialization. More... | |
at_ble_status_t | lls_alert_level_read (at_ble_handle_t conn_handle, at_ble_handle_t char_handle) |
Send the Read request to link loss handler Read value will be reported via AT_BLE_CHARACTERISTIC_READ_RESPONSE event. More... | |
at_ble_status_t | lls_alert_level_write (at_ble_handle_t conn_handle, at_ble_handle_t char_handle, link_loss_alert_level_t alert_level) |
write a characteristic to Link Loss Characteristics More... | |
int8_t | lls_alert_read_response (at_ble_characteristic_read_response_t *read_resp, gatt_lls_char_handler_t *lls_handler) |
Read Link Loss Alert Value. More... | |
at_ble_status_t | lls_primary_service_define (gatt_service_handler_t *lls_service) |
linkloss service definition More... | |
uint8_t | lls_set_alert_value (at_ble_characteristic_changed_t *change_params, gatt_service_handler_t *lls_handler) |
Setting the alert value of linkloss service. More... | |
Variables | |
uint8_t | linkloss_initial_value = 0 |
static const char * | lls_gs_str [] = {"NO_ALERT", "MILD_ALERT", "HIGH_ALERT"} |
void init_linkloss_service | ( | gatt_service_handler_t * | linkloss_serv | ) |
Linkloss service initialization.
Initialize the linkloss service with default values.
References ALERT_LEVEL_CHAR_UUID, AT_BLE_ATTR_NO_PERMISSIONS, AT_BLE_ATTR_READABLE_NO_AUTHN_NO_AUTHR, AT_BLE_ATTR_READABLE_REQ_AUTHN_NO_AUTHR, AT_BLE_ATTR_WRITABLE_NO_AUTHN_NO_AUTHR, AT_BLE_ATTR_WRITABLE_REQ_AUTHN_NO_AUTHR, AT_BLE_CHAR_READ, AT_BLE_CHAR_WRITE, AT_BLE_UUID_16, LINK_LOSS_SERVICE_UUID, linkloss_initial_value, and NULL.
Referenced by pxp_service_init().
at_ble_status_t lls_alert_level_read | ( | at_ble_handle_t | conn_handle, |
at_ble_handle_t | char_handle | ||
) |
Send the Read request to link loss handler Read value will be reported via AT_BLE_CHARACTERISTIC_READ_RESPONSE event.
[in] | conn_handle | handle of the connection |
[in] | char_handle | handle of the characteristic |
References AT_BLE_ATT_INVALID_HANDLE, at_ble_characteristic_read(), LLS_INVALID_CHAR_HANDLE, LLS_READ_LENGTH, and LLS_READ_OFFSET.
at_ble_status_t lls_alert_level_write | ( | at_ble_handle_t | conn_handle, |
at_ble_handle_t | char_handle, | ||
link_loss_alert_level_t | alert_level | ||
) |
write a characteristic to Link Loss Characteristics
if with_response is True, write completion will be reported via AT_BLE_CHARACTERISTIC_WRITE_RESPONSE event
[in] | conn_handle | handle of the connection |
[in] | char_handle | handle of the characteristic |
[in] | alert | level need to write |
References at_ble_characteristic_write(), LLS_NO_SIGNED_WRITE, LLS_WRITE_LENGTH, LLS_WRITE_OFFSET, and LLS_WRITE_WITH_RESPONSE.
Referenced by pxp_monitor_app_button_event(), and pxp_monitor_discovery_complete_handler().
int8_t lls_alert_read_response | ( | at_ble_characteristic_read_response_t * | read_resp, |
gatt_lls_char_handler_t * | lls_handler | ||
) |
Read Link Loss Alert Value.
[in] | read_value | read response data available form at_ble_characteristic_read_response_t |
References gatt_lls_char_handler::char_data, gatt_lls_char_handler::char_handle, at_ble_characteristic_read_response_t::char_handle, at_ble_characteristic_read_response_t::char_value, DBG_LOG, DBG_LOG_CONT, LLS_HIGH_ALERT, LLS_MILD_ALERT, LLS_NO_ALERT, LLS_READ_LENGTH, LLS_READ_OFFSET, and LLS_READ_RESP_INVALID.
Referenced by pxp_monitor_characteristic_read_response().
at_ble_status_t lls_primary_service_define | ( | gatt_service_handler_t * | lls_service | ) |
linkloss service definition
Defining linkloss service to the attribute data base.
References at_ble_primary_service_define(), LLS_CHARACTERISTIC_COUNT, LLS_INCLUDED_SERVICE_COUNT, and NULL.
Referenced by pxp_service_define().
uint8_t lls_set_alert_value | ( | at_ble_characteristic_changed_t * | change_params, |
gatt_service_handler_t * | lls_handler | ||
) |
Setting the alert value of linkloss service.
sets the alert value of the Linkloss service
References at_ble_characteristic_changed_t::char_handle, at_ble_characteristic_changed_t::char_new_value, DBG_LOG, INVALID_LLS_PARAM, lls_gs_str, and LLS_HIGH_ALERT.
Referenced by pxp_reporter_char_changed_handler().
uint8_t linkloss_initial_value = 0 |
Referenced by init_linkloss_service().
|
static |
Referenced by lls_set_alert_value().