Hi,
I'm not sure if this is the correct place to report this, but it was not possible for me to report this on the nrfx GitHub page.
I found out that the function nrfy_nfct_tx_frame_config_set writes to the wrong register, because it calls nrf_nfct_rx_frame_config_set internally. So it writes the RXD.FRAMECONFIG register instead of TXD.FRAMECONFIG.
NRFY_STATIC_INLINE void nrfy_nfct_tx_frame_config_set(NRF_NFCT_Type * p_reg, uint8_t flags)
{
nrf_nfct_rx_frame_config_set(p_reg, flags);
nrf_barrier_w();
}
I use the Version 3.9.0 in my project, but the code is not changed in the latest version from GitHub.
Best regards
Frank Viganske