From 9c743d6cafd0e9b8c8cbed6cb49d7e71dd1f3a59 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Tue, 3 May 2016 13:21:05 +0200 Subject: [PATCH] candump: Do not filter messages, show them all Fixes #1606 --- rpp-test-sw/commands/cmd_can.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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, } }; -- 2.39.2