diff --git a/README.md b/README.md index abb7d9c..e77b759 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ ### Options * `-m`, `--mode` Sets the mode for RPU processing. + * Default (no mode) - Copies the RPU untouched. * `0` - Parses the RPU, rewrites it untouched. * `1` - Converts the RPU to be MEL compatible. * `2` - Converts the RPU to be profile 8.1 compatible. diff --git a/src/main.rs b/src/main.rs index 510aa92..1b5bf13 100644 --- a/src/main.rs +++ b/src/main.rs @@ -14,8 +14,8 @@ struct Opt { name = "mode", short = "m", long, - help = "(WIP) Sets the mode for RPU processing. --help for more info", - long_help = "(WIP) Sets the mode for RPU processing.\nMode 1: FEL to MEL\nMode 2: Profile 8.1" + help = "Sets the mode for RPU processing. --help for more info", + long_help = "Sets the mode for RPU processing.\nMode 1: Converts the RPU to be MEL compatible\nMode 2: Converts the RPU to be profile 8.1 compatible" )] mode: Option,