From 711976cce0530fa576ca1264aaba525dce7ac880 Mon Sep 17 00:00:00 2001 From: Jonathan Schwartz Date: Fri, 5 Aug 2022 08:56:11 -0400 Subject: [PATCH] DeviceFinder: Add serial match for FIRE3 --- device/devicefinder.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/device/devicefinder.cpp b/device/devicefinder.cpp index 167e059..213c76e 100644 --- a/device/devicefinder.cpp +++ b/device/devicefinder.cpp @@ -117,6 +117,10 @@ std::vector> DeviceFinder::FindAll() { makeIfSerialMatches(dev, newFoundDevices); #endif + #ifdef __NEOVIFIRE3_H_ + makeIfSerialMatches(dev, newFoundDevices); + #endif + #ifdef __NEOVIRED2_H_ makeIfSerialMatches(dev, newFoundDevices); #endif