mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
fix: high and low variable should now contain raw hex.
This commit is contained in:
parent
0ef6e190e7
commit
bc131dd105
3 changed files with 96 additions and 91 deletions
|
@ -614,7 +614,8 @@ void UsbPacketReceived(uint8_t *packet, int len) {
|
|||
CopyIOtoT55x7(c->arg[0], c->arg[1]);
|
||||
break;
|
||||
case CMD_EM410X_DEMOD: {
|
||||
uint32_t high, low;
|
||||
uint32_t high;
|
||||
uint64_t low;
|
||||
CmdEM410xdemod(c->arg[0], &high, &low, 1);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue