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