Hi, there.
I have two NFC Tags. (SLIX, SLIX2) and ISO15693.
I want to develop a app on IOS using Swift.
I can Tag Read and Write AFI.
But I want to SET EAS (9.5.3.12 ) && RESET EAS (9.5.3.13) on Tags.
I read the Spec documents. But I don't understand..
( I attached the file that I read. )
My code is here. (SET EAS)
My tags didn't change SET EAS (0xA2) and RESET EAS (0xA3).
iso15693Tag.select(requestFlags: [.highDataRate, .address], completionHandler: { (error) in
iso15693Tag.customCommand(requestFlags: [.highDataRate, .address], customCommandCode: 0xA2,
customRequestParameters: Data([0x00, 0x00, 0x01, 0x00, 0x04]),
resultHandler: { (result: Result<Data, Error>) in
switch result {
case .success(let data) :
print("Data:: \(data)")
case .failure(let error):
print("customCommandError :: \(error)")
}
})
})
My tag SLIX2 Tag scan Img.


Please help me..
Thanks to read and apologize to my english...