mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
Merge branch 'master' into experimental_varlen
* master: (27 commits) textual style redundant assignment timeout fix small fix add termcap add readline and small fix rdp textual null term? fix: https://github.com/RfidResearchGroup/proxmark3/issues/166 add dlls to release style style test fix test fixes another fix fix memleak fix textual use printandlogex ...
This commit is contained in:
commit
7cbcf8163c
20 changed files with 519 additions and 534 deletions
|
@ -64,7 +64,7 @@ void SendCommand(UsbCommand *c) {
|
|||
#endif
|
||||
|
||||
if (offline) {
|
||||
PrintAndLogEx(WARNING, "Sending bytes to Proxmark3 failed." _YELLOW_("offline") );
|
||||
PrintAndLogEx(WARNING, "Sending bytes to Proxmark3 failed." _YELLOW_("offline"));
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -384,13 +384,13 @@ __attribute__((force_align_arg_pointer))
|
|||
if (txBufferNGLen) { // NG packet
|
||||
if (!uart_send(sp, (uint8_t *) &txBufferNG, txBufferNGLen)) {
|
||||
//counter_to_offline++;
|
||||
PrintAndLogEx(WARNING, "sending bytes to Proxmark3 device" _RED_("failed") );
|
||||
PrintAndLogEx(WARNING, "sending bytes to Proxmark3 device" _RED_("failed"));
|
||||
}
|
||||
txBufferNGLen = 0;
|
||||
} else {
|
||||
if (!uart_send(sp, (uint8_t *) &txBuffer, sizeof(UsbCommand))) {
|
||||
//counter_to_offline++;
|
||||
PrintAndLogEx(WARNING, "sending bytes to Proxmark3 device" _RED_("failed") );
|
||||
PrintAndLogEx(WARNING, "sending bytes to Proxmark3 device" _RED_("failed"));
|
||||
}
|
||||
}
|
||||
txBuffer_pending = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue