nrfx_log.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /*
  2. * Copyright (c) 2017 - 2020, Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef NRFX_LOG_H__
  7. #define NRFX_LOG_H__
  8. #include <logging/log.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. #define NRFX_MODULE_PREFIX _CONCAT(NRFX_, NRFX_LOG_MODULE)
  13. /*
  14. * The following macros from nrfx_config control the log messages coming from
  15. * a given module:
  16. * - NRFX_<module>_CONFIG_LOG_ENABLED enables the messages (when set to 1)
  17. * - NRFX_<module>_CONFIG_LOG_LEVEL specifies the severity level of the messages
  18. * that are to be output.
  19. */
  20. #if !IS_ENABLED(_CONCAT(NRFX_MODULE_PREFIX, _CONFIG_LOG_ENABLED))
  21. #define NRFX_MODULE_CONFIG_LOG_LEVEL 0
  22. #else
  23. #define NRFX_MODULE_CONFIG_LOG_LEVEL \
  24. _CONCAT(NRFX_MODULE_PREFIX, _CONFIG_LOG_LEVEL)
  25. #endif
  26. #if NRFX_MODULE_CONFIG_LOG_LEVEL == 0
  27. #define NRFX_MODULE_LOG_LEVEL LOG_LEVEL_NONE
  28. #elif NRFX_MODULE_CONFIG_LOG_LEVEL == 1
  29. #define NRFX_MODULE_LOG_LEVEL LOG_LEVEL_ERR
  30. #elif NRFX_MODULE_CONFIG_LOG_LEVEL == 2
  31. #define NRFX_MODULE_LOG_LEVEL LOG_LEVEL_WRN
  32. #elif NRFX_MODULE_CONFIG_LOG_LEVEL == 3
  33. #define NRFX_MODULE_LOG_LEVEL LOG_LEVEL_INF
  34. #elif NRFX_MODULE_CONFIG_LOG_LEVEL == 4
  35. #define NRFX_MODULE_LOG_LEVEL LOG_LEVEL_DBG
  36. #endif
  37. LOG_MODULE_REGISTER(NRFX_MODULE_PREFIX, NRFX_MODULE_LOG_LEVEL);
  38. /**
  39. * @defgroup nrfx_log nrfx_log.h
  40. * @{
  41. * @ingroup nrfx
  42. *
  43. * @brief This file contains macros that should be implemented according to
  44. * the needs of the host environment into which @em nrfx is integrated.
  45. */
  46. /**
  47. * @brief Macro for logging a message with the severity level ERROR.
  48. *
  49. * @param ... printf-style format string, optionally followed by arguments
  50. * to be formatted and inserted in the resulting string.
  51. */
  52. #define NRFX_LOG_ERROR(...) LOG_ERR(__VA_ARGS__)
  53. /**
  54. * @brief Macro for logging a message with the severity level WARNING.
  55. *
  56. * @param ... printf-style format string, optionally followed by arguments
  57. * to be formatted and inserted in the resulting string.
  58. */
  59. #define NRFX_LOG_WARNING(...) LOG_WRN(__VA_ARGS__)
  60. /**
  61. * @brief Macro for logging a message with the severity level INFO.
  62. *
  63. * @param ... printf-style format string, optionally followed by arguments
  64. * to be formatted and inserted in the resulting string.
  65. */
  66. #define NRFX_LOG_INFO(...) LOG_INF(__VA_ARGS__)
  67. /**
  68. * @brief Macro for logging a message with the severity level DEBUG.
  69. *
  70. * @param ... printf-style format string, optionally followed by arguments
  71. * to be formatted and inserted in the resulting string.
  72. */
  73. #define NRFX_LOG_DEBUG(...) LOG_DBG(__VA_ARGS__)
  74. /**
  75. * @brief Macro for logging a memory dump with the severity level ERROR.
  76. *
  77. * @param[in] p_memory Pointer to the memory region to be dumped.
  78. * @param[in] length Length of the memory region in bytes.
  79. */
  80. #define NRFX_LOG_HEXDUMP_ERROR(p_memory, length) \
  81. LOG_HEXDUMP_ERR(p_memory, length, "")
  82. /**
  83. * @brief Macro for logging a memory dump with the severity level WARNING.
  84. *
  85. * @param[in] p_memory Pointer to the memory region to be dumped.
  86. * @param[in] length Length of the memory region in bytes.
  87. */
  88. #define NRFX_LOG_HEXDUMP_WARNING(p_memory, length) \
  89. LOG_HEXDUMP_WRN(p_memory, length, "")
  90. /**
  91. * @brief Macro for logging a memory dump with the severity level INFO.
  92. *
  93. * @param[in] p_memory Pointer to the memory region to be dumped.
  94. * @param[in] length Length of the memory region in bytes.
  95. */
  96. #define NRFX_LOG_HEXDUMP_INFO(p_memory, length) \
  97. LOG_HEXDUMP_INF(p_memory, length, "")
  98. /**
  99. * @brief Macro for logging a memory dump with the severity level DEBUG.
  100. *
  101. * @param[in] p_memory Pointer to the memory region to be dumped.
  102. * @param[in] length Length of the memory region in bytes.
  103. */
  104. #define NRFX_LOG_HEXDUMP_DEBUG(p_memory, length) \
  105. LOG_HEXDUMP_DBG(p_memory, length, "")
  106. /**
  107. * @brief Macro for getting the textual representation of a given error code.
  108. *
  109. * @param[in] error_code Error code.
  110. *
  111. * @return String containing the textual representation of the error code.
  112. */
  113. #define NRFX_LOG_ERROR_STRING_GET(error_code) nrfx_error_string_get(error_code)
  114. extern char const *nrfx_error_string_get(nrfx_err_t code);
  115. /** @} */
  116. #ifdef __cplusplus
  117. }
  118. #endif
  119. #endif // NRFX_LOG_H__