LIN_SETTINGS Structure
typedef struct __declspec (align(2))
{
unsigned int Baudrate;
unsigned short spbrg;
unsigned char brgh;
unsigned char NumBitsDelay;
unsigned char MasterResistor;
unsigned char Mode;
}LIN_SETTINGS;<StructLayout(LayoutKind.Sequential, Pack:=2)> Public Structure LIN_SETTINGS
Dim Baudrate As UInt32
Dim spbrg As UInt16
Dim brgh As Byte
Dim NumBitsDelay As Byte
Dim MasterResistor As Byte
Dim Mode As Byte
End Structure[StructLayout(LayoutKind.Sequential,Pack=2)]
public struct LIN_SETTINGS
{
public UInt32 Baudrate;
public UInt16 spbrg;
public byte brgh;
public byte NumBitsDelay;
public byte MasterResistor;
public byte Mode;
}Item
Description
Last updated