shell_rtt.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. typedef void (* shell_rtt_callback_t)(const uint8_t *data, uint32_t len, void *user_data);
  14. struct shell_rtt {
  15. shell_transport_handler_t handler;
  16. struct k_timer timer;
  17. void *context;
  18. shell_rtt_callback_t callback;
  19. void *user_data;
  20. };
  21. #define SHELL_RTT_DEFINE(_name) \
  22. static struct shell_rtt _name##_shell_rtt; \
  23. struct shell_transport _name = { \
  24. .api = &shell_rtt_transport_api, \
  25. .ctx = (struct shell_rtt *)&_name##_shell_rtt \
  26. }
  27. /**
  28. * @brief Function provides pointer to shell rtt backend instance.
  29. *
  30. * Function returns pointer to the shell rtt instance. This instance can be
  31. * next used with shell_execute_cmd function in order to test commands behavior.
  32. *
  33. * @returns Pointer to the shell instance.
  34. */
  35. const struct shell *shell_backend_rtt_get_ptr(void);
  36. /**
  37. * @brief register output backend
  38. *
  39. * @param callback callback function for output backend
  40. * @param user_data user-defined data
  41. *
  42. * @retval 0 on success else negative code.
  43. */
  44. int shell_rtt_register_output_callback(shell_rtt_callback_t callback, void *user_data);
  45. #ifdef __cplusplus
  46. }
  47. #endif
  48. #endif /* SHELL_RTT_H__ */