From 99515e579fa4cbf9d3c67fcd4f204a70cedd1aaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Tue, 19 Nov 2019 18:47:32 +0100 Subject: [PATCH] application: use caps for system actions --- application.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/application.c b/application.c index 4a36cf6..e7ee692 100644 --- a/application.c +++ b/application.c @@ -163,7 +163,7 @@ static const struct menu_command_t menu_commands[] = { .command_handler = &command_help, }, { - .shortcut = 'v', + .shortcut = 'V', .name = "version", .command_description = "show software and hardware version", .argument = MENU_ARGUMENT_NONE, @@ -171,7 +171,7 @@ static const struct menu_command_t menu_commands[] = { .command_handler = &command_version, }, { - .shortcut = 'u', + .shortcut = 'U', .name = "uptime", .command_description = "show uptime", .argument = MENU_ARGUMENT_NONE, @@ -180,7 +180,7 @@ static const struct menu_command_t menu_commands[] = { }, #if RTC_DATE_TIME { - .shortcut = 'd', + .shortcut = 'D', .name = "date", .command_description = "show/set date and time", .argument = MENU_ARGUMENT_STRING, @@ -189,7 +189,7 @@ static const struct menu_command_t menu_commands[] = { }, #endif { - .shortcut = 'r', + .shortcut = 'R', .name = "reset", .command_description = "reset board", .argument = MENU_ARGUMENT_NONE, @@ -197,7 +197,7 @@ static const struct menu_command_t menu_commands[] = { .command_handler = &command_reset, }, { - .shortcut = 'b', + .shortcut = 'B', .name = "bootloader", .command_description = "reboot into DFU bootloader", .argument = MENU_ARGUMENT_NONE,