HI,
devzone.nordicsemi.com/.../nrf54l15-nfc-t4t-library-permanently-deadlocks-on-android-field-tears
nfc_platform_event_handler when handling the NRFX_NFCT_EVT_FIELD_LOST event:
/* Workaround: Ensure the FRAMEDELAYMAX register is set to default value when- field is lost. This avoids violating protocol timing, which can lead readers
- to reject the NFC tag's response. */ if (!(NRF_ERRATA_DYNAMIC_CHECK(52, 218) && NRF_ERRATA_DYNAMIC_CHECK(53, 71))) { nrf_nfct_frame_delay_max_set(NRF_NFCT, NRF_NFCT_FAME_DELAY_MAX_DEFAULT); }
nfct_field_event_handler when handling NRFX_NFC_FIELD_STATE_OFF:
Change the line:
if (NRF_ERRATA_DYNAMIC_CHECK(52, 218) || NRF_ERRATA_DYNAMIC_CHECK(53, 71))
To:
if (1)Thanks!