Hello!
I've got a small problem in Visual Studio Code for Windows, the intellisense can't seem to find the nordic header files from the downloaded sdk. It compiles just fine, its the intellisense that is complaining. I've added the C/C++ extension to Visual Studio Code and configured the C/C++ configuration (c_cpp.properties.json) - or so I thought!
the intellisense can't find multiple files, for instance nrf.h. That file is located NRF_SDK/modules/nrfx/mdk and adding "${env:NRF_SDK}/modules/**" to includePath should do the trick?
env_NRF_SDK is just fine as opening %NRF_SDK% works in explorer.
{ "configurations": [ { "name": "nRF52832", "includePath": [ "${workspaceFolder}/**", "${env:GNU_GCC}/arm-none-eabi/include", "${env:NRF_SDK}/modules/**", "${env:NRF_SDK}/components/**" ],