zephyr/samples/bluetooth/channel_sounding/include/distance_estimation.h
Olivier Lesage fc8d9425c1 bluetooth: samples: Add samples showing basic channel sounding features
These samples demonstrate how to use the bluetooth 6.0 channel
sounding APIs. A basic distance estimation algorithm is included.

Signed-off-by: Olivier Lesage <olivier.lesage@nordicsemi.no>
2024-11-16 15:07:20 -05:00

12 lines
322 B
C

/*
* Copyright (c) 2024 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <stdint.h>
#include <zephyr/bluetooth/cs.h>
void estimate_distance(uint8_t *local_steps, uint16_t local_steps_len, uint8_t *peer_steps,
uint16_t peer_steps_len, uint8_t n_ap, enum bt_conn_le_cs_role role);