diff options
Diffstat (limited to 'src/output/Dexter.h')
-rw-r--r-- | src/output/Dexter.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/output/Dexter.h b/src/output/Dexter.h index a3c827b..36d0ef7 100644 --- a/src/output/Dexter.h +++ b/src/output/Dexter.h @@ -83,6 +83,10 @@ class Dexter : public Output::SDRDevice virtual double get_temperature() const override; private: + + void channel_up(); + void channel_down(); + SDRDeviceConfig& m_conf; struct iio_context* m_ctx = nullptr; @@ -108,14 +112,6 @@ class Dexter : public Output::SDRDevice uint64_t m_utc_seconds_at_startup; uint64_t m_clock_count_at_startup = 0; uint64_t m_clock_count_frame = 0; - - enum class timestamp_state_t { - REQUIRES_SET, - STREAMING, - WAIT_FOR_UNDERRUN, - }; - - timestamp_state_t timestamp_state = timestamp_state_t::REQUIRES_SET; }; } // namespace Output |