removed debugging output, code style
This commit is contained in:
parent
3852585c26
commit
862452b5b0
1 changed files with 10 additions and 13 deletions
|
@ -45,9 +45,11 @@
|
|||
#include "dev/cooja-radio.h"
|
||||
|
||||
#define COOJA_RADIO_BUFSIZE PACKETBUF_SIZE
|
||||
|
||||
#define CCA_SS_THRESHOLD -95
|
||||
|
||||
#define WITH_TURNAROUND 1
|
||||
#define WITH_SEND_CCA 1
|
||||
|
||||
const struct simInterface radio_interface;
|
||||
|
||||
/* COOJA */
|
||||
|
@ -161,13 +163,10 @@ radio_send(const void *payload, unsigned short payload_len)
|
|||
{
|
||||
int radiostate = simRadioHWOn;
|
||||
|
||||
/* XXX Simulate turnaround time of 1ms? */
|
||||
#define WITH_TURNAROUND 1
|
||||
/* Simulate turnaround time of 1ms */
|
||||
#if WITH_TURNAROUND
|
||||
printf("WITH_TURNAROUND\n");
|
||||
simProcessRunValue = 1;
|
||||
cooja_mt_yield();
|
||||
printf("WITH_TURNAROUND post\n");
|
||||
#endif /* WITH_TURNAROUND */
|
||||
|
||||
if(!simRadioHWOn) {
|
||||
|
@ -184,11 +183,9 @@ radio_send(const void *payload, unsigned short payload_len)
|
|||
return RADIO_TX_ERR;
|
||||
}
|
||||
|
||||
/* XXX Transmit only on CCA? */
|
||||
#define WITH_SEND_CCA 1
|
||||
/* Transmit on CCA */
|
||||
#if WITH_SEND_CCA
|
||||
if(!channel_clear()) {
|
||||
printf("WITH_SEND_CCA return\n");
|
||||
return RADIO_TX_COLLISION;
|
||||
}
|
||||
#endif /* WITH_SEND_CCA */
|
||||
|
|
Loading…
Reference in a new issue