GCC Code Coverage Report


Directory: ./
Coverage: low: ≥ 0% medium: ≥ 75.0% high: ≥ 90.0%
Coverage Exec / Excl / Total
Lines: 100.0% 3 / 0 / 3
Functions: 100.0% 1 / 0 / 1
Branches: -% 0 / 0 / 0
Decisions: -% 0 / - / 0

firmware/controllers/sensors/core/functional_sensor_base.cpp
Line Branch Decision Exec Source
1 //
2 // Created by kifir on 12/20/24.
3 //
4
5 #include "pch.h"
6
7 #include "functional_sensor_base.h"
8
9 59 FunctionalSensorBase::FunctionalSensorBase(const SensorType type, const efidur_t timeoutPeriod)
10 59 : StoredValueSensor(type, timeoutPeriod) {
11 59 }
12