Hello everyone,
I'm working on an NRF54L15 DK evaluation board and I need to use NFCT pins as normal GPIOs. I found out here that I should define CONFIG_NFCT_PINS_AS_GPIOS=y in prj.conf in order to do so, but the solution isn't working.
By manually setting `NRF_NFCT_S->PADCONFIG = 0;` I was able to fix it, but digging a little deeper I realized that the part of the SystemInit that was supposed to do it for me wasn't executing because it depends on the symbol NRF_CONFIG_NFCT_PINS_AS_GPIOS, which isn't defined in my project. How come? It seems to be set by a CMake file in `modules/hal_nordic/nrfx/CMakeLists.txt` but it doesn't work for me.
Am I missing some kind of configuration option? I'm worried this may be a symptom of other problems.