mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +01:00
14 lines
210 B
C++
14 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();
|
|
|
|
}
|