mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
fix: forgot some changes
This commit is contained in:
parent
6121d816e7
commit
0c8ead0bd6
2 changed files with 3 additions and 3 deletions
|
@ -1669,9 +1669,6 @@ static void TransmitFor14443a(const uint8_t *cmd, uint16_t len, uint32_t *timing
|
||||||
LastTimeProxToAirStart = ThisTransferTime;
|
LastTimeProxToAirStart = ThisTransferTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
// clear TXRDY
|
|
||||||
AT91C_BASE_SSC->SSC_THR = SEC_Y;
|
|
||||||
|
|
||||||
uint16_t c = 0;
|
uint16_t c = 0;
|
||||||
while (c < len) {
|
while (c < len) {
|
||||||
if (AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_TXRDY)) {
|
if (AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_TXRDY)) {
|
||||||
|
|
|
@ -96,6 +96,9 @@ typedef struct {
|
||||||
# define CheckCrc14A(data, len) check_crc(CRC_14443_A, (data), (len))
|
# define CheckCrc14A(data, len) check_crc(CRC_14443_A, (data), (len))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
void iso14a_set_timeout(uint32_t timeout);
|
||||||
|
uint32_t iso14a_get_timeout(void);
|
||||||
|
|
||||||
void GetParity(const uint8_t *pbtCmd, uint16_t len, uint8_t *par);
|
void GetParity(const uint8_t *pbtCmd, uint16_t len, uint8_t *par);
|
||||||
|
|
||||||
tDemod14a *GetDemod14a(void);
|
tDemod14a *GetDemod14a(void);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue