mbed Open Thread example with nRF52-DK (nRF52840 SoC).

Revision:
119:b2035fc77033
Parent:
105:0b691b27144a
Child:
120:e8a17278fb1a
--- a/mbed_app.json	Thu Jan 03 14:15:19 2019 +0000
+++ b/mbed_app.json	Fri Jan 04 23:49:48 2019 +0000
@@ -1,5 +1,9 @@
 {
     "config": {
+        "storage-device":{
+            "help": "Values for storage (Thread) devices are: MESH_NVM_HEAP, MESH_NVM_SD_CARD and MESH_NVM_NONE",
+            "value": "MESH_NVM_NONE"
+        },
         "enable-led-control-example": true,
         "LED": "NC",
         "BUTTON": "NC",
@@ -7,21 +11,22 @@
     },
     "target_overrides": {
         "*": {
-            "nanostack.configuration": "lowpan_router",
-            "nsapi.default-mesh-type": "LOWPAN",
-            "mbed-mesh-api.6lowpan-nd-panid-filter": "0xffff",
-            "mbed-mesh-api.6lowpan-nd-channel-page": 0,
-            "mbed-mesh-api.6lowpan-nd-channel": 12,
-            "mbed-mesh-api.6lowpan-nd-channel-mask": "(1<<12)",
-            "mbed-mesh-api.heap-size": 14000,
+            "nanostack.configuration": "thread_router",
+            "nsapi.default-mesh-type": "THREAD",
             "mbed-trace.enable": false,
+            "mbed-mesh-api.heap-size": 30000,
+            "mbed-mesh-api.thread-device-type": "MESH_DEVICE_TYPE_THREAD_ROUTER",
             "platform.stdio-convert-newlines": true,
             "platform.stdio-baud-rate": 115200,
-            "atmel-rf.provide-default": true,
+            "mbed-mesh-api.thread-use-static-link-config": true,
+            "atmel-rf.provide-default": false,
             "mcr20a.provide-default": false,
-            "target.device_has_add": ["802_15_4_PHY"],
             "target.network-default-interface-type": "MESH"
         },
+        "NRF52_DK": {
+            "LED": "LED1",
+            "BUTTON": "BUTTON1"
+        },
         "K64F": {
             "LED": "LED_RED",
             "BUTTON": "SW2"
@@ -52,4 +57,5 @@
             "BUTTON": "SW2"
         }
     }
+
 }