mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 17:42:37 +00:00
For native_posix: Added command line options to control if traces should have or not colors. + Detect if we are connected to a tty or not, and if we are set the defaults for that option appropriately Signed-off-by: Alberto Escolar Piedras <alpi@oticon.com>
21 lines
273 B
C
21 lines
273 B
C
/*
|
|
* Copyright (c) 2018 Oticon A/S
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef NATIVE_TRACING_H
|
|
#define NATIVE_TRACING_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void native_add_tracing_options(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* NATIVE_TRACING_H */
|