#ifndef __NEOVIPLASMA_H_ #define __NEOVIPLASMA_H_ #include "device/plasion/include/plasion.h" #include "platform/include/ftdi.h" namespace icsneo { class NeoVIPLASMA : public Plasion { public: static constexpr const char* PRODUCT_NAME = "neoVI PLASMA"; static constexpr const uint16_t PRODUCT_ID = 0x0801; NeoVIPLASMA(neodevice_t neodevice) : Plasion(neodevice) { setProductName(PRODUCT_NAME); productId = PRODUCT_ID; } static std::vector> Find() { std::vector> found; for(auto neodevice : FTDI::FindByProduct(PRODUCT_ID)) found.push_back(std::make_shared(neodevice)); return found; } }; } #endif