You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
119: Accept a YAML file, not an SVD file, when patching r=adamgreig a=mciantyre
The Rust-based svdtools patch help output suggests that the user provides an SVD file:
```
$ svdtools patch --help
svdtools-patch
Patches an SVD file as specified by a YAML file
USAGE:
svdtools patch <SVD_FILE>
ARGS:
<SVD_FILE> Path to input SVD file
OPTIONS:
-h, --help Print help information
```
If we actually provide an SVD file, the tool errors.
Compare this with the Python documentation, which suggests that the user
provides a YAML file, not an SVD file.
```
$ svd patch --help
Usage: svd patch [OPTIONS] YAML_FILE
Patches an SVD file as specified by a YAML file
Options:
--help Show this message and exit.
```
Co-authored-by: Ian McIntyre <[email protected]>
0 commit comments