Simple example demonstrating various logger capabilities. Signed-off-by: Krzysztof Chruściński <krzysztof.chruscinski@nordicsemi.no>
21 lines
378 B
C
21 lines
378 B
C
/*
|
|
* Copyright (c) 2018 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef EXT_LOG_SYSTEM_ADAPTER_H
|
|
#define EXT_LOG_SYSTEM_ADAPTER_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** @brief Adapt external logging system to the logging subsystem. */
|
|
void ext_log_system_log_adapt(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* EXT_LOG_SYSTEM_ADAPTER_H */
|