application: use caps for system actions

This commit is contained in:
King Kévin 2019-11-19 18:47:32 +01:00
parent 5a5543ae53
commit 99515e579f
1 changed files with 5 additions and 5 deletions

View File

@ -163,7 +163,7 @@ static const struct menu_command_t menu_commands[] = {
.command_handler = &command_help, .command_handler = &command_help,
}, },
{ {
.shortcut = 'v', .shortcut = 'V',
.name = "version", .name = "version",
.command_description = "show software and hardware version", .command_description = "show software and hardware version",
.argument = MENU_ARGUMENT_NONE, .argument = MENU_ARGUMENT_NONE,
@ -171,7 +171,7 @@ static const struct menu_command_t menu_commands[] = {
.command_handler = &command_version, .command_handler = &command_version,
}, },
{ {
.shortcut = 'u', .shortcut = 'U',
.name = "uptime", .name = "uptime",
.command_description = "show uptime", .command_description = "show uptime",
.argument = MENU_ARGUMENT_NONE, .argument = MENU_ARGUMENT_NONE,
@ -180,7 +180,7 @@ static const struct menu_command_t menu_commands[] = {
}, },
#if RTC_DATE_TIME #if RTC_DATE_TIME
{ {
.shortcut = 'd', .shortcut = 'D',
.name = "date", .name = "date",
.command_description = "show/set date and time", .command_description = "show/set date and time",
.argument = MENU_ARGUMENT_STRING, .argument = MENU_ARGUMENT_STRING,
@ -189,7 +189,7 @@ static const struct menu_command_t menu_commands[] = {
}, },
#endif #endif
{ {
.shortcut = 'r', .shortcut = 'R',
.name = "reset", .name = "reset",
.command_description = "reset board", .command_description = "reset board",
.argument = MENU_ARGUMENT_NONE, .argument = MENU_ARGUMENT_NONE,
@ -197,7 +197,7 @@ static const struct menu_command_t menu_commands[] = {
.command_handler = &command_reset, .command_handler = &command_reset,
}, },
{ {
.shortcut = 'b', .shortcut = 'B',
.name = "bootloader", .name = "bootloader",
.command_description = "reboot into DFU bootloader", .command_description = "reboot into DFU bootloader",
.argument = MENU_ARGUMENT_NONE, .argument = MENU_ARGUMENT_NONE,