From: Michal Sojka Date: Tue, 3 May 2016 11:21:05 +0000 (+0200) Subject: candump: Do not filter messages, show them all X-Git-Url: http://rtime.felk.cvut.cz/gitweb/pes-rpp/rpp-test-sw.git/commitdiff_plain/9c743d6cafd0e9b8c8cbed6cb49d7e71dd1f3a59 candump: Do not filter messages, show them all Fixes #1606 --- diff --git a/rpp-test-sw/commands/cmd_can.c b/rpp-test-sw/commands/cmd_can.c index f98422b..3a65e32 100644 --- a/rpp-test-sw/commands/cmd_can.c +++ b/rpp-test-sw/commands/cmd_can.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2014 Czech Technical University in Prague + * Copyright (C) 2012-2014, 2016 Czech Technical University in Prague * * Created on: 28.2.2013 * @@ -115,22 +115,22 @@ static struct rpp_can_rx_config rx_config[] = { .type = RPP_CAN_MIXED, .controller = 1, .msg_obj = 1, - .id = 1, - .mask = 0x7fffff, + .id = 0, + .mask = 0, }, { .type = RPP_CAN_MIXED, .controller = 2, .msg_obj = 1, - .id = 1, - .mask = 0x7fffff, + .id = 0, + .mask = 0, }, { .type = RPP_CAN_MIXED, .controller = 3, .msg_obj = 1, - .id = 1, - .mask = 0x7fffff, + .id = 0, + .mask = 0, } };