I'm using the latest nRFConnect SDK w/ VSCode with a custom board connected to via a J-LINK. When I look at the call stack it only shows the current thread. I can see thread info manually from the debug terminal (via "p *_kernel.threads", etc). I have the following prj.conf options:
CONFIG_NO_OPTIMIZATIONS=y
CONFIG_EXTRA_EXCEPTION_INFO=y
CONFIG_RESET_ON_FATAL_ERROR=n
CONFIG_THREAD_MONITOR=y
CONFIG_THREAD_STACK_INFO=y
CONFIG_THREAD_NAME=y
Should this be thread aware by default? Or do I need to add some additional configuration to make it thread aware?