MIPI_DSI_PACKET - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntddvdeo-mipi_dsi_packet)

MIPI_DSI_PACKET structure

Description

Mipi (mobile industry processor interface) DSI-2 (display serial interface) packet.

Members

DataId

Data id.

DataType

Data type.

VirtualChannel

Virtual channel.

Data0

Data1

LongWriteWordCount

Long write word count.

EccFiller

Payload

Remarks

See also