From b01cbb996d57e9fd33ee2168e67ae79710afa93b Mon Sep 17 00:00:00 2001 From: Niclas Finne Date: Fri, 21 Oct 2011 17:52:31 +0200 Subject: [PATCH] Fixed to restore packetbuf before mac callback --- core/net/mac/contikimac.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/net/mac/contikimac.c b/core/net/mac/contikimac.c index ff4809bc0..6841c90f2 100644 --- a/core/net/mac/contikimac.c +++ b/core/net/mac/contikimac.c @@ -743,11 +743,12 @@ qsend_list(mac_callback_t sent, void *ptr, struct rdc_buf_list *buf_list) struct rdc_buf_list *next; int ret; if(curr == NULL) { - mac_call_sent_callback(sent, ptr, MAC_TX_ERR, 1); return; } /* Do not send during reception of a burst */ if(we_are_receiving_burst) { + /* Prepare the packetbuf for callback */ + queuebuf_to_packetbuf(curr->buf); /* Return COLLISION so the MAC may try again later */ mac_call_sent_callback(sent, ptr, MAC_TX_COLLISION, 1); return;