diff options
| author | Keith Packard <keithp@keithp.com> | 2015-02-15 08:57:55 -0800 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2015-02-15 08:57:55 -0800 | 
| commit | 2ebb4dff758058ae9512cf36518416eb69b928f0 (patch) | |
| tree | ba5b90d05427a7a2560046c8d3bd64b880664ae9 /src | |
| parent | 135abf0e7c5ceb5738a0b5f68fe2be4b7abdae5e (diff) | |
altos: Remove some accidental debug printfs from ao_packet.c
While fixing the cc1200 configuration, I added some debug printfs to
this code. They were accidentally committed with the fix...
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/drivers/ao_packet.c | 14 | 
1 files changed, 2 insertions, 12 deletions
| diff --git a/src/drivers/ao_packet.c b/src/drivers/ao_packet.c index 8c2db275..18330ead 100644 --- a/src/drivers/ao_packet.c +++ b/src/drivers/ao_packet.c @@ -81,16 +81,8 @@ ao_packet_recv(uint16_t timeout)  	/* Check to see if we got a valid packet */  	if (!dma_done)  		return 0; -	if (!(ao_rx_packet.status & AO_RADIO_STATUS_CRC_OK)) { -		printf("bad crc addr %d len %d seq %d ack %d callsign %8.8s\n", -			ao_rx_packet.packet.addr, -			ao_rx_packet.packet.len, -			ao_rx_packet.packet.seq, -			ao_rx_packet.packet.ack, -			ao_rx_packet.packet.callsign); -		flush(); +	if (!(ao_rx_packet.status & AO_RADIO_STATUS_CRC_OK))  		return 0; -	}  	/* Accept packets with matching call signs, or any packet if  	 * our callsign hasn't been configured @@ -98,10 +90,8 @@ ao_packet_recv(uint16_t timeout)  	if (ao_xmemcmp(ao_rx_packet.packet.callsign,  		       ao_config.callsign,  		       AO_MAX_CALLSIGN) != 0 && -	    ao_xmemcmp(ao_config.callsign, CODE_TO_XDATA("N0CALL"), 7) != 0) { -		printf ("bad call\n"); flush(); +	    ao_xmemcmp(ao_config.callsign, CODE_TO_XDATA("N0CALL"), 7) != 0)  		return 0; -	}  	/* SYN packets carry no data */  	if (ao_rx_packet.packet.len == AO_PACKET_SYN) { | 
