There is only Segger embedded studio example project file for nrf52832_xxAA with s132_3_1_0 softdevice in new Mesh SDK v1.0.1 released Friday 26th Jan.
Project files for other setups are missing.
There is only Segger embedded studio example project file for nrf52832_xxAA with s132_3_1_0 softdevice in new Mesh SDK v1.0.1 released Friday 26th Jan.
Project files for other setups are missing.
You can generate the missing project files using python and cmake.
Follow the instruction here
Basically you can call
cmake -G Ninja -DGENERATE_SES_PROJECTS=ON -DPLATFORM=nrf52832_xxAA ..
cmake -G Ninja -DGENERATE_SES_PROJECTS=ON -DPLATFORM=nrf52840_xxAA ..
To generate SES project files for NRF52 chips.
NRF51 might not be supported in the future but if you want to generate the project for nRF51, you can call:
cmake -G Ninja -DGENERATE_SES_PROJECTS=ON -DPLATFORM=nrf51822_xxAC ..
Lazy ? Here is the .zip with the generated project files:
When I try to build for the 52840, I get,
fatal error: nrf_error.h: No such file or director
Do anyone have any tips?
Please take a screenshot and post as a new question. nrf_error.h is available in \external\softdevice\s132_5.0.0\s132_nrf52_5.0.0_API\include, it should be included in the project by default.
is that because nRF52840 should use s140, but not s132, so it can not use s132_nrf52_5.0.0_API
Yes, my mistake, the nrf_error.h should be included from \external\softdevice\s140_5.0.0-3.alpha\s140_nrf52840_5.0.0-3.alpha_API instead
please help me.