RAD-A2B: Initial support

This commit is contained in:
Kyle Schwarz
2022-09-15 11:13:45 -04:00
parent 2e296dc8d3
commit 9871430288
8 changed files with 192 additions and 1 deletions
+8
View File
@@ -129,6 +129,10 @@ std::vector<std::shared_ptr<Device>> DeviceFinder::FindAll() {
makeIfPIDMatches<NeoVIPLASMA>(dev, newFoundDevices);
#endif
#ifdef __RADA2B_H_
makeIfSerialMatches<RADA2B>(dev, newFoundDevices);
#endif
#ifdef __RADEPSILON_H_
makeIfSerialMatches<RADEpsilon>(dev, newFoundDevices);
#endif
@@ -244,6 +248,10 @@ const std::vector<DeviceType>& DeviceFinder::GetSupportedDevices() {
NeoVIPLASMA::DEVICE_TYPE,
#endif
#ifdef __RADA2B_H_
RADA2B::DEVICE_TYPE,
#endif
#ifdef __RADEPSILON_H_
RADEpsilon::DEVICE_TYPE,
#endif