Device: Add RAD-Comet3 support

This commit is contained in:
Bryant Jones
2024-04-11 21:40:38 +00:00
parent 46e244fbab
commit 9c830a91a2
7 changed files with 221 additions and 1 deletions
+8
View File
@@ -177,6 +177,10 @@ std::vector<std::shared_ptr<Device>> DeviceFinder::FindAll() {
makeIfSerialRangeMatches<RADComet2>(dev, newFoundDevices);
#endif
#ifdef __RADCOMET3_H_
makeIfSerialMatches<RADComet3>(dev, newFoundDevices);
#endif
#ifdef __RADEPSILON_H_
makeIfSerialMatches<RADEpsilon>(dev, newFoundDevices);
#endif
@@ -315,6 +319,10 @@ const std::vector<DeviceType>& DeviceFinder::GetSupportedDevices() {
#ifdef __RADCOMET_H_
RADComet::DEVICE_TYPE,
#endif
#ifdef __RADCOMET3_H_
RADComet3::DEVICE_TYPE,
#endif
#ifdef __RADEPSILON_H_
RADEpsilon::DEVICE_TYPE,