Skip to content

ISO15693SystemInfo

treastrain edited this page May 5, 2021 · 1 revision

ISO15693SystemInfo

Response of Get System Info commnad.

public struct ISO15693SystemInfo: Codable 

Inheritance

Codable

Initializers

init(uniqueIdentifier:dataStorageFormatIdentifier:applicationFamilyIdentifier:blockSize:totalBlocks:icReference:)

public init(uniqueIdentifier: Data, dataStorageFormatIdentifier: Int, applicationFamilyIdentifier: Int, blockSize: Int, totalBlocks: Int, icReference: Int) 

init(from:)

os(iOS) && !targetEnvironment(macCatalyst)
@available(iOS 14.0, *)
    public init(from coreNFCInstance: CoreNFC.NFCISO15693SystemInfo) 

Properties

uniqueIdentifier

UID.

public var uniqueIdentifier: Data

dataStorageFormatIdentifier

DSFID. Value of -1 will be returned if tag response does not contain the information.

public var dataStorageFormatIdentifier: Int

applicationFamilyIdentifier

AFI. Value of -1 will be returned if tag response does not contain the information.

public var applicationFamilyIdentifier: Int

blockSize

public var blockSize: Int

totalBlocks

Total number of blocks. Value of -1 will be returned if tag response does not contain the information.

public var totalBlocks: Int

icReference

IC Reference. Value of -1 will be returned if tag response does not contain the information.

public var icReference: Int
Clone this wiki locally