esp_ot_cli_extension.h 477 B

1234567891011121314151617181920212223
  1. /* OpenThread Command Line Example
  2. This example code is in the Public Domain (or CC0 licensed, at your option.)
  3. Unless required by applicable law or agreed to in writing, this
  4. software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  5. CONDITIONS OF ANY KIND, either express or implied.
  6. */
  7. #pragma once
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. /**
  12. * @brief Init the custom command.
  13. *
  14. */
  15. void esp_cli_custom_command_init(void);
  16. #ifdef __cplusplus
  17. }
  18. #endif