cc2520: Turn off auto ACK

The auto ack does not seem to work properly. I am seeing that
the driver claims to have sent a packet but nothing is seen
in the air. Because of this the auto ACK cannot be turned on
right now as it would break connectivity.

Change-Id: I4e71e14a2058cc4f64740a8f4b390ba21a01cb23
Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
Jukka Rissanen 2016-02-26 16:13:24 +02:00 committed by Gerrit Code Review
commit e695d43fad

View file

@ -54,7 +54,10 @@
#include "cc2520.h" #include "cc2520.h"
#include "cc2520_arch.h" #include "cc2520_arch.h"
#define CC2520_CONF_AUTOACK 1 /* Auto-ACK can prevent the device from sending packets so do not turn it on.
* It enables filtering and the feature is currently broken on this driver.
*/
#define CC2520_CONF_AUTOACK 0
#define WITH_SEND_CCA 1 #define WITH_SEND_CCA 1
#define FOOTER_LEN 2 #define FOOTER_LEN 2