RAD_REPORTING_SETTINGS Structure
Setting structure for reporting options for the Rad Galaxy
typedef struct __declspec (align(2))
{
uint32_t flags;
uint16_t temp_interval_ms;
uint16_t gps_interval_ms;
uint16_t serdes_interval_ms;
uint16_t io_interval_ms;
uint32_t rsvd;
}RAD_REPORTING_SETTINGS;<StructLayout(LayoutKind.Sequential, Pack:=2)> Public Structure RAD_REPORTING_SETTINGS
Dim flags As UInt32
Dim temp_interval_ms As UInt16
Dim gps_interval_ms As UInt16
Dim serdes_interval_ms As UInt16
Dim io_interval_ms As UInt16
Dim rsvd As UInt32
End Structure[StructLayout(LayoutKind.Sequential,Pack=2)]
public struct RAD_REPORTING_SETTINGS
{
public UInt32 flags;
public UInt16 temp_interval_ms;
public UInt16 gps_interval_ms;
public UInt16 serdes_interval_ms;
public UInt16 io_interval_ms;
public UInt32 rsvd;
}Remarks
Item
Description
flags
Bitfield for enabling different IO features.
temp_interval_ms
Sets the interval in ms for reporting the temperature.
gps_interval_ms
Sets the interval in ms for reporting the GPS.
serdes_interval_ms
Sets the interval in ms for reporting the Serdes.
io_interval_ms
Sets the interval in ms for reporting the IO.
rsvd
Reserved
Last updated