nrf SDK conversion issue

Hi Team,

I am facing an issue while converting the nRF Connect SDK v2.3.0 (downloaded from Visual Studio Code with nRF Connect) to a .emProject file for Segger Embedded Studio v5.68 using the following steps:

Steps to Generate .emProject File

  1. Navigate to the Project Directory:

    bash
    Copy code
    cd C:\ncs\v2.3.0\zephyr\samples\bluetooth\mesh
  2. Run the Correct Build Command: Use the following command to generate an SES-compatible project:

    bash
    Copy code
    west build -b nrf52840dk_nrf52840 -- -DSEMC_BUILD=ON
    • Replace nrf52840dk_nrf52840 with the board you're targeting, if it's different.
    • The -- -DSEMC_BUILD=ON flag ensures the .emProject file is generated.
  3. Verify the Output: After the build completes successfully:

    • Check the build directory for the .emProject file. It should be named something like zephyr.emProject.
  4. Open in SES:

    • Open Segger Embedded Studio (SES).
    • Use File > Open Solution, and navigate to the .emProject file in the build directory.

Related