Support the neoVI RED 2

This commit is contained in:
Paul Hollinsky
2021-05-27 22:47:36 -04:00
parent ed5132e852
commit 04e7bfd1af
6 changed files with 283 additions and 0 deletions
+8
View File
@@ -19,6 +19,10 @@ static std::vector<DeviceType> supportedDevices = {
NeoOBD2SIM::DEVICE_TYPE,
#endif
#ifdef __NEOVIRED2_H_
NeoVIRED2::DEVICE_TYPE,
#endif
#ifdef __NEOVIFIRE_H_
NeoVIFIRE::DEVICE_TYPE,
#endif
@@ -153,6 +157,10 @@ std::vector<std::shared_ptr<Device>> DeviceFinder::FindAll() {
findResults.push_back(NeoVIFIRE2USB::Find());
#endif
#ifdef __NEOVIRED2_H_
findResults.push_back(NeoVIRED2::Find(pcapDevices));
#endif
#ifdef __NEOVIION_H_
findResults.push_back(NeoVIION::Find());
#endif