log_core2.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Copyright (c) 2021 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_LOGGING_LOG_CORE2_H_
  7. #define ZEPHYR_INCLUDE_LOGGING_LOG_CORE2_H_
  8. #include <logging/log_msg2.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. #define Z_TRACING_LOG_TRACE(id) do { \
  13. Z_TRACING_LOG_HDR_INIT(_msg, id); \
  14. z_log_msg2_put_trace(_msg); \
  15. } while (0)
  16. #define Z_TRACING_LOG_TRACE_PTR(id, ptr) do { \
  17. Z_TRACING_LOG_HDR_INIT(_msg, id); \
  18. z_log_msg2_put_trace_ptr(_msg, ptr); \
  19. } while (0)
  20. void z_log_msg2_put_trace(struct log_msg2_trace trace);
  21. void z_log_msg2_put_trace_ptr(struct log_msg2_trace hdr, void *data);
  22. /** @brief Initialize module for handling logging message. */
  23. void z_log_msg2_init(void);
  24. /** @brief Allocate log message.
  25. *
  26. * @param wlen Length in 32 bit words.
  27. *
  28. * @return allocated space or null if cannot be allocated.
  29. */
  30. struct log_msg2 *z_log_msg2_alloc(uint32_t wlen);
  31. /** @brief Commit log message.
  32. *
  33. * @param msg Message.
  34. */
  35. void z_log_msg2_commit(struct log_msg2 *msg);
  36. /** @brief Get pending log message.
  37. *
  38. * @param[out] len Message length in bytes is written is @p len is not null.
  39. *
  40. * @param Message or null if no pending messages.
  41. */
  42. union log_msg2_generic *z_log_msg2_claim(void);
  43. /** @brief Free message.
  44. *
  45. * @param msg Message.
  46. */
  47. void z_log_msg2_free(union log_msg2_generic *msg);
  48. /** @brief Check if there are any message pending.
  49. *
  50. * @retval true if at least one message is pending.
  51. * @retval false if no message is pending.
  52. */
  53. bool z_log_msg2_pending(void);
  54. #ifdef __cplusplus
  55. }
  56. #endif
  57. #endif /* ZEPHYR_INCLUDE_LOGGING_LOG_CORE2_H_ */