From f1c4a5ee084a594a3a3eb5142ac77f1f18e543c8 Mon Sep 17 00:00:00 2001 From: Adam Dunkels Date: Wed, 2 Sep 2015 12:10:07 +0200 Subject: [PATCH] Turn off radio again after transmitting --- cpu/cc26xx-cc13xx/rf-core/ieee-mode.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cpu/cc26xx-cc13xx/rf-core/ieee-mode.c b/cpu/cc26xx-cc13xx/rf-core/ieee-mode.c index b997043ab..910b2972a 100644 --- a/cpu/cc26xx-cc13xx/rf-core/ieee-mode.c +++ b/cpu/cc26xx-cc13xx/rf-core/ieee-mode.c @@ -853,6 +853,11 @@ transmit(unsigned short transmit_len) */ rf_core_cmd_done_dis(); + + if(was_off) { + off(); + } + return ret; } /*---------------------------------------------------------------------------*/