File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -384,11 +384,11 @@ def parse_args(args):
384
384
metavar = '{<id>:<format>,<id>:<format>:<scaling1>:...:<scalingN>,file.txt}' ,
385
385
nargs = argparse .ONE_OR_MORE , default = '' )
386
386
387
- optional .add_argument ('-f' , '--filter' , help = 'R|Comma separated CAN filters for the given CAN interface:'
387
+ optional .add_argument ('-f' , '--filter' , help = 'R|Space separated CAN filters for the given CAN interface:'
388
388
'\n <can_id>:<can_mask> (matches when <received_can_id> & mask == can_id & mask)'
389
389
'\n <can_id>~<can_mask> (matches when <received_can_id> & mask != can_id & mask)'
390
- '\n Fx to show only frames with ID 0x100 to 0x103:'
391
- '\n python -m can.viewer -f 100:7FC'
390
+ '\n Fx to show only frames with ID 0x100 to 0x103 and 0x200 to 0x20F :'
391
+ '\n python -m can.viewer -f 100:7FC 200:7F0 '
392
392
'\n Note that the ID and mask are alway interpreted as hex values' ,
393
393
metavar = '{<can_id>:<can_mask>,<can_id>~<can_mask>}' , nargs = argparse .ONE_OR_MORE , default = '' )
394
394
You can’t perform that action at this time.
0 commit comments