This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

how to set HWID to 52 in ble_mesh_v0.9.1-Alpha?

Hi there, I've already downloaded ble_mesh_v0.9.1-Alpha SDK and I can use arm-none-eabi-gcc to compile it, one thing I want to know is that how can I switch HWID to 52 in order to build firmware for nRF52 series kit? As I guess, the default setting of HWID is 51.

Parents
  • This should be stated in the documentation under Building the Mesh Stack:

    In order to build with Ninja, the correct build files need to be generated first by using CMake

    cmake -G Ninja <root directory for the mesh stack repository>
    

    Once the Ninja build files are generated running ninja will build all the targets (examples and libraries) except for documentation and pc-lint.

    In order to see a list of available build targets, running ninja -t targets will show the options available; a specific target can be built by specifying it from this list such as: ninja 51_MBTLE_CORE.

Reply
  • This should be stated in the documentation under Building the Mesh Stack:

    In order to build with Ninja, the correct build files need to be generated first by using CMake

    cmake -G Ninja <root directory for the mesh stack repository>
    

    Once the Ninja build files are generated running ninja will build all the targets (examples and libraries) except for documentation and pc-lint.

    In order to see a list of available build targets, running ninja -t targets will show the options available; a specific target can be built by specifying it from this list such as: ninja 51_MBTLE_CORE.

Children
No Data
Related