mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-25 08:35:56 +08:00
armsrc/felica: fix crc offsets in felica_sim_lite
the sync bytes should not be included in the crc calculation (and the crc bytes should be placed at the end of the response buffers)
This commit is contained in:
parent
d4b5bfbeaa
commit
3edd6b5b36
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue