SDRPlusPlus/core/src/gui/tuner.h

17 lines
386 B
C
Raw Normal View History

2021-06-20 21:17:11 +02:00
#pragma once
#include <string>
namespace tuner {
void centerTuning(std::string vfoName, double freq);
void normalTuning(std::string vfoName, double freq);
enum {
TUNER_MODE_CENTER,
TUNER_MODE_NORMAL,
TUNER_MODE_LOWER_HALF,
TUNER_MODE_UPPER_HALF,
_TUNER_MODE_COUNT
};
void tune(int mode, std::string vfoName, double freq);
}