From 6e12b44d126ba6e56530f259a97135183ec79f57 Mon Sep 17 00:00:00 2001
From: Alexandre Abadie <alexandre.abadie@inria.fr>
Date: Mon, 2 Apr 2018 18:57:01 +0200
Subject: [PATCH] tests/pkg_semtech-loramac: adapt to pkg changes

---
 tests/pkg_semtech-loramac/main.c | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)

diff --git a/tests/pkg_semtech-loramac/main.c b/tests/pkg_semtech-loramac/main.c
index 8ade459b61..77fae587cf 100644
--- a/tests/pkg_semtech-loramac/main.c
+++ b/tests/pkg_semtech-loramac/main.c
@@ -352,12 +352,20 @@ static int _cmd_loramac(int argc, char **argv)
             return 1;
         }
 
-        if (semtech_loramac_join(&loramac, join_type) != SEMTECH_LORAMAC_JOIN_SUCCEEDED) {
-            puts("Join procedure failed!");
-            return 1;
+        switch (semtech_loramac_join(&loramac, join_type)) {
+            case SEMTECH_LORAMAC_RESTRICTED:
+                puts("Cannot join: all channels are blocked (duty cycle)!");
+                return 1;
+            case SEMTECH_LORAMAC_JOIN_FAILED:
+                puts("Join procedure failed!");
+                return 1;
+            case SEMTECH_LORAMAC_JOIN_SUCCEEDED:
+                puts("Join procedure succeeded!");
+                break;
+            default: /* should not happen */
+                break;
         }
-
-        puts("Join procedure succeeded!");
+        return 0;
     }
     else if (strcmp(argv[1], "tx") == 0) {
         if (argc < 3) {
-- 
GitLab