mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-31 03:07:21 +02:00
component/bt: fix type error for ble_spp_client when SUPPORT_HEARTBEAT is enabled
This commit is contained in:
@ -493,7 +493,7 @@ void spp_heart_beat_task(void * arg)
|
||||
spp_conn_id,
|
||||
(db+SPP_IDX_SPP_HEARTBEAT_VAL)->attribute_handle,
|
||||
sizeof(heartbeat_s),
|
||||
(char *)heartbeat_s,
|
||||
(uint8_t *)heartbeat_s,
|
||||
ESP_GATT_WRITE_TYPE_RSP,
|
||||
ESP_GATT_AUTH_REQ_NONE);
|
||||
vTaskDelay(5000 / portTICK_PERIOD_MS);
|
||||
|
Reference in New Issue
Block a user