Skip to content

DD_CONFIG_ITEM_HEAD

Structure Definition

1
2
3
4
5
6
7
8
typedef struct _dd_config_item_head_
{
    unsigned short itemID; 
    unsigned short num;    
    unsigned short subLen; 
    unsigned short recv;   
    unsigned int len;      
} DD_CONFIG_ITEM_HEAD;
1
2
3
4
5
6
7
8
9
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct DD_CONFIG_ITEM_HEAD
{
    public UInt16 itemID;
    public UInt16 num;
    public UInt16 subLen;
    public UInt16 recv;
    public UInt32 len;
}

Function Description

Configure header information.

Member Description

Member Type Remark
itemID unsigned short ID.
num unsigned short The number of elements, such as the number of channels, each channel corresponds to an element.
subLen unsigned short The length of each element.
recv unsigned short Reserved bytes.
len unsigned int Total length of data.
Error Code