#ifndef __VALUECAN4_2EL_ETH_H_ #define __VALUECAN4_2EL_ETH_H_ #ifdef __cplusplus #include "icsneo/device/tree/valuecan4/valuecan4-2el.h" #include "icsneo/platform/pcap.h" #include namespace icsneo { class ValueCAN4_2EL_ETH : public ValueCAN4_2EL { public: static constexpr const uint16_t ETH_PRODUCT_ID = 0x000B; static std::vector> Find(const std::vector& pcapDevices) { std::vector> found; for(auto& foundDev : pcapDevices) { auto fakedev = std::shared_ptr(new ValueCAN4_2EL_ETH({})); for (auto& payload : foundDev.discoveryPackets) fakedev->com->packetizer->input(payload); for (auto& packet : fakedev->com->packetizer->output()) { std::shared_ptr msg; if (!fakedev->com->decoder->decode(msg, packet)) continue; // We failed to decode this packet if(!msg || msg->type != Message::Type::Main51) continue; // Not a message we care about auto sn = std::dynamic_pointer_cast(msg); if(!sn) continue; // Not a serial number message if(sn->deviceSerial.length() < 2) continue; if(sn->deviceSerial.substr(0, 2) != SERIAL_START) continue; // Not a ValueCAN4-2EL auto device = foundDev.device; device.serial[sn->deviceSerial.copy(device.serial, sizeof(device.serial))] = '\0'; found.push_back(std::shared_ptr(new ValueCAN4_2EL_ETH(std::move(device)))); break; } } return found; } bool currentDriverSupportsDFU() const override { return false; } protected: void setupPacketizer(Packetizer& packetizer) override { ValueCAN4_2EL::setupPacketizer(packetizer); packetizer.align16bit = false; } private: ValueCAN4_2EL_ETH(neodevice_t neodevice) : ValueCAN4_2EL(neodevice) { initialize(); productId = ETH_PRODUCT_ID; } }; } #endif // __cplusplus #endif