Skip to content

Commit

Permalink
efm32, nrf51, renesas: Unify help messages for Unique ID with STM32
Browse files Browse the repository at this point in the history
  • Loading branch information
ALTracer committed Jul 11, 2024
1 parent dcf1e41 commit 78e4f84
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/target/efm32.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ static bool efm32_cmd_efm_info(target_s *t, int argc, const char **argv);
static bool efm32_cmd_bootloader(target_s *t, int argc, const char **argv);

const command_s efm32_cmd_list[] = {
{"serial", efm32_cmd_serial, "Prints unique number"},
{"serial", efm32_cmd_serial, "Print unique device ID"},
{"efm_info", efm32_cmd_efm_info, "Prints information about the device"},
{"bootloader", efm32_cmd_bootloader, "Bootloader status in CLW0"},
{NULL, NULL, NULL},
Expand Down
2 changes: 1 addition & 1 deletion src/target/nrf51.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const command_s nrf51_read_cmd_list[] = {
{"help", nrf51_cmd_read_help, "Display help for read commands"},
{"hwid", nrf51_cmd_read_hwid, "Read hardware identification number"},
{"fwid", nrf51_cmd_read_fwid, "Read pre-loaded firmware ID"},
{"deviceid", nrf51_cmd_read_deviceid, "Read unique device ID"},
{"deviceid", nrf51_cmd_read_deviceid, "Print unique device ID"},
{"deviceaddr", nrf51_cmd_read_deviceaddr, "Read device address"},
{"deviceinfo", nrf51_cmd_read_deviceinfo, "Read device information"},
{NULL, NULL, NULL},
Expand Down
2 changes: 1 addition & 1 deletion src/target/renesas_ra.c
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ typedef enum {
static bool renesas_uid(target_s *t, int argc, const char **argv);

const command_s renesas_cmd_list[] = {
{"uid", renesas_uid, "Prints unique id"},
{"uid", renesas_uid, "Print unique device ID"},
{NULL, NULL, NULL},
};

Expand Down

0 comments on commit 78e4f84

Please sign in to comment.