mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-15 15:02:52 +01:00
17 lines
386 B
C
17 lines
386 B
C
|
#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);
|
||
|
}
|