RAD-Moon3: Add initial support

This commit is contained in:
Bryant Jones
2023-04-20 17:14:22 +00:00
parent 83f6c611fe
commit af31aa23ad
9 changed files with 124 additions and 1 deletions
+8
View File
@@ -177,6 +177,10 @@ std::vector<std::shared_ptr<Device>> DeviceFinder::FindAll() {
makeIfSerialMatches<RADMoon2>(dev, newFoundDevices);
#endif
#ifdef __RADMOON3_H_
makeIfSerialMatches<RADMoon3>(dev, newFoundDevices);
#endif
#ifdef __RADMOONDUO_H_
makeIfSerialMatches<RADMoonDuo>(dev, newFoundDevices);
#endif
@@ -304,6 +308,10 @@ const std::vector<DeviceType>& DeviceFinder::GetSupportedDevices() {
RADMoon2::DEVICE_TYPE,
#endif
#ifdef __RADMOON3_H_
RADMoon3::DEVICE_TYPE,
#endif
#ifdef __RADMOONDUO_H_
RADMoonDuo::DEVICE_TYPE,
#endif