Demo program for LoRaWan with data formated for cayenne interface on mydevices.com Check on https://goo.gl/fTUDNc

Dependencies:   Cayenne-LPP

Demonstration d'un node LoRaWan sur carte : Discovery IOT STmicro : B-L072Z-LRWAN1 https://www.st.com/en/evaluation-tools/b-l072z-lrwan1.html

L e code original MBED-ARM : https://os.mbed.com/teams/mbed-os-examples/code/mbed-os-example-lorawan/ est une application de l'API LoRAWan https://os.mbed.com/docs/v5.9/reference/lorawan.html

Le code original a été adapté pour une carte B-L072Z-LRWAN1 équipée d'un capteur de température LM35 connecté en 3.3v sur le port PA_0 (port analogique AN0) Les données sont formatées "cayenne" et visualisables sur mydevices.com ( https://goo.gl/fTUDNc ) Documentation cayenne : https://mydevices.com/cayenne/docs/lora/#lora-cayenne-low-power-payload

Les essais ont été réalisés avec une passerelle TTN https://www.thethingsnetwork.org/ le "Payload Format" ayant été configuré pour "Cayenne LPP"

Des capteurs virtuels on été également ajoutés (humidité, température, lumière, etc...) pour les essais au format cayenne.

Données physiques transmises (downlink)

- Température sur capteur LM35 - Tension sur PA_1 (AN1) est transmise entre 0% et 100% - Etat du bouton bleu

Données physiques reçues (uplink) Un actionneur permet d'allumer/eteindre à distance la led verte de la carte B-L072Z-LRWAN1

L'interface mydevice.com proposé permet de visualiser :

- Les capteurs virtuels - La température réelle sur LM35 - L'état du bouton bleu

/media/uploads/cdupaty/cayenne_mydevice.jpg

/media/uploads/cdupaty/ex_terminal-lorawan.jpg

Revision:
35:462743fb571e
Parent:
20:2055271192d6
Child:
38:315a26cd0165
--- a/Jenkinsfile	Mon Aug 27 07:45:19 2018 +0100
+++ b/Jenkinsfile	Mon Sep 03 08:45:34 2018 +0100
@@ -3,6 +3,8 @@
   [$class: 'BooleanParameterDefinition', name: 'regions_build_test', defaultValue: true, description: 'Test build all available regions']
   ]]])
 
+library 'mbed-lib'
+
 if (env.MBED_OS_REVISION == null) {
   echo 'First run in this branch, using default parameter values'
   env.MBED_OS_REVISION = ''
@@ -30,28 +32,20 @@
   "MTB_MURATA_ABZ",
   "MTS_MDOT_F411RE",
   "DISCO_L072CZ_LRWAN1",
-  "MTB_ADV_WISE_1510"
+  "MTB_ADV_WISE_1510",
+  "MTB_RAK811"
 ]
 
 // Map toolchains to compilers
 def toolchains = [
   ARM: "armcc",
   GCC_ARM: "arm-none-eabi-gcc",
-  IAR: "iar_arm",
-  ARMC6: "arm6"
+  IAR: "iar_arm"
+  //ARMC6: "arm6"
 ]
 
 def stepsForParallel = [:]
 
-// Run correct command based on OS used
-def execute(cmd) {
-  if(isUnix()) {
-    sh "${cmd}"
-  } else {
-    bat "${cmd}"
-  }
-}
-
 // Jenkins pipeline does not support map.each, we need to use oldschool for loop
 for (int i = 0; i < targets.size(); i++) {
   for(int j = 0; j < toolchains.size(); j++) {
@@ -66,6 +60,9 @@
       if (target == "DISCO_L072CZ_LRWAN1" && toolchain == "GCC_ARM") {
         continue
       }
+      if (target == "MTB_RAK811" && toolchain == "GCC_ARM") {
+        continue
+      }
 
       def stepName = "${target} ${toolchain}"
 
@@ -123,6 +120,14 @@
             execute("sed -i 's/define symbol __size_heap__   = 0x800;/define symbol __size_heap__   = 0x1800;/' \
                     mbed-os/targets/TARGET_STM/TARGET_STM32L1/TARGET_MTB_MTS_XDOT/device/TOOLCHAIN_IAR/stm32l152xc.icf")
           }
+
+          if ("${target}" == "MTB_RAK811") {
+            execute("sed -i 's/#define RCC_HSICALIBRATION_DEFAULT       (0x10U)/#define RCC_HSICALIBRATION_DEFAULT       (0x11U)/' \
+                    mbed-os/targets/TARGET_STM/TARGET_STM32L1/device/stm32l1xx_hal_rcc.h")
+            execute("sed -i 's/define symbol __size_heap__   = 0x800;/define symbol __size_heap__   = 0x1800;/' \
+                    mbed-os/targets/TARGET_STM/TARGET_STM32L1/TARGET_MTB_RAK811/device/TOOLCHAIN_IAR/stm32l152xba.icf")
+          }
+
           execute("mbed compile --build out/${target}_${toolchain}/ -m ${target} -t ${toolchain} -c")
         }
         stash name: "${target}_${toolchain}", includes: '**/mbed-os-example-lorawan.bin'