Improve reliability of PN532 HSU
This commit is contained in:
parent
8c1bf6f56f
commit
62216df450
@ -395,7 +395,11 @@ uart_send_single(serial_port sp, const uint8_t *pbtTx, const size_t szTx, int ti
|
|||||||
(void) timeout;
|
(void) timeout;
|
||||||
int error = 0;
|
int error = 0;
|
||||||
for (int i = 0; i < szTx; i++)
|
for (int i = 0; i < szTx; i++)
|
||||||
|
{
|
||||||
error |= uart_send(sp, pbtTx+i, 1, timeout);
|
error |= uart_send(sp, pbtTx+i, 1, timeout);
|
||||||
|
usleep(9);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
return error ? NFC_EIO : NFC_SUCCESS;
|
return error ? NFC_EIO : NFC_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user