From bdc10744fb338ae197692713a0b48a7ccc36f566 Mon Sep 17 00:00:00 2001 From: JF Date: Sun, 26 Apr 2020 10:25:59 +0200 Subject: Add Nimble in libs directory --- src/libs/mynewt-nimble/docs/mesh/sample.rst | 30 +++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/libs/mynewt-nimble/docs/mesh/sample.rst (limited to 'src/libs/mynewt-nimble/docs/mesh/sample.rst') diff --git a/src/libs/mynewt-nimble/docs/mesh/sample.rst b/src/libs/mynewt-nimble/docs/mesh/sample.rst new file mode 100644 index 00000000..e63667b6 --- /dev/null +++ b/src/libs/mynewt-nimble/docs/mesh/sample.rst @@ -0,0 +1,30 @@ +Sample application +------------------ + +**blemesh** sample application implements Bluetooth Mesh node that supports On/Off and Level models. + +To build application use following target. Note that since this application uses Non-resolvable Private Address there is +no need for configuring public address. + +:: + + newt target create blemesh + newt target set blemesh app=@apache-mynewt-nimble/apps/blemesh + newt target set blemesh bsp=@apache-mynewt-core/hw/bsp/nordic_pca10056 + newt target set blemesh build_profile=optimized + newt target set blemesh syscfg=BLE_MESH_PB_GATT=1:BLE_MESH_DEV_UUID='(uint8_t[16]){0x22, 0x20, 0}' + +Every device should have unique Device UUID so config amend and rebuild is needed for each of the devices that will be +added to a network. + +:: + + newt target set blemesh syscfg=BLE_MESH_PB_GATT=1:BLE_MESH_DEV_UUID='(uint8_t[16]){0x22, 0x21, 0}' + ... + newt target set blemesh syscfg=BLE_MESH_PB_GATT=1:BLE_MESH_DEV_UUID='(uint8_t[16]){0x22, 0x22, 0}' + ... + newt target set blemesh syscfg=BLE_MESH_PB_GATT=1:BLE_MESH_DEV_UUID='(uint8_t[16]){0x22, 0x23, 0}' + +GATT bearer is enabled so that it is possible to provision those with Bluetooth Mesh application from Silicon Labs +(available `here `__) which doesn't +support advertising bearer. -- cgit v1.2.3-70-g09d2