From: Olivier Matz Date: Mon, 21 Apr 2014 16:38:44 +0000 (+0200) Subject: xbee: always dump rx frame when debug is on X-Git-Url: http://git.droids-corp.org/?p=protos%2Fxbee-avr.git;a=commitdiff_plain;h=78d5f838064f1d7724eabedc3e794b38e5cb6811 xbee: always dump rx frame when debug is on --- 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) {