mirror of
https://github.com/JvanKatwijk/dab-cmdline
synced 2025-10-05 15:42:46 +02:00
74 lines
2.0 KiB
C++
74 lines
2.0 KiB
C++
#
|
|
/*
|
|
* Copyright (C) 2010, 2011, 2012, 2024
|
|
* Jan van Katwijk (J.vanKatwijk@gmail.com)
|
|
* Lazy Chair Computing
|
|
*
|
|
* This file is part of the DAB library
|
|
*
|
|
* DAB library is free software; you can redistribute it and/or modify
|
|
* 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.
|
|
*
|
|
* DAB library is distributed in the hope that it will be useful,
|
|
* 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
|
|
* along with DAB library; if not, write to the Free Software
|
|
* 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
|
|
*/
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <complex>
|
|
#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
|
|
|
|
|
|
using namespace std;
|
|
|
|
class deviceHandler {
|
|
public:
|
|
deviceHandler ();
|
|
virtual ~deviceHandler ();
|
|
virtual int32_t defaultFrequency ();
|
|
virtual bool restartReader (int32_t);
|
|
virtual void stopReader ();
|
|
virtual int32_t getSamples (std::complex<float> *, int32_t);
|
|
virtual int32_t Samples ();
|
|
virtual void resetBuffer ();
|
|
virtual int16_t bitDepth () { return 10;}
|
|
virtual void setGain (int32_t);
|
|
virtual bool has_autogain ();
|
|
virtual void set_autogain (bool);
|
|
//
|
|
// for the sdrplay
|
|
virtual void set_ifgainReduction (int);
|
|
virtual void set_lnaState (int);
|
|
//
|
|
protected:
|
|
int32_t lastFrequency;
|
|
int32_t vfoOffset;
|
|
int theGain;
|
|
virtual void run ();
|
|
};
|
|
|