v1.0.0-rc.40

This commit is contained in:
2025-05-28 18:49:27 +02:00
parent aaae74e70b
commit 53c90ee5d8
340 changed files with 9583 additions and 5919 deletions
+5
View File
@@ -14,6 +14,11 @@ void MovingAverage::Add(float val) {
q.push_back(val);
}
void MovingAverage::Add(std::optional<float> val) {
if (val)
Add(val.value());
}
std::optional<float> MovingAverage::Read() const {
std::unique_lock ul(m);