From e1bc7c9c4bb025497855d85802da51c8bea59c05 Mon Sep 17 00:00:00 2001 From: Jakub Pawlowski Date: Fri, 17 Apr 2015 18:09:32 -0700 Subject: [PATCH] client: Make command info print TxPower and RSSI This makes command info to also print TxPower and RSSI if available. --- client/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/main.c b/client/main.c index 5250a3375..46ef72a56 100644 --- a/client/main.c +++ b/client/main.c @@ -952,6 +952,8 @@ static void cmd_info(const char *arg) print_property(proxy, "Modalias"); print_property(proxy, "ManufacturerData"); print_property(proxy, "ServiceData"); + print_property(proxy, "RSSI"); + print_property(proxy, "TxPower"); } static void pair_reply(DBusMessage *message, void *user_data) -- 2.47.3