Hi there. I'm developing an NRF52840 project from scratch and wanted to obtain a "good reference" sdkconfig.h. I tried picking one from the examples (the UART example, 'cos I'm using a UART) but that didn't define the timers that I use (NRFX_TIMER0_ENABLED etc.). I tried taking the NRF52840 template version but that didn't define logging APIs (NRF_LOG_*) that the core Nordic drivers won't compile without. I tried the one from config/nrf52840 but that doesn't define NRFX_TIMER0_INST_IDX which the macro NRFX_TIMER_INSTANCE needs (even though I've set NRFX_TIMER_ENABLED and NRFX_TIMER0_ENABLED to 1 in it).
I've tried a manual merge of both and I'm getting further but I've absolutely no idea whether what I'm compiling is supportable/workable anymore. There must be more #define compilation permutations than the combined age of the universe and number of grains of sand in the galaxy here!
So my question is: where could I obtain a good, supportable, likely to work, compiles with Nordic core code, sdkconfig.h?
FYI I have the Java tool but that doesn't help me make a good reference version, it just allows me to disable/enable the stuff that happens to be there already.
Rob