1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
//! Exponential moving average smoothing for displayed rate (FR-005, HINT-002).
//!
//! α = 0.3 is **fixed at v0.1.0** per FR-005 + Clarifications Q2; not user-
//! configurable via CLI or library in this version. Future revisions may
//! expose α via an additive `PvBuilder::ema_alpha(f64)` method without a MAJOR
//! semver bump.
/// EMA smoothing constant. **DO NOT** change this without a MAJOR semver bump
/// in rusty-pv — Strict-mode byte-equal compatibility with upstream's display
/// cadence depends on it.
pub const EMA_ALPHA: f64 = 0.3;
/// Exponential moving average over a stream of byte-rate samples.
///
/// On the first non-zero sample, the EMA is seeded directly with that sample
/// (no startup ramp). Subsequent samples are combined as
/// `new = α · sample + (1 - α) · old`.