1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
-
- #ifndef NRF_LOG_BACKEND_RTT_H
- #define NRF_LOG_BACKEND_RTT_H
- #include "nrf_log_backend_interface.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- extern const nrf_log_backend_api_t nrf_log_backend_rtt_api;
- typedef struct {
- nrf_log_backend_t backend;
- } nrf_log_backend_rtt_t;
- #define NRF_LOG_BACKEND_RTT_DEF(_name) \
- NRF_LOG_BACKEND_DEF(_name, nrf_log_backend_rtt_api, NULL)
- void nrf_log_backend_rtt_init(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|