Nanostack Border Router is a generic mbed border router implementation that provides the 6LoWPAN ND or Thread border router initialization logic.

Files at this revision

API Documentation at this revision

Comitter:
mbed_official
Date:
Mon Mar 04 09:02:42 2019 +0000
Parent:
91:d58d68b11052
Child:
93:6c98c32f59e1
Commit message:
Merge pull request #160 from ARMmbed/jenkinsconfig

Wi-SUN configuration for CI build
.
Commit copied from https://github.com/ARMmbed/nanostack-border-router

Changed in this revision

Jenkinsfile Show annotated file Show diff for this revision Revisions of this file
configs/Wisun_Stm_s2lp_RF.json Show annotated file Show diff for this revision Revisions of this file
source/borderrouter_ws.c Show annotated file Show diff for this revision Revisions of this file
--- a/Jenkinsfile	Tue Feb 26 09:02:40 2019 +0000
+++ b/Jenkinsfile	Mon Mar 04 09:02:42 2019 +0000
@@ -33,7 +33,8 @@
 def configurations = [
   LOWPAN: "6lowpan_Atmel_RF.json",
   THREAD: "Thread_Atmel_RF.json",
-  THREAD_SLIP: "Thread_SLIP_Atmel_RF.json"
+  THREAD_SLIP: "Thread_SLIP_Atmel_RF.json",
+  WI_SUN: "Wisun_Stm_s2lp_RF.json"
   ]
 
 def stepsForParallel = [:]
@@ -48,8 +49,8 @@
       def configurationLabel = configurations.keySet().asList().get(k)
       def configurationFile = configurations.get(configurationLabel)
       def stepName = "${target} ${configurationLabel} ${toolchain}"
-      // SLIP configuration exist only for K64F based Raspberry HAT
-      if (configurationLabel == "THREAD_SLIP" && target != "K64F") {
+      // SLIP configuration exist only for K64F based Raspberry HAT and Wi-SUN configuration exist only for K64F
+      if ((configurationLabel == "THREAD_SLIP" || configurationLabel == "WI_SUN") && target != "K64F") {
         continue;
       }
       stepsForParallel[stepName] = buildStep(target, compilerLabel, configurationFile, configurationLabel, toolchain)
--- a/configs/Wisun_Stm_s2lp_RF.json	Tue Feb 26 09:02:40 2019 +0000
+++ b/configs/Wisun_Stm_s2lp_RF.json	Mon Mar 04 09:02:42 2019 +0000
@@ -43,7 +43,7 @@
         "operating-mode": 255,
         "uc-fixed-channel": "0xffff",
         "bc-fixed-channel": "0xffff",
-        "network-name": "\"ARM-WS-TESTING\""
+        "network-name": "\"Wi-SUN Network\""
     },
     "target_overrides": {
         "*": {
--- a/source/borderrouter_ws.c	Tue Feb 26 09:02:40 2019 +0000
+++ b/source/borderrouter_ws.c	Mon Mar 04 09:02:42 2019 +0000
@@ -112,8 +112,6 @@
 } ws_config_t;
 static ws_config_t ws_conf;
 
-static const char default_network_name[] = "ARM-WS-TESTING";
-
 static void mesh_network_up()
 {
     tr_debug("Create Mesh Interface");
@@ -175,13 +173,8 @@
 
 void load_config(void)
 {
-#ifdef MBED_CONF_APP_NETWORK_NAME
     ws_conf.network_name = malloc(sizeof(MBED_CONF_APP_NETWORK_NAME) + 1);
     strcpy(ws_conf.network_name, MBED_CONF_APP_NETWORK_NAME);
-#else
-    ws_conf.network_name = malloc(sizeof(default_network_name) + 1);
-    strcpy(ws_conf.network_name, default_network_name);
-#endif //MBED_CONF_APP_NETWORK_NAME
 #ifdef MBED_CONF_APP_REGULATORY_DOMAIN
     ws_conf.regulatory_domain = MBED_CONF_APP_REGULATORY_DOMAIN;
 #else