1
0
mirror of https://github.com/JvanKatwijk/dab-cmdline synced 2025-10-05 23:52:50 +02:00
Files
SDR-DAB_dab-cmdline/device-handler.h

74 lines
2.0 KiB
C
Raw Permalink Normal View History

2017-02-01 19:54:22 +01:00
#
/*
2024-09-29 15:03:11 +02:00
* Copyright (C) 2010, 2011, 2012, 2024
2017-02-01 19:54:22 +01:00
* Jan van Katwijk (J.vanKatwijk@gmail.com)
2024-09-29 15:03:11 +02:00
* Lazy Chair Computing
2017-02-01 19:54:22 +01:00
*
2017-05-19 15:20:19 +02:00
* This file is part of the DAB library
2017-02-01 19:54:22 +01:00
*
2017-05-19 15:20:19 +02:00
* DAB library is free software; you can redistribute it and/or modify
2017-02-01 19:54:22 +01:00
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
2017-05-19 15:20:19 +02:00
* DAB library is distributed in the hope that it will be useful,
2017-02-01 19:54:22 +01:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2017-05-19 15:20:19 +02:00
* along with DAB library; if not, write to the Free Software
2017-02-01 19:54:22 +01:00
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* We have to create a simple virtual class here, since we
* want the interface with different devices (including filehandling)
* to be transparent
*/
2025-06-22 19:12:39 +02:00
#pragma once
2017-02-01 19:54:22 +01:00
#include <stdint.h>
2017-05-19 15:20:19 +02:00
#include <complex>
2017-08-02 13:13:21 +02:00
#include <thread>
#define DEBUG_ENABLED
#ifdef DEBUG_ENABLED
#define DEBUG_PRINT(...) \
do { \
printf(__VA_ARGS__); \
} while (0)
#else
#define DEBUG_PRINT(...) \
do { } while (0)
#endif
2017-05-19 15:20:19 +02:00
using namespace std;
2017-02-01 19:54:22 +01:00
2017-05-19 15:20:19 +02:00
class deviceHandler {
2017-02-01 19:54:22 +01:00
public:
2024-09-29 15:03:11 +02:00
deviceHandler ();
virtual ~deviceHandler ();
virtual int32_t defaultFrequency ();
2019-01-06 15:47:31 +01:00
virtual bool restartReader (int32_t);
2024-09-29 15:03:11 +02:00
virtual void stopReader ();
2017-05-19 15:20:19 +02:00
virtual int32_t getSamples (std::complex<float> *, int32_t);
2024-09-29 15:03:11 +02:00
virtual int32_t Samples ();
virtual void resetBuffer ();
virtual int16_t bitDepth () { return 10;}
2017-02-01 19:54:22 +01:00
virtual void setGain (int32_t);
2024-09-29 15:03:11 +02:00
virtual bool has_autogain ();
2017-05-19 15:20:19 +02:00
virtual void set_autogain (bool);
2018-10-29 19:21:55 +01:00
//
// for the sdrplay
virtual void set_ifgainReduction (int);
virtual void set_lnaState (int);
2017-02-01 19:54:22 +01:00
//
protected:
int32_t lastFrequency;
int32_t vfoOffset;
int theGain;
2024-09-29 15:03:11 +02:00
virtual void run ();
2017-02-01 19:54:22 +01:00
};
2025-06-22 19:12:39 +02:00