LibreVNA/Software/VNA_embedded/Application/VNA.hpp

19 lines
268 B
C++
Raw Normal View History

#pragma once
#include <cstdint>
#include "Protocol.hpp"
#include "FPGA/FPGA.hpp"
namespace VNA {
2020-11-24 18:06:57 +01:00
bool Setup(Protocol::SweepSettings s);
2020-10-03 21:56:09 +02:00
bool MeasurementDone(const FPGA::SamplingResult &result);
void Work();
void SweepHalted();
void Stop();
2022-06-26 18:47:34 +02:00
void PrintStatus();
}