// ntddvdeo.h
typedef struct _MIPI_DSI_PACKET {
union {
UCHAR DataId;
struct {
UCHAR DataType : 6;
UCHAR VirtualChannel : 2;
};
};
union {
struct {
UCHAR Data0;
UCHAR Data1;
};
USHORT LongWriteWordCount;
};
UCHAR EccFiller;
UCHAR Payload[DSI_PACKET_EMBEDDED_PAYLOAD_SIZE];
} MIPI_DSI_PACKET;
View the official Windows Driver Kit DDI referenceNo description available.
Mipi (mobile industry processor interface) DSI-2 (display serial interface) packet.
DataIdData id.
DataTypeData type.
VirtualChannelVirtual channel.
Data0Data1LongWriteWordCountLong write word count.
EccFillerPayload