summaryrefslogtreecommitdiffhomepage
path: root/UI.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2025-01-03 23:43:56 +0100
committerRoland Reichwein <mail@reichwein.it>2025-01-03 23:43:56 +0100
commit0399f008b22482c46d37fa15e6be205b85681011 (patch)
tree003060dce02839a145cf2e798d1a14e352faf212 /UI.h
parent22cdfccb11679d6ae241653c9cb92c32f4fc1fde (diff)
Buffer position compensation for PCM, added active sensing detection
Diffstat (limited to 'UI.h')
-rw-r--r--UI.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/UI.h b/UI.h
index 077e3a9..3041566 100644
--- a/UI.h
+++ b/UI.h
@@ -11,7 +11,9 @@ public:
void draw();
+ // slots
void count_main_loops();
+ void slot_active_sensing();
private:
@@ -20,4 +22,6 @@ private:
uint64_t m_main_loops;
uint64_t m_main_loops_checkpoint;
std::chrono::time_point<clock_type> m_main_loops_timestamp;
+
+ std::chrono::time_point<clock_type> m_active_sensing_timestamp;
};