Post

Replies

Boosts

Views

Activity

Reply to ISO15963 customCommand for ICODE SLIX2
So I ended up finding a workaround dy first calling "Select", and then using the .select flag instead of .addressed. iso15693Tag.select(requestFlags: [.highDataRate, .address]) { (error) in     if let error = error {         session.invalidate(errorMessage: "Failed to select")         return     }     iso15693Tag.customCommand(requestFlags: [.highDataRate, .select], customCommandCode: 0xA2, customRequestParameters: Data()) { (data, error) in 		...     } } Maybe there is a bug in the customCommand function when using addressed mode? I also did a quick test on Android using the transceive() method, and had no problem sending custom commands in addressed mode.
Sep ’20