mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-23 11:43:24 +00:00
gatt_client: fix unused warning
This commit is contained in:
parent
88876ad73a
commit
e2c9844029
@ -702,7 +702,9 @@ gatt_client_service_emit_service_changed(gatt_client_t *gatt_client, const uint8
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void gatt_client_service_packet_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
|
static void gatt_client_service_packet_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
|
||||||
UNUSED(size);
|
UNUSED(channel); // ok: handling own l2cap events
|
||||||
|
UNUSED(size); // ok: there is no channel
|
||||||
|
|
||||||
hci_con_handle_t con_handle;
|
hci_con_handle_t con_handle;
|
||||||
gatt_client_t *gatt_client;
|
gatt_client_t *gatt_client;
|
||||||
gatt_client_service_t service;
|
gatt_client_service_t service;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user