From effecf77ffffb78f7cab63021157fcff45a4861e Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Wed, 12 Apr 2023 10:56:41 +0200 Subject: [PATCH] changelog: add gatt over br/edr --- CHANGELOG.md | 1 + src/ble/gatt_client.h | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8aa92c34d..03d03bcec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Added - HCI_ACL_CHUNK_SIZE_ALIGNMENT allows to keep HCI transport writes aligned - GAP: support additional LE PHYs for scanning and outgoing connections +- GATT Client: support GATT over BR/EDR via gatt_client_classic_connect - HFP: provide SCO packet types and rx/tx packet lengths in HFP_SUBEVENT_AUDIO_CONNECTION_ESTABLISHED - example: gatt_streamer_server and le_streamer_client report DLE and PHY changes - gatt_client: queue requests with gatt_client_request_to_send_gatt_query and gatt_client_request_to_write_without_response diff --git a/src/ble/gatt_client.h b/src/ble/gatt_client.h index 3ecc902fa..ff1c133b6 100644 --- a/src/ble/gatt_client.h +++ b/src/ble/gatt_client.h @@ -268,7 +268,9 @@ void gatt_client_set_required_security_level(gap_security_level_t level); /** * @brief Connect to remote GATT Server over Classic (BR/EDR) Connection - * @note requires ENABLE_GATT_OVER_CLASSIC + * GATT_EVENT_CONNECTED with status and con_handle for other API functions + * is emitted on connection complete. + * @note requires ENABLE_GATT_OVER_CLASSIC. * @param addr * @return status */ @@ -277,7 +279,7 @@ uint8_t gatt_client_classic_connect(btstack_packet_handler_t callback, bd_addr_t /** * @brief Disconnect o Classic (BR/EDR) connection to a remote GATT Server * @note requires ENABLE_GATT_OVER_CLASSIC - * @param addr + * @param con_handle * @return status */ uint8_t gatt_client_classic_disconnect(btstack_packet_handler_t callback, hci_con_handle_t con_handle);