System Information:
-----------------------------------------
System Used: Dell xps13 9350
CPU SKU: Intel(R) Core(TM) i3-6100U
GPU SKU: Intel (R) HD Graphics 520 (21.20.16.4860)
Graphics Driver Version: 21.20.16.4860
Operating System: Windows 7 32bit
---------------------------------------------
when use CUI SDK SetDeviceData function to Send I2C Over AUX Signal through type-C Port. The computer appears blue screen....
e,g,
ZeroMemory(&InData, sizeof(IGFX_AUX_INFO));
InData.dwDeviceUID = m_ulMonitorUid;
InData.dwOpType = IGFX_I2C_AUX_WRITE;
InData.dwAddress = nAddress;
InData.Data[0] = ucSubAddress;
InData.dwSize = (nWriteDataLength + 1);
for(int i = 0 ; i < nWriteDataLength; i++)
{
InData.Data[i + 1] = pBuffer[i];
}
HRESULT hr = m_pCUIExternal8->SetDeviceData(IGFX_GET_SET_AUX_INFO_GUID, sizeof(InData), (BYTE*)&InData, &dwError);