From: Keith Packard Date: Wed, 23 Oct 2019 16:20:53 +0000 (-0700) Subject: altos: Relabel packet receive status line for TeleFire boxes X-Git-Tag: 1.9.1~1^2~21 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=c31db066e5ba7a6708ebe4bf350963697c611816;ds=inline altos: Relabel packet receive status line for TeleFire boxes The status line included return value and RSSI, but neither was labeled, which left the user unsure as to what it meant. Signed-off-by: Keith Packard --- diff --git a/src/drivers/ao_pad.c b/src/drivers/ao_pad.c index ce9f8725..b4153558 100644 --- a/src/drivers/ao_pad.c +++ b/src/drivers/ao_pad.c @@ -378,7 +378,7 @@ ao_pad(void) while (ao_pad_disabled) ao_sleep(&ao_pad_disabled); ret = ao_radio_cmac_recv(&command, sizeof (command), 0); - PRINTD ("cmac_recv %d %d\n", ret, ao_radio_cmac_rssi); + PRINTD ("cmac_recv status %d rssi %d\n", ret, ao_radio_cmac_rssi); if (ret != AO_RADIO_CMAC_OK) continue; ao_pad_packet_time = ao_time();