drivers: modem: adopt SHELL_HELP in modem_at shell

Use SHELL_HELP macro for help strings to ensure consistency across
various shell modules.

Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
This commit is contained in:
Benjamin Cabé
2026-01-16 22:51:06 +01:00
committed by Anas Nashif
parent 114b3bd50c
commit e6b8ffba92

View File

@@ -175,7 +175,9 @@ static int at_shell_cmd_handler(const struct shell *sh, size_t argc, char **argv
}
SHELL_STATIC_SUBCMD_SET_CREATE(modem_sub_cmds,
SHELL_CMD_ARG(at, NULL, "at <command> <response>", at_shell_cmd_handler, 1, 2),
SHELL_CMD_ARG(at, NULL,
SHELL_HELP("Send AT command", "<command> [expected_response]"),
at_shell_cmd_handler, 1, 2),
SHELL_SUBCMD_SET_END
);