I would like to know the behavior when multiple Kconfig value settings are defined.
Settings are made in the following three places. (app directory)
Setting value of NRFX_GPIOTE_NUM_OF_EVT_HANDLERS
1. Kconfig
config NRFX_GPIOTE_NUM_OF_EVT_HANDLERS
default 2
2.CMakeLists.txt
set(CONFIG_NRFX_GPIOTE_NUM_OF_EVT_HANDLERS 4 CACHE INTERNAL "")
3.proj.conf
CONFIG_NRFX_GPIOTE_NUM_OF_EVT_HANDLERS=8
Please let me know those priority.