Fix issue caused by 3fc497ac9a
This change removes `rtt` and `systemview` from header includes
as these are already placed in the path.
Also `SEGGER_SYSVIEW_ConfDefaults.h` header included from
`SEGGER_SYSVIEW_Int.h` is placed higher to make sure `INLINE`
definition is properly visible.
Signed-off-by: Pawel Dunaj <pawel.dunaj@nordicsemi.no>
16 lines
281 B
C
16 lines
281 B
C
/*
|
|
* Copyright (c) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef SYSVIEW_ZEPHYR_H
|
|
#define SYSVIEW_ZEPHYR_H
|
|
|
|
#include <SEGGER_SYSVIEW.h>
|
|
|
|
/* Services provided to SYSVIEW by Zephyr */
|
|
extern const SEGGER_SYSVIEW_OS_API SYSVIEW_X_OS_TraceAPI;
|
|
|
|
#endif
|