Lines Matching +full:chip +full:- +full:specific
2 # SPDX-License-Identifier: Apache-2.0
4 '''Runner for probe-rs.'''
10 '''Runner front-end for probe-rs.'''
12 def __init__(self, cfg, chip, argument
13 probe_rs='probe-rs',
22 self.args = ['--chip', chip]
25 self.args += ['--probe', dev_id]
34 return 'probe-rs'
45 parser.add_argument('--chip', required=True,
46 help='chip name')
47 parser.add_argument('--probe-rs', default='probe-rs',
48 help='path to probe-rs tool, default is probe-rs')
51 def dev_id_help(cls) -> str:
52 return '''select a specific probe, in the form `VID:PID:<Serial>`'''
55 def tool_opt_help(cls) -> str:
56 return '''additional options for probe-rs,
57 e.g. --chip-description-path=/path/to/chip.yml'''
61 return ProbeRsBinaryRunner(cfg, args.chip,
75 download_args += ['--chip-erase']