Skip to content

Commit 56ff177

Browse files
olivier-le-sagerlubos
authored andcommitted
samples: clarify printout for distance estimates
There was some confusion about what these printouts are. It's the latest measurements, so event if no new measurements have been made, the sample will continue printing out the old estimates. Signed-off-by: Olivier Lesage <[email protected]>
1 parent 92ea1a8 commit 56ff177

File tree

1 file changed

+2
-2
lines changed
  • samples/bluetooth/channel_sounding_ras_initiator/src

1 file changed

+2
-2
lines changed

samples/bluetooth/channel_sounding_ras_initiator/src/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -710,8 +710,8 @@ int main(void)
710710
for (uint8_t ap = 0; ap < MAX_AP; ap++) {
711711
cs_de_dist_estimates_t distance_on_ap = get_distance(ap);
712712

713-
LOG_INF("Distance estimates on antenna path %u: ifft: %f, "
714-
"phase_slope: %f, rtt: %f",
713+
LOG_INF("Latest distance estimates on antenna path %u: ifft: %f, "
714+
"phase_slope: %f, rtt: %f meters",
715715
ap, (double)distance_on_ap.ifft,
716716
(double)distance_on_ap.phase_slope,
717717
(double)distance_on_ap.rtt);

0 commit comments

Comments
 (0)