mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-03-28 08:37:22 +00:00
ble: add tx power service client
This commit is contained in:
parent
daa5f023ef
commit
a9cf7f9930
@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||
- HCI Dump: support ISO packets in PacketLogger format
|
||||
- Immediate Alert Service Server and Client: added
|
||||
- Link Loss Service Server and Client: added
|
||||
- TX Power Service Client: added
|
||||
- btstack_util: safe wrappers for snprintf
|
||||
|
||||
### Fixed
|
||||
|
343
src/ble/gatt-service/tx_power_service_client.c
Normal file
343
src/ble/gatt-service/tx_power_service_client.c
Normal file
@ -0,0 +1,343 @@
|
||||
/*
|
||||
* Copyright (C) 2024 BlueKitchen GmbH
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. Neither the name of the copyright holders nor the names of
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
* 4. Any redistribution, use, or modification is done solely for
|
||||
* personal benefit and not for any commercial purpose or for
|
||||
* monetary gain.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
|
||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BLUEKITCHEN
|
||||
* GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
||||
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* Please inquire about commercial licensing options at
|
||||
* contact@bluekitchen-gmbh.com
|
||||
*
|
||||
*/
|
||||
|
||||
#define BTSTACK_FILE__ "tx_power_service_client.c"
|
||||
|
||||
#include "btstack_config.h"
|
||||
|
||||
#ifdef ENABLE_TESTING_SUPPORT
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "ble/gatt_service_client.h"
|
||||
#include "ble/gatt-service/tx_power_service_client.h"
|
||||
|
||||
#include "bluetooth_gatt.h"
|
||||
#include "btstack_debug.h"
|
||||
#include "btstack_event.h"
|
||||
|
||||
// IAS Client
|
||||
static gatt_service_client_t txps_client;
|
||||
static btstack_linked_list_t txps_connections;
|
||||
|
||||
static btstack_context_callback_registration_t txps_client_handle_can_send_now;
|
||||
|
||||
static void txps_client_packet_handler_internal(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size);
|
||||
static void txps_client_handle_gatt_client_event(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size);
|
||||
static void txps_client_run_for_connection(void * context);
|
||||
|
||||
// list of uuids
|
||||
static const uint16_t txps_uuid16s[TX_POWER_SERVICE_CLIENT_NUM_CHARACTERISTICS] = {
|
||||
ORG_BLUETOOTH_CHARACTERISTIC_TX_POWER_LEVEL
|
||||
};
|
||||
|
||||
typedef enum {
|
||||
TXPS_CLIENT_CHARACTERISTIC_INDEX_TX_POWER_LEVEL = 0,
|
||||
TXPS_CLIENT_CHARACTERISTIC_INDEX_RFU
|
||||
} txps_client_characteristic_index_t;
|
||||
|
||||
#ifdef ENABLE_TESTING_SUPPORT
|
||||
static const char * txps_characteristic_names[] = {
|
||||
"TX_POWER_LEVEL",
|
||||
"RFU"
|
||||
};
|
||||
#endif
|
||||
|
||||
|
||||
static txps_client_connection_t * txps_client_get_connection_for_cid(uint16_t connection_cid){
|
||||
btstack_linked_list_iterator_t it;
|
||||
btstack_linked_list_iterator_init(&it, &txps_connections);
|
||||
while (btstack_linked_list_iterator_has_next(&it)){
|
||||
txps_client_connection_t * connection = (txps_client_connection_t *)btstack_linked_list_iterator_next(&it);
|
||||
if (gatt_service_client_get_connection_id(&connection->basic_connection) == connection_cid) {
|
||||
return connection;
|
||||
}
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static void txps_client_add_connection(txps_client_connection_t * connection){
|
||||
btstack_linked_list_add(&txps_connections, (btstack_linked_item_t*) connection);
|
||||
}
|
||||
|
||||
static void txps_client_finalize_connection(txps_client_connection_t * connection){
|
||||
btstack_linked_list_remove(&txps_connections, (btstack_linked_item_t*) connection);
|
||||
}
|
||||
|
||||
|
||||
static void txps_client_replace_subevent_id_and_emit(btstack_packet_handler_t callback, uint8_t * packet, uint16_t size, uint8_t subevent_id){
|
||||
UNUSED(size);
|
||||
btstack_assert(callback != NULL);
|
||||
// execute callback
|
||||
packet[2] = subevent_id;
|
||||
(*callback)(HCI_EVENT_PACKET, 0, packet, size);
|
||||
}
|
||||
|
||||
static void txps_client_connected(txps_client_connection_t * connection, uint8_t status, uint8_t * packet, uint16_t size) {
|
||||
if (status == ERROR_CODE_SUCCESS){
|
||||
connection->state = TX_POWER_SERVICE_CLIENT_STATE_READY;
|
||||
} else {
|
||||
connection->state = TX_POWER_SERVICE_CLIENT_STATE_IDLE;
|
||||
}
|
||||
txps_client_replace_subevent_id_and_emit(connection->packet_handler, packet, size,
|
||||
GATTSERVICE_SUBEVENT_TXPS_CLIENT_CONNECTED);
|
||||
}
|
||||
|
||||
static void txps_client_emit_uint8(uint16_t cid, btstack_packet_handler_t event_callback, uint8_t subevent, const uint8_t * data, uint16_t data_size){
|
||||
UNUSED(data_size);
|
||||
btstack_assert(event_callback != NULL);
|
||||
|
||||
if (data_size != 1){
|
||||
return;
|
||||
}
|
||||
|
||||
uint8_t event[6];
|
||||
uint16_t pos = 0;
|
||||
event[pos++] = HCI_EVENT_GATTSERVICE_META;
|
||||
event[pos++] = 4;
|
||||
event[pos++] = subevent;
|
||||
little_endian_store_16(event, pos, cid);
|
||||
pos+= 2;
|
||||
event[pos++] = data[0];
|
||||
|
||||
(*event_callback)(HCI_EVENT_PACKET, 0, event, pos);
|
||||
}
|
||||
|
||||
static uint16_t txps_client_value_handle_for_index(txps_client_connection_t * connection){
|
||||
return connection->basic_connection.characteristics[connection->characteristic_index].value_handle;
|
||||
}
|
||||
|
||||
|
||||
static void txps_client_emit_read_event(txps_client_connection_t * connection, uint8_t index, uint8_t status, const uint8_t * data, uint16_t data_size){
|
||||
UNUSED(status);
|
||||
|
||||
if ((data_size > 0) && (data == NULL)){
|
||||
return;
|
||||
}
|
||||
|
||||
uint16_t characteristic_uuid16 = gatt_service_client_characteristic_uuid16_for_index(&txps_client, index);
|
||||
switch (characteristic_uuid16){
|
||||
case ORG_BLUETOOTH_CHARACTERISTIC_TX_POWER_LEVEL:
|
||||
txps_client_emit_uint8(connection->basic_connection.cid, connection->packet_handler, GATTSERVICE_SUBEVENT_TXPS_CLIENT_TX_POWER_LEVEL, data, data_size);
|
||||
break;
|
||||
default:
|
||||
btstack_assert(false);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static uint8_t txps_client_can_query_characteristic(txps_client_connection_t * connection, txps_client_characteristic_index_t characteristic_index){
|
||||
uint8_t status = gatt_service_client_can_query_characteristic(&connection->basic_connection,
|
||||
(uint8_t) characteristic_index);
|
||||
if (status != ERROR_CODE_SUCCESS){
|
||||
return status;
|
||||
}
|
||||
return connection->state == TX_POWER_SERVICE_CLIENT_STATE_READY ? ERROR_CODE_SUCCESS : ERROR_CODE_CONTROLLER_BUSY;
|
||||
}
|
||||
|
||||
static uint8_t txps_client_request_send_gatt_query(txps_client_connection_t * connection, txps_client_characteristic_index_t characteristic_index){
|
||||
connection->characteristic_index = characteristic_index;
|
||||
|
||||
txps_client_handle_can_send_now.context = (void *)(uintptr_t)connection->basic_connection.cid;
|
||||
uint8_t status = gatt_client_request_to_send_gatt_query(&txps_client_handle_can_send_now, connection->basic_connection.con_handle);
|
||||
if (status != ERROR_CODE_SUCCESS){
|
||||
connection->state = TX_POWER_SERVICE_CLIENT_STATE_READY;
|
||||
}
|
||||
return status;
|
||||
}
|
||||
|
||||
static uint8_t txps_client_request_read_characteristic(uint16_t cid, txps_client_characteristic_index_t characteristic_index){
|
||||
txps_client_connection_t * connection = txps_client_get_connection_for_cid(cid);
|
||||
if (connection == NULL){
|
||||
return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
|
||||
}
|
||||
uint8_t status = txps_client_can_query_characteristic(connection, characteristic_index);
|
||||
if (status != ERROR_CODE_SUCCESS){
|
||||
return status;
|
||||
}
|
||||
|
||||
connection->state = TX_POWER_SERVICE_CLIENT_STATE_W2_READ_CHARACTERISTIC_VALUE;
|
||||
return txps_client_request_send_gatt_query(connection, characteristic_index);
|
||||
}
|
||||
|
||||
static void txps_client_packet_handler_internal(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
|
||||
UNUSED(channel);
|
||||
UNUSED(size);
|
||||
|
||||
if (packet_type != HCI_EVENT_PACKET) return;
|
||||
txps_client_connection_t * connection;
|
||||
uint16_t cid;
|
||||
uint8_t status;
|
||||
|
||||
switch(hci_event_packet_get_type(packet)){
|
||||
case HCI_EVENT_GATTSERVICE_META:
|
||||
switch (hci_event_gattservice_meta_get_subevent_code(packet)) {
|
||||
case GATTSERVICE_SUBEVENT_CLIENT_CONNECTED:
|
||||
cid = gattservice_subevent_client_connected_get_cid(packet);
|
||||
connection = txps_client_get_connection_for_cid(cid);
|
||||
btstack_assert(connection != NULL);
|
||||
|
||||
#ifdef ENABLE_TESTING_SUPPORT
|
||||
gatt_service_client_dump_characteristic_value_handles(&connection->basic_connection,
|
||||
txps_characteristic_names);
|
||||
#endif
|
||||
status = gattservice_subevent_client_connected_get_status(packet);
|
||||
txps_client_connected(connection, status, packet, size);
|
||||
break;
|
||||
|
||||
case GATTSERVICE_SUBEVENT_CLIENT_DISCONNECTED:
|
||||
// TODO reset client
|
||||
cid = gattservice_subevent_client_disconnected_get_cid(packet);
|
||||
connection = txps_client_get_connection_for_cid(cid);
|
||||
btstack_assert(connection != NULL);
|
||||
txps_client_finalize_connection(connection);
|
||||
txps_client_replace_subevent_id_and_emit(connection->packet_handler, packet, size,
|
||||
GATTSERVICE_SUBEVENT_TXPS_CLIENT_DISCONNECTED);
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void txps_client_handle_gatt_client_event(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
|
||||
UNUSED(packet_type);
|
||||
UNUSED(channel);
|
||||
UNUSED(size);
|
||||
|
||||
txps_client_connection_t * connection = NULL;
|
||||
uint16_t connection_id;
|
||||
|
||||
switch(hci_event_packet_get_type(packet)){
|
||||
case GATT_EVENT_CHARACTERISTIC_VALUE_QUERY_RESULT:
|
||||
connection_id = gatt_event_characteristic_value_query_result_get_connection_id(packet);
|
||||
connection = txps_client_get_connection_for_cid(connection_id);
|
||||
btstack_assert(connection != NULL);
|
||||
|
||||
txps_client_emit_read_event(connection, connection->characteristic_index, ATT_ERROR_SUCCESS,
|
||||
gatt_event_characteristic_value_query_result_get_value(packet),
|
||||
gatt_event_characteristic_value_query_result_get_value_length(packet));
|
||||
|
||||
connection->state = TX_POWER_SERVICE_CLIENT_STATE_READY;
|
||||
break;
|
||||
|
||||
case GATT_EVENT_QUERY_COMPLETE:
|
||||
connection_id = gatt_event_query_complete_get_connection_id(packet);
|
||||
connection = txps_client_get_connection_for_cid(connection_id);
|
||||
btstack_assert(connection != NULL);
|
||||
|
||||
connection->state = TX_POWER_SERVICE_CLIENT_STATE_READY;
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void txps_client_run_for_connection(void * context){
|
||||
uint16_t connection_id = (hci_con_handle_t)(uintptr_t)context;
|
||||
txps_client_connection_t * connection = txps_client_get_connection_for_cid(connection_id);
|
||||
|
||||
btstack_assert(connection != NULL);
|
||||
|
||||
switch (connection->state){
|
||||
case TX_POWER_SERVICE_CLIENT_STATE_W2_READ_CHARACTERISTIC_VALUE:
|
||||
connection->state = TX_POWER_SERVICE_CLIENT_STATE_W4_READ_CHARACTERISTIC_VALUE_RESULT;
|
||||
|
||||
(void) gatt_client_read_value_of_characteristic_using_value_handle_with_context(
|
||||
&txps_client_handle_gatt_client_event, connection->basic_connection.cid,
|
||||
txps_client_value_handle_for_index(connection), txps_client.service_id, connection->basic_connection.cid);
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
void tx_power_service_client_init(void){
|
||||
gatt_service_client_register_client(&txps_client, &txps_client_packet_handler_internal, txps_uuid16s, sizeof(txps_uuid16s)/sizeof(uint16_t));
|
||||
|
||||
txps_client_handle_can_send_now.callback = &txps_client_run_for_connection;
|
||||
}
|
||||
|
||||
uint8_t tx_power_service_client_connect(hci_con_handle_t con_handle,
|
||||
btstack_packet_handler_t packet_handler,
|
||||
txps_client_connection_t * txps_connection,
|
||||
gatt_service_client_characteristic_t * txps_storage_for_characteristics, uint8_t txps_characteristics_num,
|
||||
uint16_t * txps_cid
|
||||
){
|
||||
|
||||
btstack_assert(packet_handler != NULL);
|
||||
btstack_assert(txps_connection != NULL);
|
||||
btstack_assert(txps_characteristics_num == TX_POWER_SERVICE_CLIENT_NUM_CHARACTERISTICS);
|
||||
|
||||
*txps_cid = 0;
|
||||
|
||||
txps_connection->state = TX_POWER_SERVICE_CLIENT_STATE_W4_CONNECTION;
|
||||
txps_connection->packet_handler = packet_handler;
|
||||
|
||||
uint8_t status = gatt_service_client_connect_primary_service_with_uuid16(con_handle,
|
||||
&txps_client,
|
||||
&txps_connection->basic_connection,
|
||||
ORG_BLUETOOTH_SERVICE_TX_POWER, 0,
|
||||
txps_storage_for_characteristics,
|
||||
txps_characteristics_num);
|
||||
if (status == ERROR_CODE_SUCCESS){
|
||||
txps_client_add_connection(txps_connection);
|
||||
*txps_cid = txps_connection->basic_connection.cid;
|
||||
}
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
uint8_t tx_power_service_client_read_tx_power_level(uint16_t txps_cid){
|
||||
return txps_client_request_read_characteristic(txps_cid, TXPS_CLIENT_CHARACTERISTIC_INDEX_TX_POWER_LEVEL);
|
||||
}
|
||||
|
||||
void tx_power_service_client_deinit(void){
|
||||
gatt_service_client_unregister_client(&txps_client);
|
||||
}
|
||||
|
137
src/ble/gatt-service/tx_power_service_client.h
Normal file
137
src/ble/gatt-service/tx_power_service_client.h
Normal file
@ -0,0 +1,137 @@
|
||||
/*
|
||||
* Copyright (C) 2024 BlueKitchen GmbH
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. Neither the name of the copyright holders nor the names of
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
* 4. Any redistribution, use, or modification is done solely for
|
||||
* personal benefit and not for any commercial purpose or for
|
||||
* monetary gain.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
|
||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BLUEKITCHEN
|
||||
* GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
||||
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* Please inquire about commercial licensing options at
|
||||
* contact@bluekitchen-gmbh.com
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* @title Immediate Alert Service Client
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef TX_POWER_SERVICE_CLIENT_H
|
||||
#define TX_POWER_SERVICE_CLIENT_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "btstack_defines.h"
|
||||
#include "bluetooth.h"
|
||||
#include "btstack_linked_list.h"
|
||||
#include "ble/gatt_client.h"
|
||||
#include "ble/gatt_service_client.h"
|
||||
|
||||
#if defined __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
// number of characteristics in Immediate Alert Service
|
||||
#define TX_POWER_SERVICE_CLIENT_NUM_CHARACTERISTICS 1
|
||||
|
||||
/**
|
||||
* @text The Immediate Alert Service Client
|
||||
*/
|
||||
typedef enum {
|
||||
TX_POWER_SERVICE_CLIENT_STATE_IDLE = 0,
|
||||
TX_POWER_SERVICE_CLIENT_STATE_W4_CONNECTION,
|
||||
TX_POWER_SERVICE_CLIENT_STATE_READY,
|
||||
TX_POWER_SERVICE_CLIENT_STATE_W2_READ_CHARACTERISTIC_VALUE,
|
||||
TX_POWER_SERVICE_CLIENT_STATE_W4_READ_CHARACTERISTIC_VALUE_RESULT
|
||||
} tx_power_service_client_state_t;
|
||||
|
||||
typedef struct {
|
||||
btstack_linked_item_t item;
|
||||
|
||||
gatt_service_client_connection_t basic_connection;
|
||||
btstack_packet_handler_t packet_handler;
|
||||
|
||||
tx_power_service_client_state_t state;
|
||||
|
||||
// Used for read characteristic queries
|
||||
uint8_t characteristic_index;
|
||||
// Used to store parameters for write characteristic
|
||||
char write_buffer[11];
|
||||
} txps_client_connection_t;
|
||||
|
||||
/* API_START */
|
||||
|
||||
|
||||
/**
|
||||
* @brief Initialize Immediate Alert Service.
|
||||
*/
|
||||
void tx_power_service_client_init(void);
|
||||
|
||||
/**
|
||||
* @brief Connect to a Immediate Alert Service instance of remote device. The client will automatically register for notifications.
|
||||
* The mute state is received via GATTSERVICE_SUBEVENT_LLS_CLIENT_MUTE event.
|
||||
* The mute state can be 0 - off, 1 - on, 2 - disabeled and it is valid if the ATT status is equal to ATT_ERROR_SUCCESS,
|
||||
* see ATT errors (see bluetooth.h) for other values.
|
||||
*
|
||||
* Event GATTSERVICE_SUBEVENT_LLS_CLIENT_CONNECTED is emitted with status ERROR_CODE_SUCCESS on success, otherwise
|
||||
* GATT_CLIENT_IN_WRONG_STATE, ERROR_CODE_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE if no audio input control service is found, or ATT errors (see bluetooth.h).
|
||||
*
|
||||
* @param con_handle
|
||||
* @param packet_handler
|
||||
* @param iac_connection
|
||||
* @param iac_characteristics_storage storage for characteristics
|
||||
* @param iac_characteristics_num == TX_POWER_SERVICE_CLIENT_NUM_CHARACTERISTICS
|
||||
* @return status ERROR_CODE_SUCCESS on success, otherwise ERROR_CODE_COMMAND_DISALLOWED if there is already a client associated with con_handle, or BTSTACK_MEMORY_ALLOC_FAILED
|
||||
*/
|
||||
uint8_t tx_power_service_client_connect(
|
||||
hci_con_handle_t con_handle,
|
||||
btstack_packet_handler_t packet_handler,
|
||||
txps_client_connection_t * iac_connection,
|
||||
gatt_service_client_characteristic_t * iac_characteristics_storage, uint8_t iac_characteristics_num,
|
||||
uint16_t * txps_cid
|
||||
);
|
||||
|
||||
uint8_t tx_power_service_client_read_tx_power_level(uint16_t txps_cid);
|
||||
|
||||
/**
|
||||
* @brief Disconnect.
|
||||
* @param txps_cid
|
||||
* @return status
|
||||
*/
|
||||
uint8_t tx_power_service_client_disconnect(uint16_t txps_cid);
|
||||
|
||||
/**
|
||||
* @brief De-i nitialize Immediate Alert Service.
|
||||
*/
|
||||
void tx_power_service_client_deinit(void);
|
||||
|
||||
/* API_END */
|
||||
|
||||
#if defined __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
@ -102,6 +102,7 @@
|
||||
#include "ble/gatt-service/link_loss_service_util.h"
|
||||
#include "ble/gatt-service/scan_parameters_service_client.h"
|
||||
#include "ble/gatt-service/scan_parameters_service_server.h"
|
||||
#include "ble/gatt-service/tx_power_service_client.h"
|
||||
#include "ble/gatt-service/tx_power_service_server.h"
|
||||
#include "ble/gatt_client.h"
|
||||
#include "ble/le_device_db.h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user