mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-22 14:13:42 -07:00
Fixed function name
This commit is contained in:
parent
96aab0688a
commit
2a3f94d932
1 changed files with 2 additions and 2 deletions
|
@ -95,7 +95,7 @@ static void *uart_receiver(void *targ) {
|
||||||
PrintAndLog("Proxmark reconnected!");
|
PrintAndLog("Proxmark reconnected!");
|
||||||
need_reconnect = false;
|
need_reconnect = false;
|
||||||
offline = 0;
|
offline = 0;
|
||||||
//CmdVersionW(NULL, true);
|
//CmdVersionC(NULL, true);
|
||||||
clearCommandBuffer();
|
clearCommandBuffer();
|
||||||
uart_send(sp, (byte_t*) &version_cmd, sizeof(UsbCommand)); // request it from the HW
|
uart_send(sp, (byte_t*) &version_cmd, sizeof(UsbCommand)); // request it from the HW
|
||||||
request_version = true;
|
request_version = true;
|
||||||
|
@ -114,7 +114,7 @@ static void *uart_receiver(void *targ) {
|
||||||
if( request_version && ((UsbCommand*)rx)->cmd == CMD_ACK)
|
if( request_version && ((UsbCommand*)rx)->cmd == CMD_ACK)
|
||||||
{
|
{
|
||||||
request_version = false;
|
request_version = false;
|
||||||
CmdVersionW(NULL, true);
|
CmdVersionC(NULL, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue