From 78d5f838064f1d7724eabedc3e794b38e5cb6811 Mon Sep 17 00:00:00 2001 From: Olivier Matz Date: Mon, 21 Apr 2014 18:38:44 +0200 Subject: [PATCH] xbee: always dump rx frame when debug is on --- xbee_user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbee_user.c b/xbee_user.c index ff57b8e..17a92af 100644 --- a/xbee_user.c +++ b/xbee_user.c @@ -253,6 +253,7 @@ int8_t xbeeapp_rx(struct xbee_dev *dev, int channel, int type, NOTICE(E_USER_XBEE, "type=0x%x, channel=%d, ctx=%p", type, channel, ctx); + __hexdump(frame, len); /* if ctx is !NULL, it is an answer to a query */ if (ctx != NULL) { @@ -330,7 +331,6 @@ int8_t xbeeapp_rx(struct xbee_dev *dev, int channel, int type, if (ret != XBEE_USER_RETCODE_OK) { WARNING(E_USER_XBEE, "undecoded rx frame"); - hexdump("undecoded rx frame", frame, len); } if (ctx != NULL) { -- 2.20.1