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-25 01:06:57 +08:00
bool Setup(Protocol::SweepSettings s);
2020-10-04 03:56:09 +08:00
bool MeasurementDone(const FPGA::SamplingResult &result);
void Work();
void SweepHalted();
void Stop();
2022-06-27 00:47:34 +08:00
void PrintStatus();
}