proof-of-concept spectrum analyzer mode

This commit is contained in:
Jan Käberich 2020-09-17 15:51:20 +02:00
parent 76875c2316
commit 38e73365df
33 changed files with 942 additions and 82 deletions

View file

@ -0,0 +1,21 @@
#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(FPGA::SamplingResult result);
void Work();
void Stop();
}