MIPI_DSI_PACKET 구조체(ntddvdeo.h)
Mipi(모바일 산업 프로세서 인터페이스) DSI-2(직렬 인터페이스 표시) 패킷.
통사론
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;
회원
DataId
데이터 ID입니다.
DataType
데이터 형식입니다.
VirtualChannel
가상 채널.
Data0
Data1
LongWriteWordCount
긴 쓰기 단어 수입니다.
EccFiller
Payload[DSI_PACKET_EMBEDDED_PAYLOAD_SIZE]
요구 사항
요구 | 값 |
---|---|
지원되는 최소 클라이언트 | Windows 10 버전 1903 |
헤더 | ntddvdeo.h |