123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- #ifndef NRF_LOG_DEFAULT_BACKENDS_H__
- #define NRF_LOG_DEFAULT_BACKENDS_H__
- #include "sdk_config.h"
- #include "sdk_errors.h"
- #include <stdbool.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- #if NRF_LOG_ENABLED
- #define NRF_LOG_DEFAULT_BACKENDS_INIT() nrf_log_default_backends_init()
- #else
- #define NRF_LOG_DEFAULT_BACKENDS_INIT()
- #endif
- void nrf_log_default_backends_init(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|