Rename the USB_PRODUCT_ID to PRODUCT_ID as it is used for Ethernet as well

This commit is contained in:
Paul Hollinsky
2018-09-18 16:59:59 -04:00
parent 8343093708
commit b254ac991d
13 changed files with 38 additions and 38 deletions
+3 -3
View File
@@ -10,17 +10,17 @@ class RADGalaxy : public Device {
public:
// Serial numbers start with RG
static constexpr const char* PRODUCT_NAME = "RADGalaxy";
static constexpr const uint16_t USB_PRODUCT_ID = 0x0003;
static constexpr const uint16_t PRODUCT_ID = 0x0003;
RADGalaxy(neodevice_t neodevice) : Device(neodevice) {
com = std::make_shared<Communication>(std::make_shared<PCAP>(getWritableNeoDevice()));
setProductName(PRODUCT_NAME);
usbProductId = USB_PRODUCT_ID;
productId = PRODUCT_ID;
}
static std::vector<std::shared_ptr<Device>> Find() {
std::vector<std::shared_ptr<Device>> found;
for(auto neodevice : PCAP::FindByProduct(USB_PRODUCT_ID))
for(auto neodevice : PCAP::FindByProduct(PRODUCT_ID))
found.push_back(std::make_shared<RADGalaxy>(neodevice));
return found;