DeviceFinder: Add serial match for FIRE3

add-device-sharing
Jonathan Schwartz 2022-08-05 08:56:11 -04:00
parent 3b9a31ef51
commit 711976cce0
1 changed files with 4 additions and 0 deletions

View File

@ -117,6 +117,10 @@ std::vector<std::shared_ptr<Device>> DeviceFinder::FindAll() {
makeIfSerialMatches<NeoVIFIRE2>(dev, newFoundDevices); makeIfSerialMatches<NeoVIFIRE2>(dev, newFoundDevices);
#endif #endif
#ifdef __NEOVIFIRE3_H_
makeIfSerialMatches<NeoVIFIRE3>(dev, newFoundDevices);
#endif
#ifdef __NEOVIRED2_H_ #ifdef __NEOVIRED2_H_
makeIfSerialMatches<NeoVIRED2>(dev, newFoundDevices); makeIfSerialMatches<NeoVIRED2>(dev, newFoundDevices);
#endif #endif