lockin-external: ignore timestamps related to capture overflows
This commit is contained in:
parent
f47ee38d31
commit
d32378e6c4
|
@ -113,7 +113,7 @@ const APP: () = {
|
||||||
.resources
|
.resources
|
||||||
.timestamper
|
.timestamper
|
||||||
.latest_timestamp()
|
.latest_timestamp()
|
||||||
.unwrap_or_else(|t| t) // Ignore timer capture overflows.
|
.unwrap_or(None) // Ignore data from timer capture overflows.
|
||||||
.map(|t| t as i32);
|
.map(|t| t as i32);
|
||||||
let (pll_phase, pll_frequency) = c.resources.pll.update(
|
let (pll_phase, pll_frequency) = c.resources.pll.update(
|
||||||
timestamp,
|
timestamp,
|
||||||
|
|
Loading…
Reference in New Issue