mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
FIX: cmd_send has wrong varible definitions, leading to loss of values.
This commit is contained in:
parent
1b61e01f0e
commit
5ea8f73547
5 changed files with 78 additions and 57 deletions
|
@ -50,7 +50,7 @@ bool cmd_receive(UsbCommand* cmd) {
|
|||
return (rxlen);
|
||||
}
|
||||
|
||||
bool cmd_send(uint32_t cmd, uint32_t arg0, uint32_t arg1, uint32_t arg2, void* data, size_t len) {
|
||||
bool cmd_send(uint64_t cmd, uint64_t arg0, uint64_t arg1, uint64_t arg2, void* data, size_t len) {
|
||||
|
||||
UsbCommand txcmd;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue