Hello,
I am developing an NFC application using the nRF Connect SDK v2.6.0 and the nRF Toolchain v2.7.0. During development, I tested my application on the nRF52840 DevKit (built with the target nrf52840dk_nrf52840
) and the nfc_callback
function works as expected. However, when I switch to my final hardware—which uses the nRF52832 (building with the target nrf52dk_nrf52832
)—I can still read the NFC tag, but the nfc_callback
function is never called.
The codebase is essentially the same as the peripheral_hids_keyboard
sample from the SDK, and the only difference is the target board selection. Below is the app_nfc.c
file for reference. Are there any specific configurations or known differences on the nRF52832 that might prevent the callback from being triggered?
Thank you!