Add RADGigalog for Windows

Ethernet communication with device only
This commit is contained in:
Paul Hollinsky
2020-09-08 17:55:52 -04:00
parent eaa1409af0
commit a460e27657
5 changed files with 443 additions and 0 deletions
+8
View File
@@ -42,6 +42,10 @@ static std::vector<DeviceType> supportedDevices = {
RADGalaxy::DEVICE_TYPE,
#endif
#ifdef __RADGIGALOG_ETH_H_
RADGigalogETH::DEVICE_TYPE,
#endif
#ifdef __RADPLUTOUSB_H_
RADPlutoUSB::DEVICE_TYPE,
#endif
@@ -128,6 +132,10 @@ std::vector<std::shared_ptr<Device>> DeviceFinder::FindAll() {
findResults.push_back(RADGalaxy::Find(pcapDevices));
#endif
#ifdef __RADGIGALOG_ETH_H_
findResults.push_back(RADGigalogETH::Find(pcapDevices));
#endif
#ifdef __RADPLUTOUSB_H_
findResults.push_back(RADPlutoUSB::Find());
#endif