71 lines
1.9 KiB
C++
71 lines
1.9 KiB
C++
#ifndef __RADGEMINI_H_
|
|
#define __RADGEMINI_H_
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include "icsneo/device/device.h"
|
|
#include "icsneo/device/devicetype.h"
|
|
#include "icsneo/device/tree/radgemini/radgeminisettings.h"
|
|
|
|
namespace icsneo {
|
|
|
|
class RADGemini : public Device {
|
|
public:
|
|
// Serial numbers start with GE
|
|
// USB PID is 0x110E, standard driver is CDCACM
|
|
ICSNEO_FINDABLE_DEVICE(RADGemini, DeviceType::RADGemini, "GE");
|
|
|
|
static const std::vector<Network>& GetSupportedNetworks() {
|
|
static std::vector<Network> supportedNetworks = {
|
|
Network::NetID::MDIO_01,
|
|
};
|
|
return supportedNetworks;
|
|
}
|
|
|
|
bool getEthPhyRegControlSupported() const override { return true; }
|
|
|
|
bool isOnlineSupported() const override { return false; }
|
|
|
|
bool supportsTC10() const override { return true; }
|
|
|
|
ProductID getProductID() const override { return ProductID::RADGemini; }
|
|
|
|
BootloaderPipeline getBootloader() override {
|
|
return BootloaderPipeline()
|
|
.add<EnterBootloaderPhase>()
|
|
.add<FlashPhase>(ChipID::RADGemini_MCHIP, BootloaderCommunication::RED)
|
|
.add<ReconnectPhase>()
|
|
.add<WaitPhase>(std::chrono::milliseconds(3000));
|
|
}
|
|
|
|
|
|
protected:
|
|
RADGemini(neodevice_t neodevice, const driver_factory_t& makeDriver) : Device(neodevice) {
|
|
initialize<RADGeminiSettings>(makeDriver);
|
|
}
|
|
|
|
void setupPacketizer(Packetizer& packetizer) override {
|
|
Device::setupPacketizer(packetizer);
|
|
packetizer.align16bit = true;
|
|
}
|
|
|
|
void setupEncoder(Encoder& encoder) override {
|
|
Device::setupEncoder(encoder);
|
|
encoder.supportEthPhy = true;
|
|
}
|
|
|
|
void setupSupportedRXNetworks(std::vector<Network>& rxNetworks) override {
|
|
for(auto& netid : GetSupportedNetworks())
|
|
rxNetworks.emplace_back(netid);
|
|
}
|
|
|
|
// The supported TX networks are the same as the supported RX networks for this device
|
|
void setupSupportedTXNetworks(std::vector<Network>& txNetworks) override { setupSupportedRXNetworks(txNetworks); }
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __cplusplus
|
|
|
|
#endif // __RADGEMINI_H_
|