mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +01:00
Some checks failed
Build / PC_Application_Ubuntu (push) Has been cancelled
Build / PC_Application_RPi5 (push) Has been cancelled
Build / PC_Application_Windows (push) Has been cancelled
Build / PC_Application_OSX (push) Has been cancelled
Build / PC_Application_OSX_13 (push) Has been cancelled
Build / Embedded_Firmware (push) Has been cancelled
HIL_Tests / Get_Repository (push) Has been cancelled
Unit_Tests / Tests (push) Has been cancelled
HIL_Tests / PC_Application_RPi5 (push) Has been cancelled
HIL_Tests / Embedded_Firmware (push) Has been cancelled
HIL_Tests / HIL (push) Has been cancelled
17 lines
305 B
C++
17 lines
305 B
C++
#include "harogicb60.h"
|
|
|
|
HarogicB60::HarogicB60()
|
|
{
|
|
validUSBIDs.clear();
|
|
validUSBIDs.append({0x367F, 0x0200, "B60"});
|
|
|
|
for(auto &s : specificSettings) {
|
|
s.name.replace("LibreVNAUSBDriver", "HarogicB60Driver");
|
|
}
|
|
}
|
|
|
|
QString HarogicB60::getDriverName()
|
|
{
|
|
return "Harogic B60";
|
|
}
|