LibreVNA/Software/VNA_embedded/Application/SpectrumAnalyzer.hpp
2020-10-03 21:56:09 +02:00

22 lines
333 B
C++

#pragma once
#include "Protocol.hpp"
#include "FPGA/FPGA.hpp"
namespace SA {
enum class Detector {
PosPeak = 0x00,
NegPeak = 0x01,
Sample = 0x02,
Normal = 0x03,
Average = 0x04,
};
void Setup(Protocol::SpectrumAnalyzerSettings settings);
bool MeasurementDone(const FPGA::SamplingResult &result);
void Work();
void Stop();
}