]> rtime.felk.cvut.cz Git - pes-rpp/rpp-test-sw.git/commitdiff
candump: Do not filter messages, show them all
authorMichal Sojka <sojkam1@fel.cvut.cz>
Tue, 3 May 2016 11:21:05 +0000 (13:21 +0200)
committerMichal Sojka <sojkam1@fel.cvut.cz>
Tue, 3 May 2016 11:21:05 +0000 (13:21 +0200)
Fixes #1606

rpp-test-sw/commands/cmd_can.c

index f98422b50822027b9b7bdcd8430435b356ae7fab..3a65e3272d8686034afbcf9057d8baf7c6a98064 100644 (file)
@@ -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,
        }
 };