mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-01-05 08:10:06 +01:00
12 lines
160 B
C++
12 lines
160 B
C++
#include "Hardware.hpp"
|
|
|
|
#include "Protocol.hpp"
|
|
|
|
bool HW::Init() {
|
|
return true;
|
|
}
|
|
|
|
void HW::fillDeviceInfo(Protocol::DeviceInfo *info) {
|
|
*info = HW::Info;
|
|
}
|