52 lines
1.0 KiB
C++
52 lines
1.0 KiB
C++
#ifndef LIBICSNEO_RADGEMINISETTINGS_H
|
|
#define LIBICSNEO_RADGEMINISETTINGS_H
|
|
|
|
#include <stdint.h>
|
|
#include "icsneo/device/idevicesettings.h"
|
|
|
|
#ifdef __cplusplus
|
|
|
|
namespace icsneo {
|
|
|
|
#endif // __cplusplus
|
|
|
|
#pragma pack(push, 2)
|
|
typedef struct {
|
|
uint16_t perf_en; // 2
|
|
|
|
ETHERNET_SETTINGS2 ethernet1; // 16
|
|
ETHERNET_SETTINGS2 ethernet2; // 16
|
|
ETHERNET_SETTINGS2 autoEthernet1; // 16
|
|
ETHERNET_SETTINGS2 autoEthernet2; // 16
|
|
|
|
uint16_t network_enabled_on_boot; // 2
|
|
uint16_t network_enables; // 2
|
|
uint16_t network_enables_2; // 2
|
|
uint16_t network_enables_3; // 2
|
|
uint16_t network_enables_4; // 2
|
|
uint64_t network_enables_5; // 8
|
|
|
|
struct
|
|
{
|
|
uint16_t enableLatencyTest : 1;
|
|
uint16_t reserved : 15;
|
|
} flags; // 2
|
|
} radgemini_settings_t;
|
|
#pragma pack(pop)
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include <iostream>
|
|
|
|
class RADGeminiSettings : public IDeviceSettings {
|
|
public:
|
|
RADGeminiSettings(std::shared_ptr<Communication> com) : IDeviceSettings(com, sizeof(radgemini_settings_t)) {}
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __cplusplus
|
|
|
|
|
|
#endif // LIBICSNEO_RADGEMINISETTINGS_H
|