diff --git a/flash/main.c b/flash/main.c index f875692..f843232 100644 --- a/flash/main.c +++ b/flash/main.c @@ -26,17 +26,17 @@ struct opts static void usage(void) { - puts("stlinkv1 command line: ./flash [--debug] [--reset] {read|write} /dev/sgX path addr "); - puts("stlinkv1 command line: ./flash [--debug] /dev/sgX erase"); - puts("stlinkv2 command line: ./flash [--debug] [--reset] {read|write} path addr "); - puts("stlinkv2 command line: ./flash [--debug] erase"); + puts("stlinkv1 command line: ./st-flash [--debug] [--reset] {read|write} /dev/sgX path addr "); + puts("stlinkv1 command line: ./st-flash [--debug] /dev/sgX erase"); + puts("stlinkv2 command line: ./st-flash [--debug] [--reset] {read|write} path addr "); + puts("stlinkv2 command line: ./st-flash [--debug] erase"); puts(" use hex format for addr and "); } static int get_opts(struct opts* o, int ac, char** av) { - /* stlinkv1 command line: ./flash {read|write} /dev/sgX path addr */ - /* stlinkv2 command line: ./flash {read|write} path addr */ + /* stlinkv1 command line: ./st-flash {read|write} /dev/sgX path addr */ + /* stlinkv2 command line: ./st-flash {read|write} path addr */ unsigned int i = 0;