Tool/software:
Hi,
We are using the CC2745R10 EVB with SimpleLink Low Power F3 SDK v9.11.00.18.
During testing with the car node and key node firmware, we found that the channel sounding procedure stops reporting distance data after approximately 3000–5000 procedures. Before that, everything works normally.
We are using the dual-antenna board and have configured the antenna settings according to the instructions provided in the TI User Guide:
TI Channel Sounding Introduction Guide
The only change we made in the Python script is in ble_device_car_node_with_distance.py
, increasing the loop count:
# Set procedure params and enable the procedure multiple times
for i in range(10000): # modified from 100 to 10000
car_node.cs.set_procedure_params(cs_set_procedure_params)
time.sleep(0.1)
cs_proc_enable(
car_node,
cs_set_procedure_params["max_procedure_count"],
wait_for_remote=True,
wait_for_distance=True,
extended_results=False,
wait_for_raw_events=False,
)
Have you observed a similar issue before?
Is there any known workaround or fix for this problem?
Thanks!
Michael