zephyr/subsys/net/lib/openthread/platform/shell.c
Jukka Rissanen 9ae7c394ab net: openthread: Convert to use new shell
Use new shell instead of the legacy one.

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
2018-10-15 11:14:02 +03:00

87 lines
1.6 KiB
C

/*
* Copyright (c) 2018 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <kernel.h>
#include <stdio.h>
#include <misc/printk.h>
#include <shell/shell.h>
#include <shell/shell_uart.h>
#include <openthread/cli.h>
#include <platform.h>
#include "platform-zephyr.h"
#define OT_SHELL_BUFFER_SIZE 256
static char rx_buffer[OT_SHELL_BUFFER_SIZE];
int otConsoleOutputCallback(const char *aBuf, uint16_t aBufLength,
void *aContext)
{
ARG_UNUSED(aContext);
printk("%s", aBuf);
return aBufLength;
}
static int ot_cmd(const struct shell *shell, size_t argc, char *argv[])
{
char *buf_ptr = rx_buffer;
size_t buf_len = OT_SHELL_BUFFER_SIZE;
size_t arg_len = 0;
int i;
if (shell_help_requested(shell)) {
shell_help_print(shell, NULL, 0);
return -ENOEXEC;
}
if (argc < 2) {
return -ENOEXEC;
}
for (i = 1; i < argc; i++) {
if (arg_len) {
buf_len -= arg_len + 1;
if (buf_len) {
buf_ptr[arg_len] = ' ';
}
buf_ptr += arg_len + 1;
}
arg_len = snprintf(buf_ptr, buf_len, "%s", argv[i]);
if (arg_len >= buf_len) {
shell_fprintf(shell, SHELL_WARNING,
"OT shell buffer full\n");
return -ENOEXEC;
}
}
if (i == argc) {
buf_len -= arg_len;
}
otCliConsoleInputLine(rx_buffer, OT_SHELL_BUFFER_SIZE - buf_len);
return 0;
}
SHELL_CREATE_STATIC_SUBCMD_SET(ot_commands)
{
SHELL_CMD(cmd, NULL, "OpenThread command", ot_cmd),
SHELL_SUBCMD_SET_END
};
SHELL_CMD_REGISTER(ot, &ot_commands, "OpenThread commands", NULL);
void platformShellInit(otInstance *aInstance)
{
otCliConsoleInit(aInstance, otConsoleOutputCallback, NULL);
}