Struct nvapi_sys::i2c::NV_I2C_INFO_V3
[−]
[src]
#[repr(C)]pub struct NV_I2C_INFO_V3 { pub version: u32, pub displayMask: u32, pub bIsDDCPort: u8, pub i2cDevAddress: u8, pub pbI2cRegAddress: *mut u8, pub regAddrSize: u32, pub pbData: *mut u8, pub cbSize: u32, pub i2cSpeed: u32, pub i2cSpeedKhz: NV_I2C_SPEED, pub portId: u8, pub bIsPortIdSet: u32, }
Used in NvAPI_I2CRead() and NvAPI_I2CWrite()
Fields
version: u32
The structure version.
displayMask: u32
The Display Mask of the concerned display.
bIsDDCPort: u8
This flag indicates either the DDC port (TRUE) or the communication port (FALSE) of the concerned display.
i2cDevAddress: u8
The address of the I2C slave. The address should be shifted left by one. Fo example, the I2C address 0x50, often used for reading EDIDs, would be stored here as 0xA0. This matches the position within the byte sent by the master, the last bit is reserved to specify the read or write direction.
pbI2cRegAddress: *mut u8
The I2C target register address. May be NULL, which indicates no register address should be sent.
regAddrSize: u32
The size in bytes of target register address. If pbI2cRegAddress is NULL, this field must be 0.
pbData: *mut u8
The buffer of data which is to be read or written (depending on the command).
cbSize: u32
The size of the data buffer, pbData, to be read or written.
i2cSpeed: u32
Deprecated - must be set to NVAPI_I2C_SPEED_DEPRECATED
.
i2cSpeedKhz: NV_I2C_SPEED
The target speed of the transaction in (kHz) (Chosen from the enum NV_I2C_SPEED
).
portId: u8
The portid on which device is connected (remember to set bIsPortIdSet if this value is set)
Optional for pre-Kepler
bIsPortIdSet: u32
set this flag on if and only if portid value is set
Methods
impl NV_I2C_INFO_V3
[src]
Trait Implementations
impl Copy for NV_I2C_INFO_V3
[src]
impl Clone for NV_I2C_INFO_V3
[src]
fn clone(&self) -> NV_I2C_INFO_V3
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more