mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-04 14:07:30 +00:00
13 lines
210 B
C++
13 lines
210 B
C++
#pragma once
|
|
|
|
#include "FPGA/FPGA.hpp"
|
|
#include "Protocol.hpp"
|
|
|
|
namespace Manual {
|
|
|
|
void Setup(Protocol::ManualControl m);
|
|
bool MeasurementDone(const FPGA::SamplingResult &result);
|
|
void Work();
|
|
void Stop();
|
|
|
|
}
|