mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-10 18:24:27 +08:00
Fix felica_sendraw
This commit is contained in:
parent
da81c6806b
commit
f57879cbcb
1 changed files with 1 additions and 1 deletions
|
@ -560,7 +560,7 @@ void felica_sendraw(PacketCommandNG *c) {
|
||||||
if ((param & FELICA_APPEND_CRC)) {
|
if ((param & FELICA_APPEND_CRC)) {
|
||||||
// Don't append crc on empty bytearray...
|
// Don't append crc on empty bytearray...
|
||||||
if (len > 0) {
|
if (len > 0) {
|
||||||
AddCrc(buf, len);
|
AddCrc(buf + 2, len);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (g_dbglevel >= DBG_DEBUG) {
|
if (g_dbglevel >= DBG_DEBUG) {
|
||||||
|
|
Loading…
Reference in a new issue