From 0aa36eaa0a02e634d17e19be73441477a521cc2c Mon Sep 17 00:00:00 2001 From: Simon Duquennoy Date: Fri, 4 Mar 2016 15:07:40 +0100 Subject: [PATCH] TSCH: explicitly turn radio off after ACK tx --- core/net/mac/tsch/tsch-slot-operation.c | 1 + 1 file changed, 1 insertion(+) diff --git a/core/net/mac/tsch/tsch-slot-operation.c b/core/net/mac/tsch/tsch-slot-operation.c index 3174787c2..c632549dd 100644 --- a/core/net/mac/tsch/tsch-slot-operation.c +++ b/core/net/mac/tsch/tsch-slot-operation.c @@ -776,6 +776,7 @@ PT_THREAD(tsch_rx_slot(struct pt *pt, struct rtimer *t)) packet_duration + tsch_timing[tsch_ts_tx_ack_delay] - RADIO_DELAY_BEFORE_TX, "RxBeforeAck"); TSCH_DEBUG_RX_EVENT(); NETSTACK_RADIO.transmit(ack_len); + NETSTACK_RADIO.off(); } /* If the sender is a time source, proceed to clock drift compensation */