19 case I2cTransferError::ArbitrationLostError:
20 return string(
"I2c arbitration lost error");
23 case I2cTransferError::NackError:
24 return string(
"I2c nack error");
27 case I2cTransferError::Success:
28 return string(
"I2c success");
31 case I2cTransferError::TxunderError:
32 return string(
"I2c Tx underrun error");
36 case I2cTransferError::UnknownError:
37 return string(
"I2c unknown error");
I2cTransferException(I2cTransferError responseCode)
Definition: I2cTransferException.h:13
Definition: I2cTransferException.h:11
static string GetError(I2cTransferError code)
Definition: I2cTransferException.h:17
I2cTransferError
Describes the transfer error, if not Success, that occured
Definition: I2cTransferError.h:9