aboutsummaryrefslogtreecommitdiffstats
path: root/src/output/Dexter.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2024-10-26 16:30:19 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2024-10-26 16:30:19 +0200
commite836f903ae5e6b6916627142d47227a142879c04 (patch)
treed60c3d26ab2b95181820cf7fc591e69db215bc90 /src/output/Dexter.h
parent1d83a2b247f8e83bbce802a272ffa165bbc6333f (diff)
downloaddabmod-e836f903ae5e6b6916627142d47227a142879c04.tar.gz
dabmod-e836f903ae5e6b6916627142d47227a142879c04.tar.bz2
dabmod-e836f903ae5e6b6916627142d47227a142879c04.zip
Use FFT Accelerator on DEXTER
Diffstat (limited to 'src/output/Dexter.h')
-rw-r--r--src/output/Dexter.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/output/Dexter.h b/src/output/Dexter.h
index d4f425f..f8a17ba 100644
--- a/src/output/Dexter.h
+++ b/src/output/Dexter.h
@@ -98,16 +98,16 @@ class Dexter : public Output::SDRDevice
SDRDeviceConfig& m_conf;
- struct iio_context* m_ctx = nullptr;
- struct iio_device* m_dexter_dsp_tx = nullptr;
+ struct iio_context *m_ctx = nullptr;
+ struct iio_device *m_dexter_dsp_tx = nullptr;
- struct iio_device* m_ad9957 = nullptr;
- struct iio_device* m_ad9957_tx0 = nullptr;
- struct iio_channel* m_tx_channel = nullptr;
+ struct iio_device *m_ad9957 = nullptr;
+ struct iio_device *m_ad9957_tx0 = nullptr;
+ struct iio_channel *m_tx_channel = nullptr;
struct iio_buffer *m_buffer = nullptr;
/* Underflows are counted in a separate thread */
- struct iio_context* m_underflow_ctx = nullptr;
+ struct iio_context *m_underflow_ctx = nullptr;
std::atomic<bool> m_running = ATOMIC_VAR_INIT(false);
std::thread m_underflow_read_thread;
void underflow_read_process();