So i have a custom nrf52840 board that i'm working on with SDK 15.2
I want to use the NFC as GPIO.
According to the docs i need to set in the sdk_config.h CONFIG_NFCT_PINS_AS_GPIOS.
It didn't work. i was sure i was doing something wrong so i investigated.
CONFIG_NFCT_PINS_AS_GPIOS define is checked in 2 places:
nRF5_SDK_15.2.0_9412b96/modules/nrfx/mdk/system_nrf52.c
nRF5_SDK_15.2.0_9412b96/modules/nrfx/mdk/system_nrf52840.c
from which only 1 is used in my project, the one with nrf52840.
So i stopped compilation in pre compilation using -E switch in CFLAGS. I could not find CONFIG_NFCT_PINS_AS_GPIOS in the .c.o output file. So i checked further and it seems like sdk_config is not even included in this file or it's header.
Chgecking this forum someone mentioned he added `-DCONFIG_NFCT_PINS_AS_GPIOS` to his CFLAGS, this makes sense as it will define CONFIG_NFCT_PINS_AS_GPIOS in all files including this one, the question is why is the sdk_config not included and if it's supposed to be, why does the docs states to include CONFIG_NFCT_PINS_AS_GPIOS in the sdk_config.h when its clearly not used anywhere at all.