Bluetooth: shell: Fix number of optional args for iso send
`iso send` may take an optional "count" parameter but the number of optional arguments was incorrect. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
This commit is contained in:
parent
a8c18ff5f4
commit
aed1db5782
1 changed files with 2 additions and 1 deletions
|
@ -234,7 +234,8 @@ SHELL_STATIC_SUBCMD_SET_CREATE(iso_cmds,
|
|||
"[latency] [sdu] [phy] [rtn]", cmd_bind, 1, 8),
|
||||
SHELL_CMD_ARG(connect, NULL, "Connect ISO Channel", cmd_connect, 1, 0),
|
||||
SHELL_CMD_ARG(listen, NULL, "[security level]", cmd_listen, 1, 1),
|
||||
SHELL_CMD_ARG(send, NULL, "Send to ISO Channel", cmd_send, 1, 0),
|
||||
SHELL_CMD_ARG(send, NULL, "Send to ISO Channel [count]",
|
||||
cmd_send, 1, 1),
|
||||
SHELL_CMD_ARG(disconnect, NULL, "Disconnect ISO Channel",
|
||||
cmd_disconnect, 1, 0),
|
||||
SHELL_SUBCMD_SET_END
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue