| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /*
- * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
- *
- * SPDX-License-Identifier: CC0-1.0
- *
- * OpenThread Command Line Example
- *
- * This example code is in the Public Domain (or CC0 licensed, at your option.)
- *
- * Unless required by applicable law or agreed to in writing, this
- * software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
- * CONDITIONS OF ANY KIND, either express or implied.
- */
- #include "esp_openthread.h"
- #include "esp_ot_cli_extension.h"
- #include "esp_ot_iperf.h"
- #include "esp_ot_tcp_socket.h"
- #include "esp_ot_udp_socket.h"
- #include "esp_ot_wifi_cmd.h"
- #include "freertos/FreeRTOS.h"
- #include "freertos/portmacro.h"
- #include "freertos/task.h"
- #include "openthread/cli.h"
- static const otCliCommand kCommands[] = {
- #if CONFIG_OPENTHREAD_CLI_TCP_SOCKET
- {"tcpsockserver", esp_ot_process_tcp_server},
- {"tcpsockclient", esp_ot_process_tcp_client},
- #endif // CONFIG_OPENTHREAD_CLI_TCP_SOCKET
- #if CONFIG_OPENTHREAD_CLI_UDP_SOCKET
- {"udpsockserver", esp_ot_process_udp_server},
- {"udpsockclient", esp_ot_process_udp_client},
- {"mcast", esp_ot_process_mcast_group},
- #endif // CONFIG_OPENTHREAD_CLI_UDP_SOCKET
- #if CONFIG_OPENTHREAD_CLI_IPERF
- {"iperf", esp_ot_process_iperf},
- #endif // CONFIG_OPENTHREAD_CLI_IPERF
- #if CONFIG_OPENTHREAD_CLI_WIFI
- {"wifi", esp_ot_process_wifi_cmd},
- #endif // CONFIG_OPENTHREAD_CLI_WIFI
- };
- void esp_cli_custom_command_init()
- {
- otInstance *instance = esp_openthread_get_instance();
- otCliSetUserCommands(kCommands, (sizeof(kCommands) / sizeof(kCommands[0])), instance);
- }
|