diff --git a/include/dsp/digital.hpp b/include/dsp/digital.hpp index 0d33bc22..1e65e6ec 100644 --- a/include/dsp/digital.hpp +++ b/include/dsp/digital.hpp @@ -125,6 +125,10 @@ struct TTimer { time += deltaTime; return time; } + + T getTime() { + return time; + } }; typedef TTimer<> Timer;