Skip to content

DD_CRUISE_POINT_INFO

Structure Definition

1
2
3
4
5
6
typedef struct _dd_cruise_point_info
{
    unsigned int presetIndex; 
    unsigned int dwellSpeed;  
    unsigned int dwellTime;   
} DD_CRUISE_POINT_INFO;
1
2
3
4
5
6
7
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct DD_CRUISE_POINT_INFO
{
    public UInt32 presetIndex;
    public UInt32 dwellSpeed;
    public UInt32 dwellTime;
}

Function Description

Cruise line point information.

Member Description

Member Type Remark
presetIndex unsigned int Preset point index (1-128).
dwellSpeed unsigned int Cruising speed (1-8).
dwellTime unsigned int Cruise time (seconds).
Error Code