From dfdae5b02b84ebf7588d1b5fe0918885e22b8267 Mon Sep 17 00:00:00 2001 From: David Kopf Date: Wed, 31 Aug 2011 12:08:01 -0400 Subject: [PATCH] This fixes commit 9a1ce7 for spaces instead of .... --- cpu/avr/radio/rf230bb/rf230bb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cpu/avr/radio/rf230bb/rf230bb.c b/cpu/avr/radio/rf230bb/rf230bb.c index 9af14387e..0ac1f91d8 100644 --- a/cpu/avr/radio/rf230bb/rf230bb.c +++ b/cpu/avr/radio/rf230bb/rf230bb.c @@ -985,13 +985,13 @@ rf230_transmit(unsigned short payload_len) DEBUGFLOW('m'); RIMESTATS_ADD(contentiondrop); PRINTF("rf230_transmit: Transmission never started\n"); -....tx_result = RADIO_TX_COLLISION; + tx_result = RADIO_TX_COLLISION; } else if (tx_result==5) { //Expected ACK, none received DEBUGFLOW('n'); -....tx_result = RADIO_TX_NOACK; + tx_result = RADIO_TX_NOACK; } else if (tx_result==7) { //Invalid (Can't happen since waited for idle above?) DEBUGFLOW('o'); -....tx_result = RADIO_TX_ERR; + tx_result = RADIO_TX_ERR; } return tx_result;