ChecksumMismatch

data class ChecksumMismatch(val expected: UInt, val actual: UInt) : Exception, DfuError

CRC32 verification failed after transferring an object.

Constructors

Link copied to clipboard
constructor(expected: UInt, actual: UInt)

Properties

Link copied to clipboard

CRC reported by the peripheral

Link copied to clipboard
expect open val cause: Throwable?
Link copied to clipboard

CRC computed locally from the source data

Link copied to clipboard
expect open val message: String?