Merge pull request #1633 from Giraut/master

Encode ISO15693 response as tag byte by byte, instead of 2 bytes by 2…
This commit is contained in:
Iceman 2022-03-22 18:19:22 +01:00 committed by GitHub
commit d851152fe0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -252,11 +252,9 @@ void CodeIso15693AsTag(const uint8_t *cmd, size_t len) {
ts->buf[++ts->max] = 0x1D; // 00011101
// data
for (size_t i = 0; i < len; i += 2) {
for (size_t i = 0; i < len; i ++) {
ts->buf[++ts->max] = encode_4bits[cmd[i] & 0xF];
ts->buf[++ts->max] = encode_4bits[cmd[i] >> 4];
ts->buf[++ts->max] = encode_4bits[cmd[i + 1] & 0xF];
ts->buf[++ts->max] = encode_4bits[cmd[i + 1] >> 4];
}
// EOF