Simple example demonstrating various logger capabilities. Signed-off-by: Krzysztof Chruściński <krzysztof.chruscinski@nordicsemi.no>
21 lines
317 B
C
21 lines
317 B
C
/*
|
|
* Copyright (c) 2018 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef SAMPLE_MODULE_H
|
|
#define SAMPLE_MODULE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
const char *sample_module_name_get(void);
|
|
void sample_module_func(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SAMPLE_MODULE_H */
|