Resolve an issue where FTDI devices could be erroneously detected with the wrong serial

pull/4/head
Paul Hollinsky 2019-01-03 16:58:23 -05:00
parent 61c16f4dfc
commit efd5547e5c
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ namespace icsneo {
class FTDI : public VCP {
public:
FTDI(device_errorhandler_t err, neodevice_t& forDevice) : VCP(err, forDevice) {}
static std::vector<neodevice_t> FindByProduct(int product) { return VCP::FindByProduct(product, { L"serenum", L"ftdibus" }); }
static std::vector<neodevice_t> FindByProduct(int product) { return VCP::FindByProduct(product, { L"serenum" /*, L"ftdibus" */ }); }
};
}