From f64e689d2c9b57e8209df566493c401b3f2f36ca Mon Sep 17 00:00:00 2001 From: Mariano Alvira Date: Mon, 8 Mar 2010 18:27:52 -0500 Subject: [PATCH] set the third bit to avoid acks. --- tests/rftest-tx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/rftest-tx.c b/tests/rftest-tx.c index df1bb01ff..78c4182f6 100644 --- a/tests/rftest-tx.c +++ b/tests/rftest-tx.c @@ -23,9 +23,9 @@ void fill_packet(volatile packet_t *p) { } /* acks get treated differently, even in promiscuous mode */ - /* setting the second bit makes sure that we never send an ack */ + /* setting the third bit makes sure that we never send an ack */ /* or any valid 802.15.4-2006 packet */ - p->data[0] |= (1 << 2); + p->data[0] |= (1 << 3); } void main(void) {