Skip to content

Commit

Permalink
#27 Increased accepted clock frequency range
Browse files Browse the repository at this point in the history
  • Loading branch information
krichardsson committed May 28, 2018
1 parent c50b0f0 commit 4872bd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/uwb_tdoa_anchor3.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ The implementation must handle
#define MIN_TOF ANTENNA_DELAY

#define MAX_CLOCK_DEVIATION_SPEC 10e-6
#define CLOCK_CORRECTION_SPEC_MIN (1.0d - MAX_CLOCK_DEVIATION_SPEC)
#define CLOCK_CORRECTION_SPEC_MAX (1.0d + MAX_CLOCK_DEVIATION_SPEC)
#define CLOCK_CORRECTION_SPEC_MIN (1.0d - MAX_CLOCK_DEVIATION_SPEC * 2)
#define CLOCK_CORRECTION_SPEC_MAX (1.0d + MAX_CLOCK_DEVIATION_SPEC * 2)

#define CLOCK_CORRECTION_ACCEPTED_NOISE 0.03e-6
#define CLOCK_CORRECTION_FILTER 0.1d
Expand Down

0 comments on commit 4872bd9

Please sign in to comment.