DFUUpdateInfo

public struct DFUUpdateInfo : Codable
extension DFUUpdateInfo: Equatable

Provides firmware update related information.

  • Date on which firmware is updated.

    Declaration

    Swift

    public let date: String?
  • Version of the component for which update is requested.

    Declaration

    Swift

    public let version: String
  • DFU update type it can be mandatory or optional or none.

    Declaration

    Swift

    public let dfuStatus: DFUUpdateInfoStatus
  • vid

    VendorId of the component, tag/interposer/module.

    Declaration

    Swift

    public let vid: String
  • pid

    ProductId of the component, tag/interposer/module.

    Declaration

    Swift

    public let pid: String
  • mid

    The module ID.

    Declaration

    Swift

    public var mid: String?
  • Declaration

    Swift

    public static func == (lhs: DFUUpdateInfo, rhs: DFUUpdateInfo) -> Bool