From c31db066e5ba7a6708ebe4bf350963697c611816 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Wed, 23 Oct 2019 09:20:53 -0700 Subject: [PATCH] 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 --- src/drivers/ao_pad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.30.2