gdbstub_backend.h 988 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright (c) 2020 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_SUBSYS_DEBUG_GDBSTUB_BACKEND_H_
  7. #define ZEPHYR_SUBSYS_DEBUG_GDBSTUB_BACKEND_H_
  8. #include <stdint.h>
  9. /**
  10. * This is an internal header. These API is intended to be used
  11. * exclusively by gdbstub.
  12. *
  13. * A backend has to implement these three functions knowing that they
  14. * will be called in an interruption context.
  15. */
  16. /**
  17. * @brief Initialize the gdbstub backend
  18. *
  19. * This function is called from @c gdb_start to
  20. * give the opportunity to the backend initialize properly.
  21. *
  22. * @retval 0 In case of success
  23. * @retval -1 If the backend was not initialized properly
  24. */
  25. int z_gdb_backend_init(void);
  26. /**
  27. * @brief Output a character
  28. *
  29. * @param ch Character to send
  30. */
  31. void z_gdb_putchar(unsigned char ch);
  32. /**
  33. * @brief Receive a character
  34. *
  35. * This function blocks until have a valid
  36. * character to return.
  37. *
  38. * @return A character
  39. */
  40. char z_gdb_getchar(void);
  41. #endif