diff options
Diffstat (limited to 'src/phHciNfc_RFReader.c')
-rw-r--r-- | src/phHciNfc_RFReader.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/phHciNfc_RFReader.c b/src/phHciNfc_RFReader.c index 6f53f74..1ecba87 100644 --- a/src/phHciNfc_RFReader.c +++ b/src/phHciNfc_RFReader.c @@ -63,6 +63,7 @@ #define NFCIP_ACTIVATE_DELAY 0x05U +uint8_t nxp_nfc_isoxchg_timeout = NXP_ISO_XCHG_TIMEOUT; /* *************************** Structure and Enumeration *************************** */ @@ -2328,7 +2329,7 @@ phHciNfc_ReaderMgmt_Release( (uint8_t) pipe_id, HCP_MSG_TYPE_COMMAND, cmd); hcp_message = &(hcp_packet->msg.message); /* Frame Wait Timeout */ - hcp_message->payload[i++] = NXP_ISO_XCHG_TIMEOUT ; + hcp_message->payload[i++] = nxp_nfc_isoxchg_timeout ; phHciNfc_Append_HCPFrame((uint8_t *)hcp_message->payload, i, p_pipe_info->param_info, p_pipe_info->param_length); |