共用方式為


I2cTransferStatus 列舉

定義

描述是否執行ReadPartialWritePartial 或 WriteReadPartial方法的資料傳輸,或提供傳輸失敗的原因。

public enum class I2cTransferStatus
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Devices.DevicesLowLevelContract, 65536)]
enum class I2cTransferStatus
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Devices.DevicesLowLevelContract), 65536)]
public enum I2cTransferStatus
var value = Windows.Devices.I2c.I2cTransferStatus.fullTransfer
Public Enum I2cTransferStatus
繼承
I2cTransferStatus
屬性

Windows 需求

裝置系列
Windows IoT Extension SDK (已於 10.0.10240.0 引進)
API contract
Windows.Devices.DevicesLowLevelContract (已於 v1.0 引進)

欄位

ClockStretchTimeout 3

傳輸失敗,因為時鐘延展太長。 請確定時鐘線未保持低。

FullTransfer 0

資料已完全傳輸。 針對 WriteReadPartial,寫入和讀取作業的資料已完全傳輸。

針對此狀態碼,方法傳回之 I2cTransferResult.BytesTransferred 成員的值與您呼叫 方法時所指定的緩衝區大小相同,或等於您為 WriteReadPartial指定的兩個緩衝區大小總和。

PartialTransfer 1

I2 C 裝置在傳輸所有資料之前,都已負面認可資料傳輸。

針對此狀態碼,方法傳回的 I2cTransferResult.BytesTransferred 成員值是實際傳輸的位元組數目。 針對 WriteReadPartial,此值是作業寫入的位元組數和作業讀取的位元組數目總和。

SlaveAddressNotAcknowledged 2

未認可匯流排位址。

針對此狀態碼,方法傳回方法的 I2cTransferResult.BytesTransferred 成員值為 0。

UnknownError 4

傳輸失敗,原因不明。

適用於

另請參閱