Skip to content

Commit

Permalink
Also apply delay asymmetry to delay requests.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidv1992 authored and rnijveld committed Nov 30, 2023
1 parent 5bb3f25 commit 1cec0e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion statime/src/port/state/slave.rs
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ impl<F> SlaveState<F> {
..
} = self.delay_state
{
let raw_delay_offset = send_time - recv_time;
let raw_delay_offset = send_time - recv_time + delay_asymmetry;
result.event_time = send_time;
result.raw_delay_offset = Some(raw_delay_offset);

Expand Down

0 comments on commit 1cec0e9

Please sign in to comment.