This fixes commit 9a1ce7 for spaces instead of ....

This commit is contained in:
David Kopf 2011-08-31 12:08:01 -04:00
parent 407c76c5df
commit dfdae5b02b
1 changed files with 3 additions and 3 deletions

View File

@ -985,13 +985,13 @@ rf230_transmit(unsigned short payload_len)
DEBUGFLOW('m'); DEBUGFLOW('m');
RIMESTATS_ADD(contentiondrop); RIMESTATS_ADD(contentiondrop);
PRINTF("rf230_transmit: Transmission never started\n"); 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 } else if (tx_result==5) { //Expected ACK, none received
DEBUGFLOW('n'); 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?) } else if (tx_result==7) { //Invalid (Can't happen since waited for idle above?)
DEBUGFLOW('o'); DEBUGFLOW('o');
....tx_result = RADIO_TX_ERR; tx_result = RADIO_TX_ERR;
} }
return tx_result; return tx_result;