shell_rtt.h 968 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Copyright (c) 2018 Makaio GmbH
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef SHELL_RTT_H__
  7. #define SHELL_RTT_H__
  8. #include <shell/shell.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. extern const struct shell_transport_api shell_rtt_transport_api;
  13. struct shell_rtt {
  14. shell_transport_handler_t handler;
  15. struct k_timer timer;
  16. void *context;
  17. };
  18. #define SHELL_RTT_DEFINE(_name) \
  19. static struct shell_rtt _name##_shell_rtt; \
  20. struct shell_transport _name = { \
  21. .api = &shell_rtt_transport_api, \
  22. .ctx = (struct shell_rtt *)&_name##_shell_rtt \
  23. }
  24. /**
  25. * @brief Function provides pointer to shell rtt backend instance.
  26. *
  27. * Function returns pointer to the shell rtt instance. This instance can be
  28. * next used with shell_execute_cmd function in order to test commands behavior.
  29. *
  30. * @returns Pointer to the shell instance.
  31. */
  32. const struct shell *shell_backend_rtt_get_ptr(void);
  33. #ifdef __cplusplus
  34. }
  35. #endif
  36. #endif /* SHELL_RTT_H__ */