Merge pull request #1530 from pieterg/patch-1

armsrc/felica: fix crc offsets in felica_sim_lite
This commit is contained in:
Iceman 2021-11-18 17:43:48 +01:00 committed by GitHub
commit 94b597febf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -681,9 +681,9 @@ void felica_sim_lite(uint8_t *uid) {
}
// calculate and set CRC
AddCrc(resp_poll0, resp_poll0[2]);
AddCrc(resp_poll1, resp_poll1[2]);
AddCrc(resp_readblk, resp_readblk[2]);
AddCrc(&resp_poll0[2], resp_poll0[2]);
AddCrc(&resp_poll1[2], resp_poll1[2]);
AddCrc(&resp_readblk[2], resp_readblk[2]);
iso18092_setup(FPGA_HF_ISO18092_FLAG_NOMOD);