From f6e616d48fd15e87992397dd05798c7a977ad4ff Mon Sep 17 00:00:00 2001 From: Alexandre Abadie <alexandre.abadie@inria.fr> Date: Wed, 30 Jan 2019 10:05:10 +0100 Subject: [PATCH] tests/pkg_semtech-loramac: fix send return value management --- tests/pkg_semtech-loramac/main.c | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/tests/pkg_semtech-loramac/main.c b/tests/pkg_semtech-loramac/main.c index 56d97d6a76..52547aabc2 100644 --- a/tests/pkg_semtech-loramac/main.c +++ b/tests/pkg_semtech-loramac/main.c @@ -414,15 +414,23 @@ static int _cmd_loramac(int argc, char **argv) switch (semtech_loramac_send(&loramac, (uint8_t *)argv[2], strlen(argv[2]))) { case SEMTECH_LORAMAC_NOT_JOINED: - puts("Failed: not joined"); + puts("Cannot send: not joined"); + return 1; + + case SEMTECH_LORAMAC_DUTYCYCLE_RESTRICTED: + puts("Cannot send: dutycycle restriction"); return 1; case SEMTECH_LORAMAC_BUSY: - puts("Failed: mac is busy"); + puts("Cannot send: MAC is busy"); + return 1; + + case SEMTECH_LORAMAC_TX_ERROR: + puts("Cannot send: error"); return 1; } - /* clear the rx buffer of the mac */ + /* wait for receive windows */ switch (semtech_loramac_recv(&loramac)) { case SEMTECH_LORAMAC_DATA_RECEIVED: loramac.rx_data.payload[loramac.rx_data.payload_len] = 0; -- GitLab