Skip to content

DD_SERIAL_CONFIG

Structure Definition

1
2
3
4
5
6
7
8
typedef struct _dd_serial_config_
{
    unsigned int baudRate;        
    unsigned int dataBit;         
    unsigned int stopBit;         
    unsigned int parity;          
    unsigned int dataFlowControl; 
} DD_SERIAL_CONFIG;
1
2
3
4
5
6
7
8
9
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct DD_SERIAL_CONFIG
{
    public UInt32 baudRate;
    public UInt32 dataBit;
    public UInt32 stopBit;
    public UInt32 parity;
    public UInt32 dataFlowControl;
}

Function Description

Sequence configuration structure.

Member Description

Member Type Remark
baudRate unsigned int Baud rate.
dataBit unsigned int Data bits.
stopBit unsigned int Stop bit.
parity unsigned int Parity bit.
dataFlowControl unsigned int Data flow control.
Error Code