// pep_x.h
typedef struct _PEP_ACPI_SPB_I2C_RESOURCE {
PEP_ACPI_SPB_RESOURCE SpbCommon;
ULONG ConnectionSpeed;
USHORT SlaveAddress;
} PEP_ACPI_SPB_I2C_RESOURCE, *PPEP_ACPI_SPB_I2C_RESOURCE;
View the official Windows Driver Kit DDI reference// pepfx.h
typedef struct _PEP_ACPI_SPB_I2C_RESOURCE {
PEP_ACPI_SPB_RESOURCE SpbCommon;
ULONG ConnectionSpeed;
USHORT SlaveAddress;
} PEP_ACPI_SPB_I2C_RESOURCE, *PPEP_ACPI_SPB_I2C_RESOURCE;
View the official Windows Driver Kit DDI referenceNo description available.
The PEP_ACPI_SPB_I2C_RESOURCE structure describes an ACPI I2C serial bus resource.
SpbCommonA PEP_ACPI_SPB_RESOURCE structure describing this resource.
ConnectionSpeedThe maximum speed, in hertz, supported by this connection.
SlaveAddressThe I2C bus address for this connection.
The PEP_ACPI_SPB_I2C_RESOURCE structure describes an ACPI I2C serial bus resource.
SpbCommonA PEP_ACPI_SPB_RESOURCE structure describing this resource.
ConnectionSpeedThe maximum speed, in hertz, supported by this connection.
SlaveAddressThe I2C bus address for this connection.