ch32-rs / wlink

An open source WCH-Link library/command line tool written in Rust.
Apache License 2.0
155 stars 25 forks source link

Feature: dump memory region to file #38

Closed UCSIG closed 8 months ago

UCSIG commented 8 months ago

This adds the option to dump a memory region to a binary file using the dump command. If the file specified in the command already exists, it doesn't overwrite the file, only when the --override option is specified.

I couldn't figure out how to make the --file option an optional argument, thats why I specify the default value as an empty string and check in the command handler if a different value than an empty string is present. Maybe you know how to make the --file option an optional argument instead of a required argument with a default value?

andelf commented 8 months ago

IMHO, --overwrite seems meaningless. Almost all command line tools overwrite if filenames are provided.

andelf commented 8 months ago

Merged.