mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
CHG: '-DWITH_EMV' - fixing some compilation errors when compiling with peter fillmore's emv code. Warning a 256kb Proxmark3 device will only have 7% memory left if you enable this
This commit is contained in:
parent
e772774ba1
commit
3e83ff2159
7 changed files with 91 additions and 57 deletions
|
@ -98,7 +98,8 @@ static void *uart_receiver(void *targ) {
|
|||
prx = rx;
|
||||
|
||||
if (txcmd_pending) {
|
||||
if ( !uart_send(sp, (byte_t*) &txcmd, sizeof(UsbCommand))) {
|
||||
bool res = uart_send(sp, (byte_t*) &txcmd, sizeof(UsbCommand));
|
||||
if (!res) {
|
||||
PrintAndLog("Sending bytes to proxmark failed");
|
||||
}
|
||||
txcmd_pending = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue