In a nutshell, I want candump to show me ONLY frames with IDs 0x00200200 or 0x255.
So I do this:
candump can0,00200200:0,255:0
But this gives ALL frames, and each frame is shown twice. i.e. the output of:
cansend can0 256#112233
would be this:
can0 256 [3] 11 22 33
can0 256 [3] 11 22 33
Aside from the filter not behaving like I expected and passing through 0x256, the fact that it shows up twice suggests that this frames is actually matched by both filters, which makes even less sense to me. Can anyone explain why this is happening, and perhaps show me the correct way to do it?